| 
									
										
										
										
											2020-10-24 05:38:56 +02:00
										 |  |  | from worlds.alttp.Dungeons import create_dungeons | 
					
						
							|  |  |  | from worlds.alttp.EntranceShuffle import connect_entrance, Inverted_LW_Entrances, Inverted_LW_Dungeon_Entrances, Inverted_LW_Single_Cave_Doors, Inverted_Old_Man_Entrances, Inverted_DW_Entrances, Inverted_DW_Dungeon_Entrances, Inverted_DW_Single_Cave_Doors, \ | 
					
						
							| 
									
										
										
										
											2020-04-29 01:34:30 +10:00
										 |  |  |     Inverted_LW_Entrances_Must_Exit, Inverted_LW_Dungeon_Entrances_Must_Exit, Inverted_Bomb_Shop_Multi_Cave_Doors, Inverted_Bomb_Shop_Single_Cave_Doors, Blacksmith_Single_Cave_Doors, Inverted_Blacksmith_Multi_Cave_Doors | 
					
						
							| 
									
										
										
										
											2020-10-24 05:38:56 +02:00
										 |  |  | from worlds.alttp.InvertedRegions import create_inverted_regions | 
					
						
							|  |  |  | from worlds.alttp.ItemPool import difficulties | 
					
						
							|  |  |  | from worlds.alttp.Rules import set_inverted_big_bomb_rules | 
					
						
							| 
									
										
										
										
											2023-10-10 15:30:20 -05:00
										 |  |  | from worlds.alttp.test import LTTPTestBase | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-10 15:30:20 -05:00
										 |  |  | class TestInvertedBombRules(LTTPTestBase): | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2023-10-10 15:30:20 -05:00
										 |  |  |         self.world_setup() | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         self.multiworld.difficulty_requirements[1] = difficulties['normal'] | 
					
						
							| 
									
										
										
										
											2024-02-19 19:07:49 -05:00
										 |  |  |         self.multiworld.mode[1].value = 2 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         create_inverted_regions(self.multiworld, 1) | 
					
						
							| 
									
										
										
										
											2023-05-20 19:57:48 +02:00
										 |  |  |         self.multiworld.worlds[1].create_dungeons() | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     #TODO: Just making sure I haven't missed an entrance.  It would be good to test the rules make sense as well. | 
					
						
							|  |  |  |     def testInvertedBombRulesAreComplete(self): | 
					
						
							|  |  |  |         entrances = list(Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Single_Cave_Doors + Inverted_Old_Man_Entrances + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_DW_Single_Cave_Doors) | 
					
						
							|  |  |  |         must_exits = list(Inverted_LW_Entrances_Must_Exit + Inverted_LW_Dungeon_Entrances_Must_Exit) | 
					
						
							|  |  |  |         for entrance_name in (entrances + must_exits): | 
					
						
							|  |  |  |             if entrance_name not in ['Desert Palace Entrance (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave (Bottom)']: | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |                 entrance = self.multiworld.get_entrance(entrance_name, 1) | 
					
						
							|  |  |  |                 connect_entrance(self.multiworld, entrance_name, 'Inverted Big Bomb Shop', 1) | 
					
						
							|  |  |  |                 set_inverted_big_bomb_rules(self.multiworld, 1) | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  |                 entrance.connected_region.entrances.remove(entrance) | 
					
						
							|  |  |  |                 entrance.connected_region = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 14:44:00 +10:00
										 |  |  |     def testInvalidEntrancesAreNotUsed(self): | 
					
						
							| 
									
										
										
										
											2020-04-29 01:34:30 +10:00
										 |  |  |         entrances = list(Inverted_Blacksmith_Multi_Cave_Doors + Blacksmith_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors + Inverted_Bomb_Shop_Single_Cave_Doors) | 
					
						
							| 
									
										
										
										
											2020-04-05 14:44:00 +10:00
										 |  |  |         invalid_entrances = ['Desert Palace Entrance (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave (Bottom)', 'Pyramid Fairy'] | 
					
						
							|  |  |  |         for invalid_entrance in invalid_entrances: | 
					
						
							|  |  |  |             self.assertNotIn(invalid_entrance, entrances) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  |     def testInvalidEntrances(self): | 
					
						
							|  |  |  |         for entrance_name in ['Desert Palace Entrance (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave (Bottom)']: | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             entrance = self.multiworld.get_entrance(entrance_name, 1) | 
					
						
							|  |  |  |             connect_entrance(self.multiworld, entrance_name, 'Inverted Big Bomb Shop', 1) | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  |             with self.assertRaises(Exception): | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |                 set_inverted_big_bomb_rules(self.multiworld, 1) | 
					
						
							| 
									
										
										
										
											2020-03-19 21:55:26 +11:00
										 |  |  |             entrance.connected_region.entrances.remove(entrance) | 
					
						
							|  |  |  |             entrance.connected_region = None |