Skip to content

Commit 582e575

Browse files
committed
tests:
Support skipping tests that don't run under Windows; Add test for decorated identifiers
1 parent b702675 commit 582e575

File tree

9 files changed

+74
-1
lines changed

9 files changed

+74
-1
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class SpyderKernel(IPythonKernel):
2+
"""Spyder kernel for Jupyter."""
3+
4+
shell_class = SpyderShell
5+
@comm_handler
6+
def safe_exec(self, filename):
7+
"""Safely execute a file using IPKernelApp._exec_file."""
8+
self.parent._exec_file(filename)
9+
10+
@comm_handler
11+
def get_fault_text(self, fault_filename, main_id, ignore_ids):
12+
"""Get fault text from old run."""
13+
# Read file
14+
try:
15+
with open(fault_filename, 'r') as f:
16+
fault = f.read()
17+
except FileNotFoundError:
18+
return
19+
return text
20+
21+
def get_system_threads_id(self):
22+
"""Return the list of system threads id."""
23+
ignore_threads = [
24+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<no-train>
2+
```CEDARScript
3+
-- 1. Move the `get_fault_text` method from the `SpyderKernel` class to be a top-level function
4+
UPDATE METHOD "SpyderKernel.get_fault_text"
5+
FROM FILE "1.py"
6+
MOVE WHOLE
7+
INSERT BEFORE CLASS "SpyderKernel"
8+
RELATIVE INDENTATION 0;
9+
10+
-- 2. Update the copied function to remove references to `self`
11+
UPDATE FUNCTION "get_fault_text"
12+
FROM FILE r"1.py"
13+
REPLACE WHOLE WITH CASE
14+
WHEN REGEX r'''def get_fault_text\(''' THEN SUB
15+
r'''def get_fault_text\(self, fault_filename, main_id, ignore_ids\):'''
16+
r'''def get_fault_text(fault_filename, main_id, ignore_ids):'''
17+
END;
18+
19+
```
20+
</no-train>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@comm_handler
2+
def get_fault_text(fault_filename, main_id, ignore_ids):
3+
"""Get fault text from old run."""
4+
# Read file
5+
try:
6+
with open(fault_filename, 'r') as f:
7+
fault = f.read()
8+
except FileNotFoundError:
9+
return
10+
return text
11+
class SpyderKernel(IPythonKernel):
12+
"""Spyder kernel for Jupyter."""
13+
14+
shell_class = SpyderShell
15+
@comm_handler
16+
def safe_exec(self, filename):
17+
"""Safely execute a file using IPKernelApp._exec_file."""
18+
self.parent._exec_file(filename)
19+
20+
21+
def get_system_threads_id(self):
22+
"""Return the list of system threads id."""
23+
ignore_threads = [
24+
]

tests/test_corpus.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import re
22
import shutil
3+
import sys
34
import tempfile
45
import pytest
56
from pathlib import Path
@@ -40,6 +41,10 @@ def editor(tmp_path_factory):
4041
@pytest.mark.parametrize('test_case', get_test_cases())
4142
def test_corpus(editor: CEDARScriptEditor, test_case: str):
4243
"""Test CEDARScript commands from chat.xml files in corpus."""
44+
if test_case.casefold().endswith('!nowindows'):
45+
if sys.platform == 'win32':
46+
pytest.skip(f"Cannot run under Windows: {test_case.removesuffix('!nowindows')}")
47+
4348
try:
4449
corpus_dir = Path(__file__).parent / 'corpus'
4550
test_dir = corpus_dir / test_case
@@ -93,7 +98,7 @@ def check_expected_files(dir_path: Path):
9398
if str(rel_path).startswith("."):
9499
continue
95100
expected_file = test_dir / f"expected.{rel_path}"
96-
assert expected_file.exists(), f"'expecteed.*' file not found: {expected_file}"
101+
assert expected_file.exists(), f"'expected.*' file not found: {expected_file}"
97102

98103
expected_content = file_to_lines(expected_file, rel_path)
99104
actual_content = file_to_lines(path, rel_path)

0 commit comments

Comments
 (0)