-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_formatters.py
217 lines (183 loc) · 7.62 KB
/
test_formatters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import unittest
from datetime import date
from textwrap import dedent
from typing import Any, Dict
import re
import tempfile
import os
from unittest.mock import patch
import leetcode_study_tool.formatters as formatters
from leetcode_study_tool.queries import get_data, get_url
class TestFormatters(unittest.TestCase):
def setUp(self) -> None:
super().setUp()
self.maxDiff = None
def assertAnkiCardStructure(
self, anki_html: str, problem_slug: str, problem_data: Dict[Any, Any]
):
"""
Verify the structure and key components of the Anki card HTML.
For tags, ensure they appear after the second semicolon.
"""
self.assertTrue(f"https://leetcode.com/problems/{problem_slug}" in anki_html)
self.assertTrue(f'<p>{problem_data["difficulty"]}</p>' in anki_html)
semicolon_index = anki_html.rfind(";")
for tag in problem_data.get("tags", []):
self.assertIn(
tag["slug"], anki_html[semicolon_index:],
f"Tag {tag['name']} should appear after the second semicolon"
)
self.assertRegex(anki_html, r"<strong>LeetCode User Solutions:</strong>")
solution_links = re.findall(
r"https://leetcode\.com/problems/[^/]+/solutions/\d+/1/", anki_html
)
self.assertGreater(
len(solution_links), 0, "Should have at least one solution link"
)
if problem_data.get("neetcode_video_id"):
self.assertIn("youtube.com/watch?", anki_html)
def test_format_solution_link(self):
self.assertEqual(
formatters.format_solution_link("fake-slug", "fake-solution-id"),
"https://leetcode.com/problems/fake-slug/solutions/fake-solution-id/1/",
)
def test_format_anki(self):
"""Test the Anki card formatter with actual LeetCode data"""
problem_slug = "two-sum"
data = get_data(problem_slug)
formatted_anki = formatters.format_anki(
get_url(problem_slug), problem_slug, data
)
print(formatted_anki)
self.assertAnkiCardStructure(formatted_anki, problem_slug, data)
self.assertTrue(formatted_anki.startswith("<h1>"))
self.assertTrue("</ul>" in formatted_anki)
self.assertEqual(
formatted_anki.count("<ul>"),
formatted_anki.count("</ul>"),
"Mismatched <ul> tags",
)
self.assertEqual(
formatted_anki.count("<li>"),
formatted_anki.count("</li>"),
"Mismatched <li> tags",
)
def test_format_excel(self):
data = get_data("two-sum")
# Don't check the last two elements of the list because they
# will change over time. Also, mocking time causes issues with
# urllib, so avoid.
output = formatters.format_excel(get_url("two-sum"), "two-sum", data)
output = output[:7]
self.assertListEqual(
output,
[
"1",
"Two Sum",
"Easy",
"https://leetcode.com/problems/two-sum/",
date.today(),
"Array, Hash Table",
"https://youtube.com/watch?v=KLlXCFG5TnA",
],
)
def test_render_template(self):
"""Test the template rendering functionality"""
test_data = {
"id": "1",
"title": "Test Problem",
"content": "Test content",
"difficulty": "Medium",
"tags": [{"name": "Array", "slug": "array"}],
"solutions": [{"id": "12345"}]
}
rendered = formatters.render_template(
None,
"anki.html.j2",
url="https://example.com",
slug="test-problem",
data=test_data,
neetcode=None
)
self.assertIn("Test Problem", rendered)
self.assertIn("Medium", rendered)
self.assertIn("solutions/12345/1/", rendered)
semicolon_index = rendered.rfind(";")
self.assertIn("array", rendered[semicolon_index:],
"Tag 'Array' should appear only after the second semicolon")
def test_render_custom_template(self):
"""Test rendering with a custom template file"""
with tempfile.NamedTemporaryFile(mode='w', suffix='.html.j2', delete=False) as tmp:
tmp.write("{{ data.title }} - {{ data.difficulty }} - {{ url }}")
tmp_path = tmp.name
try:
test_data = {
"id": "1",
"title": "Test Problem",
"content": "Test content",
"difficulty": "Medium",
"tags": [{"name": "Array", "slug": "array"}],
"solutions": [{"id": "12345"}]
}
rendered = formatters.render_template(
tmp_path,
None,
url="https://example.com",
data=test_data
)
self.assertEqual("Test Problem - Medium - https://example.com", rendered)
finally:
os.unlink(tmp_path)
def test_render_template_error(self):
"""Test error handling when no template is provided"""
with self.assertRaises(ValueError):
formatters.render_template(None, None)
def test_format_anki_custom_template(self):
"""Test the Anki card formatter with custom template"""
problem_slug = "two-sum"
data = get_data(problem_slug)
with tempfile.NamedTemporaryFile(mode='w', suffix='.html.j2', delete=False) as tmp:
tmp.write("CUSTOM: {{ data.title }} - {{ data.difficulty }} - {{ url }}")
tmp_path = tmp.name
try:
formatted_anki = formatters.format_anki(
get_url(problem_slug), problem_slug, data, template_path=tmp_path
)
self.assertIn("CUSTOM:", formatted_anki)
self.assertIn("Two Sum", formatted_anki)
self.assertIn("Easy", formatted_anki)
finally:
os.unlink(tmp_path)
def test_format_anki_with_template(self):
"""Test the Anki card formatter with templates"""
problem_slug = "two-sum"
data = get_data(problem_slug)
formatted_anki = formatters.format_anki(
get_url(problem_slug), problem_slug, data
)
self.assertIn("<h1>", formatted_anki)
self.assertIn("</h1>", formatted_anki)
if data.get("companies"):
self.assertIn("Companies:", formatted_anki)
if str(data["id"]) in formatters.LEETCODE_TO_NEETCODE:
self.assertIn("NeetCode Solution:", formatted_anki)
@patch("leetcode_study_tool.queries.get_data")
def test_format_anki_with_github_solution(self, mock_get_data):
"""Test the Anki card formatter with a GitHub solution"""
problem_slug = "two-sum"
mock_data = {
"id": "1",
"title": "Two Sum",
"difficulty": "Easy",
"content": "<p>Test content</p>",
"tags": [{"name": "Array", "slug": "array"}],
"companies": [{"name": "Amazon", "slug": "amazon"}],
"solutions": [{"id": "12345"}],
"neetcode_solution": "def two_sum(nums, target):\n # GitHub solution code\n pass"
}
mock_get_data.return_value = mock_data
formatted_anki = formatters.format_anki(
get_url(problem_slug), problem_slug, mock_data
)
self.assertIn("GitHub solution code", formatted_anki)
self.assertIn("def two_sum", formatted_anki)