mirror of
https://github.com/NomaDamas/k-skill.git
synced 2026-06-24 02:04:11 +00:00
* Protect explicit Korail train-type replay Issue #171 added explicit train-type selection for non-KTX Korail routes. The merged implementation already wires search and reserve through TRAIN_TYPE_MAP; this follow-up locks that behavior with command-level and parser regression coverage, removes stale test import noise, and aligns the skill shortlist wording with the broader train_type output. Constraint: The ktx-booking skill keeps ktx as the default train type for backward compatibility. Rejected: Encode train type into train_id in this follow-up | larger selector schema change already marked as non-blocking UX follow-up. Confidence: high Scope-risk: narrow Directive: Do not hardcode command_search or command_reserve back to TrainType.KTX; keep parser choices derived from TRAIN_TYPE_MAP. Tested: python3 scripts/ktx_booking.py search --help Tested: python3 scripts/ktx_booking.py reserve --help Tested: PYTHONPATH=scripts python3 -m unittest scripts.test_ktx_booking Tested: python3 -m py_compile scripts/ktx_booking.py scripts/test_ktx_booking.py Tested: PYTHONNOUSERSITE=1 PYTHONPATH=scripts python3 -S -c 'import ktx_booking; print(ktx_booking._KORAIL_IMPORT_ERROR); print(ktx_booking.TRAIN_TYPE_MAP["itx-cheongchun"])' Tested: PYTHONNOUSERSITE=1 PYTHONPATH=scripts python3 -m unittest discover -s scripts -p 'test_ktx_booking.py' Tested: python3 -S scripts/ktx_booking.py search --help; python3 -S scripts/ktx_booking.py reserve --help Tested: npm run lint Tested: npm run typecheck Tested: npm test Not-tested: Live Korail search/reserve requiring credentials and external availability * Guard KTX search default during train-type regression Issue #171 locked explicit train-type choices for Korail search and reserve flows. The follow-up review found reserve default coverage but no direct search default assertion, so this adds the narrow parser regression without changing runtime behavior.\n\nConstraint: Issue #171 requires search and reserve train-type behavior to stay regression-covered.\nRejected: Broaden command-level tests for every train type | parser choices already loop over TRAIN_TYPE_MAP and command forwarding is covered for the non-KTX regression route.\nConfidence: high\nScope-risk: narrow\nTested: PYTHONPATH=scripts python3 -m unittest scripts.test_ktx_booking\nTested: python3 -m py_compile scripts/ktx_booking.py scripts/test_ktx_booking.py\nTested: npm run lint\nTested: npm run typecheck\nTested: npm test\nNot-tested: live Korail search/reserve requiring credentials and external service availability * Tighten KTX train-type regression tests The Issue #171 follow-up already locked the train-type CLI behavior. This pass addresses the remaining review cleanup in the modified test file by narrowing the normalized train_id before reuse and tidying formatting without changing behavior. Constraint: Keep the PR scoped to ktx-booking regression coverage and documentation Rejected: Encode train_type into train_id in this follow-up | broader selector migration is outside the approved regression scope Confidence: high Scope-risk: narrow Tested: PYTHONPATH=scripts python3 -m unittest scripts.test_ktx_booking Tested: python3 -m py_compile scripts/ktx_booking.py scripts/test_ktx_booking.py Tested: pyright scripts/test_ktx_booking.py Tested: npm run lint Tested: npm run typecheck Tested: npm test Not-tested: live Korail search/reserve requiring credentials and external service availability
370 lines
12 KiB
Python
370 lines
12 KiB
Python
import argparse
|
|
import io
|
|
import subprocess
|
|
import sys
|
|
import textwrap
|
|
import unittest
|
|
from contextlib import redirect_stdout
|
|
from pathlib import Path
|
|
from unittest.mock import patch
|
|
|
|
import ktx_booking
|
|
|
|
|
|
class FakeTrain:
|
|
def __init__(
|
|
self,
|
|
*,
|
|
train_no,
|
|
dep_time,
|
|
arr_time,
|
|
dep_date="20260328",
|
|
arr_date="20260328",
|
|
run_date="20260328",
|
|
train_group="00",
|
|
dep_name="서울",
|
|
arr_name="부산",
|
|
dep_code="0001",
|
|
arr_code="0020",
|
|
train_type_name="KTX",
|
|
has_general_seat=True,
|
|
has_special_seat=False,
|
|
has_waiting_list=False,
|
|
label=None,
|
|
):
|
|
self.train_no = train_no
|
|
self.dep_time = dep_time
|
|
self.arr_time = arr_time
|
|
self.dep_date = dep_date
|
|
self.arr_date = arr_date
|
|
self.run_date = run_date
|
|
self.train_group = train_group
|
|
self.dep_name = dep_name
|
|
self.arr_name = arr_name
|
|
self.dep_code = dep_code
|
|
self.arr_code = arr_code
|
|
self.train_type_name = train_type_name
|
|
self._has_general_seat = has_general_seat
|
|
self._has_special_seat = has_special_seat
|
|
self._has_waiting_list = has_waiting_list
|
|
self.label = label or train_no
|
|
|
|
def has_general_seat(self):
|
|
return self._has_general_seat
|
|
|
|
def has_special_seat(self):
|
|
return self._has_special_seat
|
|
|
|
def has_waiting_list(self):
|
|
return self._has_waiting_list
|
|
|
|
def has_general_waiting_list(self):
|
|
return self._has_waiting_list
|
|
|
|
def __str__(self):
|
|
return self.label
|
|
|
|
|
|
class FakeReservation:
|
|
rsv_id = "320260307102676"
|
|
train_no = "009"
|
|
train_type_name = "KTX"
|
|
dep_name = "서울"
|
|
dep_date = "20260328"
|
|
dep_time = "090000"
|
|
arr_name = "부산"
|
|
arr_date = "20260328"
|
|
arr_time = "113000"
|
|
seat_no_count = 1
|
|
price = 59800
|
|
buy_limit_date = "20260327"
|
|
buy_limit_time = "235900"
|
|
journey_no = "001"
|
|
journey_cnt = "01"
|
|
rsv_chg_no = "00000"
|
|
|
|
def __str__(self):
|
|
return "reservation"
|
|
|
|
|
|
class FakeClient:
|
|
def __init__(self, trains, search_handler=None):
|
|
self._trains = trains
|
|
self._search_handler = search_handler
|
|
self.search_calls = []
|
|
self.reserved_train = None
|
|
|
|
def search_train(self, *args, **kwargs):
|
|
self.search_calls.append(kwargs)
|
|
if self._search_handler is not None:
|
|
return list(self._search_handler(*args, **kwargs))
|
|
return list(self._trains)
|
|
|
|
def reserve(self, train, **kwargs):
|
|
self.reserved_train = train
|
|
return FakeReservation()
|
|
|
|
|
|
class KtxBookingTests(unittest.TestCase):
|
|
def make_args(self, train_id):
|
|
return argparse.Namespace(
|
|
dep="서울",
|
|
arr="부산",
|
|
date="20260328",
|
|
time="090000",
|
|
adults=1,
|
|
children=0,
|
|
toddlers=0,
|
|
seniors=0,
|
|
train_id=train_id,
|
|
seat_option="general-first",
|
|
train_type="ktx",
|
|
include_no_seats=False,
|
|
include_waiting_list=False,
|
|
try_waiting=False,
|
|
)
|
|
|
|
def test_normalize_train_emits_stable_train_id(self):
|
|
train = FakeTrain(train_no="009", dep_time="090000", arr_time="113000")
|
|
|
|
normalized = ktx_booking.normalize_train(train, index=2)
|
|
|
|
self.assertIn("train_id", normalized)
|
|
train_id = normalized["train_id"]
|
|
if not isinstance(train_id, str):
|
|
self.fail("train_id should be emitted as a string")
|
|
resolved = ktx_booking.find_train_by_id([train], train_id)
|
|
self.assertIs(resolved, train)
|
|
|
|
def test_build_parser_requires_train_id_for_reserve(self):
|
|
args = ktx_booking.build_parser().parse_args([
|
|
"reserve",
|
|
"서울",
|
|
"부산",
|
|
"20260328",
|
|
"090000",
|
|
"--train-id",
|
|
"ktx:v1:test",
|
|
])
|
|
|
|
self.assertEqual(args.train_id, "ktx:v1:test")
|
|
self.assertEqual(args.train_type, "ktx")
|
|
|
|
def test_build_parser_defaults_search_train_type_to_ktx(self):
|
|
args = ktx_booking.build_parser().parse_args([
|
|
"search",
|
|
"서울",
|
|
"부산",
|
|
"20260328",
|
|
"090000",
|
|
])
|
|
|
|
self.assertEqual(args.train_type, "ktx")
|
|
|
|
def test_parser_train_type_choices_match_supported_train_types(self):
|
|
parser = ktx_booking.build_parser()
|
|
for train_type in sorted(ktx_booking.TRAIN_TYPE_MAP):
|
|
search_args = parser.parse_args([
|
|
"search",
|
|
"서울",
|
|
"부산",
|
|
"20260328",
|
|
"090000",
|
|
"--train-type",
|
|
train_type,
|
|
])
|
|
reserve_args = parser.parse_args([
|
|
"reserve",
|
|
"서울",
|
|
"부산",
|
|
"20260328",
|
|
"090000",
|
|
"--train-id",
|
|
"ktx:v1:test",
|
|
"--train-type",
|
|
train_type,
|
|
])
|
|
self.assertEqual(search_args.train_type, train_type)
|
|
self.assertEqual(reserve_args.train_type, train_type)
|
|
|
|
def test_command_search_replays_selected_train_type(self):
|
|
selected = FakeTrain(
|
|
train_no="2080",
|
|
dep_time="155300",
|
|
arr_time="170000",
|
|
dep_name="남춘천",
|
|
arr_name="용산",
|
|
train_type_name="ITX-청춘",
|
|
)
|
|
client = FakeClient([selected])
|
|
args = argparse.Namespace(
|
|
dep="남춘천",
|
|
arr="용산",
|
|
date="20260503",
|
|
time="150000",
|
|
adults=1,
|
|
children=0,
|
|
toddlers=0,
|
|
seniors=0,
|
|
limit=5,
|
|
train_type="itx-cheongchun",
|
|
include_no_seats=False,
|
|
include_waiting_list=False,
|
|
)
|
|
|
|
with patch.object(ktx_booking, "build_client", return_value=client):
|
|
with redirect_stdout(io.StringIO()):
|
|
ktx_booking.command_search(args)
|
|
|
|
self.assertEqual(
|
|
client.search_calls[-1]["train_type"],
|
|
ktx_booking.TRAIN_TYPE_MAP["itx-cheongchun"],
|
|
)
|
|
|
|
def test_command_reserve_targets_exact_train_id_even_if_order_changes(self):
|
|
sold_out_first = FakeTrain(
|
|
train_no="001",
|
|
dep_time="050000",
|
|
arr_time="080000",
|
|
has_general_seat=False,
|
|
label="soldout-first",
|
|
)
|
|
user_selected = FakeTrain(train_no="009", dep_time="090000", arr_time="113000", label="user-selected")
|
|
other_train = FakeTrain(train_no="011", dep_time="093000", arr_time="120000", label="other-train")
|
|
train_id = ktx_booking.normalize_train(user_selected, index=2)["train_id"]
|
|
client = FakeClient([other_train, sold_out_first, user_selected])
|
|
|
|
with patch.object(ktx_booking, "build_client", return_value=client):
|
|
with redirect_stdout(io.StringIO()):
|
|
ktx_booking.command_reserve(self.make_args(train_id))
|
|
|
|
self.assertIs(client.reserved_train, user_selected)
|
|
|
|
def test_command_reserve_fails_if_selected_train_is_no_longer_available(self):
|
|
user_selected = FakeTrain(train_no="009", dep_time="090000", arr_time="113000", label="user-selected")
|
|
other_train = FakeTrain(train_no="011", dep_time="093000", arr_time="120000", label="other-train")
|
|
train_id = ktx_booking.normalize_train(user_selected, index=2)["train_id"]
|
|
client = FakeClient([other_train])
|
|
|
|
with patch.object(ktx_booking, "build_client", return_value=client):
|
|
with self.assertRaises(SystemExit) as exc:
|
|
with redirect_stdout(io.StringIO()):
|
|
ktx_booking.command_reserve(self.make_args(train_id))
|
|
|
|
self.assertIn("train_id", str(exc.exception))
|
|
|
|
def test_command_reserve_replays_selected_train_type(self):
|
|
selected = FakeTrain(train_no="009", dep_time="090000", arr_time="113000", label="selected")
|
|
train_id = ktx_booking.normalize_train(selected, index=1)["train_id"]
|
|
client = FakeClient([selected])
|
|
args = self.make_args(train_id)
|
|
args.train_type = "itx-cheongchun"
|
|
|
|
with patch.object(ktx_booking, "build_client", return_value=client):
|
|
with redirect_stdout(io.StringIO()):
|
|
ktx_booking.command_reserve(args)
|
|
|
|
self.assertEqual(client.search_calls[-1]["train_type"], ktx_booking.TRAIN_TYPE_MAP["itx-cheongchun"])
|
|
self.assertIs(client.reserved_train, selected)
|
|
|
|
def test_command_reserve_try_waiting_replays_search_with_waiting_list_enabled(self):
|
|
waiting_only = FakeTrain(
|
|
train_no="003",
|
|
dep_time="070000",
|
|
arr_time="093000",
|
|
has_general_seat=False,
|
|
has_special_seat=False,
|
|
has_waiting_list=True,
|
|
label="waiting-only",
|
|
)
|
|
train_id = ktx_booking.normalize_train(waiting_only, index=1)["train_id"]
|
|
client = FakeClient(
|
|
[],
|
|
search_handler=lambda *args, **kwargs: [waiting_only] if kwargs.get("include_waiting_list") else [],
|
|
)
|
|
args = self.make_args(train_id)
|
|
args.try_waiting = True
|
|
|
|
with patch.object(ktx_booking, "build_client", return_value=client):
|
|
with redirect_stdout(io.StringIO()):
|
|
ktx_booking.command_reserve(args)
|
|
|
|
self.assertTrue(client.search_calls)
|
|
self.assertTrue(client.search_calls[-1]["include_waiting_list"])
|
|
self.assertIs(client.reserved_train, waiting_only)
|
|
|
|
|
|
class FallbackImportTests(unittest.TestCase):
|
|
def test_module_imports_when_korail2_is_missing(self):
|
|
script_dir = Path(__file__).resolve().parent
|
|
helper = textwrap.dedent(
|
|
"""
|
|
import importlib
|
|
import sys
|
|
|
|
sys.modules["korail2"] = None
|
|
sys.modules.pop("ktx_booking", None)
|
|
module = importlib.import_module("ktx_booking")
|
|
|
|
assert module._KORAIL_IMPORT_ERROR is not None, "expected fallback path"
|
|
assert module.TRAIN_TYPE_MAP["ktx"] == "100"
|
|
assert module.TRAIN_TYPE_MAP["itx-cheongchun"] == "104"
|
|
assert module.TRAIN_TYPE_MAP["itx-saemaeul"] == "101"
|
|
assert module.TRAIN_TYPE_MAP["mugunghwa"] == "102"
|
|
assert module.TRAIN_TYPE_MAP["nuriro"] == "102"
|
|
assert module.TRAIN_TYPE_MAP["tonggeun"] == "103"
|
|
assert module.TRAIN_TYPE_MAP["airport"] == "105"
|
|
assert module.TRAIN_TYPE_MAP["all"] == "109"
|
|
print("ok")
|
|
"""
|
|
).strip()
|
|
env = {
|
|
"PYTHONPATH": str(script_dir),
|
|
"PYTHONNOUSERSITE": "1",
|
|
"PATH": "",
|
|
}
|
|
result = subprocess.run(
|
|
[sys.executable, "-S", "-c", helper],
|
|
capture_output=True,
|
|
text=True,
|
|
env=env,
|
|
check=False,
|
|
)
|
|
self.assertEqual(result.returncode, 0, msg=result.stderr)
|
|
self.assertIn("ok", result.stdout)
|
|
|
|
def test_help_works_when_korail2_is_missing(self):
|
|
script_dir = Path(__file__).resolve().parent
|
|
helper = textwrap.dedent(
|
|
"""
|
|
import importlib
|
|
import sys
|
|
|
|
sys.modules["korail2"] = None
|
|
sys.modules.pop("ktx_booking", None)
|
|
module = importlib.import_module("ktx_booking")
|
|
parser = module.build_parser()
|
|
help_text = parser.format_help()
|
|
assert "search" in help_text
|
|
assert "reserve" in help_text
|
|
print("ok")
|
|
"""
|
|
).strip()
|
|
env = {
|
|
"PYTHONPATH": str(script_dir),
|
|
"PYTHONNOUSERSITE": "1",
|
|
"PATH": "",
|
|
}
|
|
result = subprocess.run(
|
|
[sys.executable, "-S", "-c", helper],
|
|
capture_output=True,
|
|
text=True,
|
|
env=env,
|
|
check=False,
|
|
)
|
|
self.assertEqual(result.returncode, 0, msg=result.stderr)
|
|
self.assertIn("ok", result.stdout)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|