summary refs log tree commit diff stats
path: root/test/TestPilgrimage.py
blob: 3cc91940017e3c4cd6b3646162e5688cccbaaf0a (plain) (blame)
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
from . import LingoTestBase


class TestDisabledPilgrimage(LingoTestBase):
    options = {
        "enable_pilgrimage": "false",
        "shuffle_colors": "false"
    }

    def test_access(self):
        self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))
        
        self.collect_by_name("Pilgrim Room - Sun Painting")
        self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))


class TestPilgrimageWithRoofAndPaintings(LingoTestBase):
    options = {
        "enable_pilgrimage": "true",
        "shuffle_colors": "false",
        "shuffle_doors": "complex",
        "pilgrimage_allows_roof_access": "true",
        "pilgrimage_allows_paintings": "true",
        "early_color_hallways": "false"
    }

    def test_access(self):
        doors = ["Second Room - Exit Door", "Crossroads - Roof Access", "Hub Room - Crossroads Entrance",
                 "Outside The Undeterred - Green Painting"]

        for door in doors:
            print(door)
            self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))
            self.collect_by_name(door)
        
        self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))


class TestPilgrimageNoRoofYesPaintings(LingoTestBase):
    options = {
        "enable_pilgrimage": "true",
        "shuffle_colors": "false",
        "shuffle_doors": "complex",
        "pilgrimage_allows_roof_access": "false",
        "pilgrimage_allows_paintings": "true",
        "early_color_hallways": "false"
    }

    def test_access(self):
        doors = ["Second Room - Exit Door", "Crossroads - Roof Access", "Hub Room - Crossroads Entrance",
                 "Outside The Undeterred - Green Painting", "Crossroads - Tower Entrance",
                 "Orange Tower Fourth Floor - Hot Crusts Door", "Orange Tower First Floor - Shortcut to Hub Room",
                 "Starting Room - Street Painting"]

        for door in doors:
            print(door)
            self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))
            self.collect_by_name(door)
        
        self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))


class TestPilgrimageNoRoofNoPaintings(LingoTestBase):
    options = {
        "enable_pilgrimage": "true",
        "shuffle_colors": "false",
        "shuffle_doors": "complex",
        "pilgrimage_allows_roof_access": "false",
        "pilgrimage_allows_paintings": "false",
        "early_color_hallways": "false"
    }

    def test_access(self):
        doors = ["Second Room - Exit Door", "Crossroads - Roof Access", "Hub Room - Crossroads Entrance",
                 "Outside The Undeterred - Green Painting", "Orange Tower First Floor - Shortcut to Hub Room",
                 "Starting Room - Street Painting", "Outside The Initiated - Shortcut to Hub Room",
                 "Directional Gallery - Shortcut to The Undeterred", "Orange Tower First Floor - Salt Pepper Door",
                 "Color Hunt - Shortcut to The Steady", "The Bearer - Entrance",
                 "Orange Tower Fifth Floor - Quadruple Intersection", "The Tenacious - Shortcut to Hub Room",
                 "Outside The Agreeable - Tenacious Entrance", "Crossroads - Tower Entrance",
                 "Orange Tower Fourth Floor - Hot Crusts Door"]

        for door in doors:
            print(door)
            self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))
            self.collect_by_name(door)
        
        self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))


class TestPilgrimageYesRoofNoPaintings(LingoTestBase):
    options = {
        "enable_pilgrimage": "true",
        "shuffle_colors": "false",
        "shuffle_doors": "complex",
        "pilgrimage_allows_roof_access": "true",
        "pilgrimage_allows_paintings": "false",
        "early_color_hallways": "false"
    }

    def test_access(self):
        doors = ["Second Room - Exit Door", "Crossroads - Roof Access", "Hub Room - Crossroads Entrance",
                 "Outside The Undeterred - Green Painting", "Orange Tower First Floor - Shortcut to Hub Room",
                 "Starting Room - Street Painting", "Outside The Initiated - Shortcut to Hub Room",
                 "Directional Gallery - Shortcut to The Undeterred", "Orange Tower First Floor - Salt Pepper Door",
                 "Color Hunt - Shortcut to The Steady", "The Bearer - Entrance",
                 "Orange Tower Fifth Floor - Quadruple Intersection"]

        for door in doors:
            print(door)
            self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))
            self.collect_by_name(door)
        
        self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM"))