Skip to content

Commit 0202011

Browse files
committed
🐛 usedirect startdate
1 parent 4cb9b1e commit 0202011

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

camply/providers/usedirect/usedirect.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,12 @@ def get_campsites_response(
304304
-------
305305
UseDirectAvailabilityResponse
306306
"""
307+
greatest_start = max(start_date, date.today() - timedelta(days=1))
307308
data = {
308309
"IsADA": is_ada,
309310
"MinVehicleLength": min_vehicle_length,
310311
"UnitCategoryId": unit_category_id,
311-
"StartDate": start_date.strftime(UseDirectConfig.DATE_FORMAT),
312+
"StartDate": greatest_start.strftime(UseDirectConfig.DATE_FORMAT),
312313
"WebOnly": web_only,
313314
"UnitTypesGroupIds": []
314315
if unit_type_group_ids is None

tests/debug_camply.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"""
2+
Debugging Script
3+
"""
4+
5+
from tests.conftest import CamplyRunner
6+
7+
8+
def test_debug_usedirect(cli_runner: CamplyRunner) -> None:
9+
"""
10+
Debug the Camply CLI - ReserveCalifornia - UseDirect
11+
12+
https://reservecalifornia.com/Web/#!park/726/737
13+
"""
14+
test_command = """
15+
camply \
16+
campsites \
17+
--provider ReserveCalifornia \
18+
--campground 737 \
19+
--start-date 2024-04-29 \
20+
--end-date 2024-04-30
21+
"""
22+
result = cli_runner.run_camply_command(command=test_command)
23+
assert result.exit_code == 0

0 commit comments

Comments
 (0)