-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_aoc202208.py
62 lines (45 loc) · 1.38 KB
/
test_aoc202208.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
"""Tests for AoC 8, 2022: Treetop Tree House."""
# Standard library imports
import pathlib
# Third party imports
import aoc202208
import pytest
PUZZLE_DIR = pathlib.Path(__file__).parent
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1.txt").read_text().rstrip()
return aoc202208.parse_data(puzzle_input)
@pytest.fixture
def example2():
puzzle_input = (PUZZLE_DIR / "example2.txt").read_text().rstrip()
return aoc202208.parse_data(puzzle_input)
def test_parse_example1(example1):
"""Test that input is parsed properly."""
assert example1 == (
[
[3, 0, 3, 7, 3],
[2, 5, 5, 1, 2],
[6, 5, 3, 3, 2],
[3, 3, 5, 4, 9],
[3, 5, 3, 9, 0],
],
[
[3, 2, 6, 3, 3],
[0, 5, 5, 3, 5],
[3, 5, 3, 5, 3],
[7, 1, 3, 4, 9],
[3, 2, 2, 9, 0],
],
)
def test_part1_example1(example1):
"""Test part 1 on example input."""
assert aoc202208.part1(example1) == 21
def test_part1_example2(example2):
"""Test part 1 on example input."""
assert aoc202208.part1(example2) == 23
def test_part2_example1(example1):
"""Test part 2 on example input."""
assert aoc202208.part2(example1) == 8
def test_part2_example2(example2):
"""Test part 2 on example input."""
assert aoc202208.part2(example2) == 12