diff options
Diffstat (limited to 'test/TestPilgrimage.py')
-rw-r--r-- | test/TestPilgrimage.py | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/test/TestPilgrimage.py b/test/TestPilgrimage.py index 3cc9194..4c5e259 100644 --- a/test/TestPilgrimage.py +++ b/test/TestPilgrimage.py | |||
@@ -29,7 +29,6 @@ class TestPilgrimageWithRoofAndPaintings(LingoTestBase): | |||
29 | "Outside The Undeterred - Green Painting"] | 29 | "Outside The Undeterred - Green Painting"] |
30 | 30 | ||
31 | for door in doors: | 31 | for door in doors: |
32 | print(door) | ||
33 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | 32 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) |
34 | self.collect_by_name(door) | 33 | self.collect_by_name(door) |
35 | 34 | ||
@@ -53,7 +52,6 @@ class TestPilgrimageNoRoofYesPaintings(LingoTestBase): | |||
53 | "Starting Room - Street Painting"] | 52 | "Starting Room - Street Painting"] |
54 | 53 | ||
55 | for door in doors: | 54 | for door in doors: |
56 | print(door) | ||
57 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | 55 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) |
58 | self.collect_by_name(door) | 56 | self.collect_by_name(door) |
59 | 57 | ||
@@ -81,13 +79,40 @@ class TestPilgrimageNoRoofNoPaintings(LingoTestBase): | |||
81 | "Orange Tower Fourth Floor - Hot Crusts Door"] | 79 | "Orange Tower Fourth Floor - Hot Crusts Door"] |
82 | 80 | ||
83 | for door in doors: | 81 | for door in doors: |
84 | print(door) | ||
85 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | 82 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) |
86 | self.collect_by_name(door) | 83 | self.collect_by_name(door) |
87 | 84 | ||
88 | self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | 85 | self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) |
89 | 86 | ||
90 | 87 | ||
88 | class TestPilgrimageRequireStartingRoom(LingoTestBase): | ||
89 | options = { | ||
90 | "enable_pilgrimage": "true", | ||
91 | "shuffle_colors": "false", | ||
92 | "shuffle_doors": "complex", | ||
93 | "pilgrimage_allows_roof_access": "false", | ||
94 | "pilgrimage_allows_paintings": "false", | ||
95 | "early_color_hallways": "false" | ||
96 | } | ||
97 | |||
98 | def test_access(self): | ||
99 | doors = ["Second Room - Exit Door", "Crossroads - Roof Access", "Hub Room - Crossroads Entrance", | ||
100 | "Outside The Undeterred - Green Painting", "Outside The Undeterred - Number Hunt", | ||
101 | "Starting Room - Street Painting", "Outside The Initiated - Shortcut to Hub Room", | ||
102 | "Directional Gallery - Shortcut to The Undeterred", "Orange Tower First Floor - Salt Pepper Door", | ||
103 | "Color Hunt - Shortcut to The Steady", "The Bearer - Entrance", | ||
104 | "Orange Tower Fifth Floor - Quadruple Intersection", "The Tenacious - Shortcut to Hub Room", | ||
105 | "Outside The Agreeable - Tenacious Entrance", "Crossroads - Tower Entrance", | ||
106 | "Orange Tower Fourth Floor - Hot Crusts Door", "Challenge Room - Welcome Door", | ||
107 | "Number Hunt - Challenge Entrance", "Welcome Back Area - Shortcut to Starting Room"] | ||
108 | |||
109 | for door in doors: | ||
110 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | ||
111 | self.collect_by_name(door) | ||
112 | |||
113 | self.assertTrue(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | ||
114 | |||
115 | |||
91 | class TestPilgrimageYesRoofNoPaintings(LingoTestBase): | 116 | class TestPilgrimageYesRoofNoPaintings(LingoTestBase): |
92 | options = { | 117 | options = { |
93 | "enable_pilgrimage": "true", | 118 | "enable_pilgrimage": "true", |
@@ -107,7 +132,6 @@ class TestPilgrimageYesRoofNoPaintings(LingoTestBase): | |||
107 | "Orange Tower Fifth Floor - Quadruple Intersection"] | 132 | "Orange Tower Fifth Floor - Quadruple Intersection"] |
108 | 133 | ||
109 | for door in doors: | 134 | for door in doors: |
110 | print(door) | ||
111 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) | 135 | self.assertFalse(self.can_reach_location("Pilgrim Antechamber - PILGRIM")) |
112 | self.collect_by_name(door) | 136 | self.collect_by_name(door) |
113 | 137 | ||