-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_aoc202214.py
52 lines (41 loc) · 1.04 KB
/
test_aoc202214.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
"""Tests for AoC 14, 2022: Regolith Reservoir."""
# Standard library imports
import pathlib
# Third party imports
import aoc202214
import pytest
PUZZLE_DIR = pathlib.Path(__file__).parent
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1.txt").read_text().rstrip()
return aoc202214.parse_data(puzzle_input)
def test_parse_example1(example1):
"""Test that input is parsed properly."""
assert set(example1.keys()) == {
(498, 4),
(498, 5),
(498, 6),
(497, 6),
(496, 6),
(503, 4),
(502, 4),
(502, 5),
(502, 6),
(502, 7),
(502, 8),
(502, 9),
(501, 9),
(500, 9),
(499, 9),
(498, 9),
(497, 9),
(496, 9),
(495, 9),
(494, 9),
}
def test_part1_example1(example1):
"""Test part 1 on example input."""
assert aoc202214.part1(example1) == 24
def test_part2_example1(example1):
"""Test part 2 on example input."""
assert aoc202214.part2(example1) == 93