diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-24 08:34:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 14:34:51 +0200 |
commit | 1c142350c379d503de512953072f55a8737c30d2 (patch) | |
tree | 40b469c4be80a2f273706a66683e9074217a6045 /test/TestPostgame.py | |
parent | cccdf6481571cd883c9519cde0a717b6f336fbda (diff) | |
download | lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.gz lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.bz2 lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.zip |
Lingo: Add option to prevent shuffling postgame (#3350)
* Lingo: Add option to prevent shuffling postgame * Allow roof access on door shuffle * Fix broken unit test * Simplified THE END edge case * Revert unnecessary change * Review comments * Fix mastery unit test * Update generated.dat * Added player's name to error message
Diffstat (limited to 'test/TestPostgame.py')
-rw-r--r-- | test/TestPostgame.py | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/test/TestPostgame.py b/test/TestPostgame.py new file mode 100644 index 0000000..d2e2232 --- /dev/null +++ b/test/TestPostgame.py | |||
@@ -0,0 +1,62 @@ | |||
1 | from . import LingoTestBase | ||
2 | |||
3 | |||
4 | class TestPostgameVanillaTheEnd(LingoTestBase): | ||
5 | options = { | ||
6 | "shuffle_doors": "none", | ||
7 | "victory_condition": "the_end", | ||
8 | "shuffle_postgame": "false", | ||
9 | } | ||
10 | |||
11 | def test_requirement(self): | ||
12 | location_names = [location.name for location in self.multiworld.get_locations(self.player)] | ||
13 | |||
14 | self.assertTrue("The End (Solved)" in location_names) | ||
15 | self.assertTrue("Champion's Rest - YOU" in location_names) | ||
16 | self.assertFalse("Orange Tower Seventh Floor - THE MASTER" in location_names) | ||
17 | self.assertFalse("The Red - Achievement" in location_names) | ||
18 | |||
19 | |||
20 | class TestPostgameComplexDoorsTheEnd(LingoTestBase): | ||
21 | options = { | ||
22 | "shuffle_doors": "complex", | ||
23 | "victory_condition": "the_end", | ||
24 | "shuffle_postgame": "false", | ||
25 | } | ||
26 | |||
27 | def test_requirement(self): | ||
28 | location_names = [location.name for location in self.multiworld.get_locations(self.player)] | ||
29 | |||
30 | self.assertTrue("The End (Solved)" in location_names) | ||
31 | self.assertFalse("Orange Tower Seventh Floor - THE MASTER" in location_names) | ||
32 | self.assertTrue("The Red - Achievement" in location_names) | ||
33 | |||
34 | |||
35 | class TestPostgameLateColorHunt(LingoTestBase): | ||
36 | options = { | ||
37 | "shuffle_doors": "none", | ||
38 | "victory_condition": "the_end", | ||
39 | "sunwarp_access": "disabled", | ||
40 | "shuffle_postgame": "false", | ||
41 | } | ||
42 | |||
43 | def test_requirement(self): | ||
44 | location_names = [location.name for location in self.multiworld.get_locations(self.player)] | ||
45 | |||
46 | self.assertFalse("Champion's Rest - YOU" in location_names) | ||
47 | |||
48 | |||
49 | class TestPostgameVanillaTheMaster(LingoTestBase): | ||
50 | options = { | ||
51 | "shuffle_doors": "none", | ||
52 | "victory_condition": "the_master", | ||
53 | "shuffle_postgame": "false", | ||
54 | } | ||
55 | |||
56 | def test_requirement(self): | ||
57 | location_names = [location.name for location in self.multiworld.get_locations(self.player)] | ||
58 | |||
59 | self.assertTrue("Orange Tower Seventh Floor - THE END" in location_names) | ||
60 | self.assertTrue("Orange Tower Seventh Floor - Mastery Achievements" in location_names) | ||
61 | self.assertTrue("The Red - Achievement" in location_names) | ||
62 | self.assertFalse("Mastery Panels" in location_names) | ||