2021-10-21 18:23:13 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
from BaseClasses import CollectionState
|
|
|
|
from worlds.AutoWorld import AutoWorldRegister
|
|
|
|
|
2023-02-15 21:46:10 +00:00
|
|
|
from . import setup_solo_multiworld
|
2021-10-21 18:23:13 +00:00
|
|
|
|
2022-04-01 01:32:17 +00:00
|
|
|
|
2021-10-21 18:23:13 +00:00
|
|
|
class TestBase(unittest.TestCase):
|
|
|
|
gen_steps = ["generate_early", "create_regions", "create_items", "set_rules", "generate_basic", "pre_fill"]
|
|
|
|
|
|
|
|
def testAllStateCanReachEverything(self):
|
|
|
|
for game_name, world_type in AutoWorldRegister.world_types.items():
|
2022-02-20 21:19:20 +00:00
|
|
|
# Final Fantasy logic is controlled by finalfantasyrandomizer.com
|
2023-02-15 21:46:10 +00:00
|
|
|
if game_name not in {"Ori and the Blind Forest"}: # TODO: fix Ori Logic
|
2021-10-21 18:23:13 +00:00
|
|
|
with self.subTest("Game", game=game_name):
|
2023-02-15 21:46:10 +00:00
|
|
|
world = setup_solo_multiworld(world_type)
|
2022-04-01 01:32:17 +00:00
|
|
|
excluded = world.exclude_locations[1].value
|
2021-10-21 18:23:13 +00:00
|
|
|
state = world.get_all_state(False)
|
|
|
|
for location in world.get_locations():
|
2022-04-01 01:32:17 +00:00
|
|
|
if location.name not in excluded:
|
|
|
|
with self.subTest("Location should be reached", location=location):
|
2022-09-28 21:54:10 +00:00
|
|
|
self.assertTrue(location.can_reach(state), f"{location.name} unreachable")
|
2021-10-21 18:23:13 +00:00
|
|
|
|
2022-05-10 17:48:54 +00:00
|
|
|
with self.subTest("Completion Condition"):
|
|
|
|
self.assertTrue(world.can_beat_game(state))
|
|
|
|
|
2021-10-21 18:23:13 +00:00
|
|
|
def testEmptyStateCanReachSomething(self):
|
|
|
|
for game_name, world_type in AutoWorldRegister.world_types.items():
|
2022-02-20 21:19:20 +00:00
|
|
|
# Final Fantasy logic is controlled by finalfantasyrandomizer.com
|
2023-02-15 21:46:10 +00:00
|
|
|
if game_name not in {"Archipelago", "Sudoku"}:
|
2021-10-21 18:23:13 +00:00
|
|
|
with self.subTest("Game", game=game_name):
|
2023-02-15 21:46:10 +00:00
|
|
|
world = setup_solo_multiworld(world_type)
|
2021-10-21 18:23:13 +00:00
|
|
|
state = CollectionState(world)
|
|
|
|
locations = set()
|
|
|
|
for location in world.get_locations():
|
|
|
|
if location.can_reach(state):
|
|
|
|
locations.add(location)
|
|
|
|
self.assertGreater(len(locations), 0,
|
2022-02-20 21:19:20 +00:00
|
|
|
msg="Need to be able to reach at least one location to get started.")
|