-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_aoc202313.py
104 lines (91 loc) · 2.08 KB
/
test_aoc202313.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
"""Tests for AoC 13, 2023: Point of Incidence."""
# Standard library imports
import pathlib
# Third party imports
import aoc202313
import pytest
PUZZLE_DIR = pathlib.Path(__file__).parent
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1.txt").read_text().rstrip()
return aoc202313.parse_data(puzzle_input)
@pytest.fixture
def example2():
puzzle_input = (PUZZLE_DIR / "example2.txt").read_text().rstrip()
return aoc202313.parse_data(puzzle_input)
def test_parse_example1(example1):
"""Test that input is parsed properly."""
assert example1 == [
{
(3, 1),
(4, 9),
(2, 5),
(1, 3),
(2, 8),
(7, 1),
(6, 8),
(4, 2),
(3, 9),
(5, 6),
(5, 3),
(1, 8),
(6, 4),
(7, 3),
(6, 7),
(7, 6),
(3, 2),
(4, 1),
(5, 5),
(5, 8),
(1, 1),
(1, 4),
(2, 3),
(1, 7),
(2, 6),
(7, 5),
(6, 3),
(7, 8),
},
{
(3, 4),
(4, 3),
(3, 7),
(5, 4),
(5, 1),
(5, 7),
(1, 6),
(1, 9),
(7, 1),
(6, 8),
(4, 2),
(4, 5),
(3, 3),
(3, 9),
(4, 8),
(5, 3),
(2, 1),
(1, 5),
(6, 4),
(7, 9),
(6, 7),
(7, 6),
(4, 1),
(4, 7),
(5, 2),
(4, 4),
(3, 8),
(5, 5),
(5, 8),
(1, 1),
(2, 9),
(2, 6),
(6, 3),
(6, 9),
},
]
def test_part1_example1(example1):
"""Test part 1 on example input."""
assert aoc202313.part1(example1) == 405
def test_part2_example1(example1):
"""Test part 2 on example input."""
assert aoc202313.part2(example1) == 400