test_envs.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. import warnings
  2. import gym
  3. import numpy as np
  4. import pytest
  5. from gym.envs.registration import EnvSpec
  6. from gym.utils.env_checker import check_env
  7. from gym_minigrid.minigrid import Grid, MissionSpace
  8. from tests.utils import all_testing_env_specs, assert_equals
  9. CHECK_ENV_IGNORE_WARNINGS = [
  10. f"\x1b[33mWARN: {message}\x1b[0m"
  11. for message in [
  12. "A Box observation space minimum value is -infinity. This is probably too low.",
  13. "A Box observation space maximum value is -infinity. This is probably too high.",
  14. "For Box action spaces, we recommend using a symmetric and normalized space (range=[-1, 1] or [0, 1]). See https://stable-baselines3.readthedocs.io/en/master/guide/rl_tips.html for more information.",
  15. "Initializing wrapper in old step API which returns one bool instead of two. It is recommended to set `new_step_api=True` to use new step API. This will be the default behaviour in future.",
  16. "Initializing environment in old step API which returns one bool instead of two. It is recommended to set `new_step_api=True` to use new step API. This will be the default behaviour in future.",
  17. "Core environment is written in old step API which returns one bool instead of two. It is recommended to rewrite the environment with new step API. ",
  18. ]
  19. ]
  20. @pytest.mark.parametrize(
  21. "spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_env_specs]
  22. )
  23. def test_env(spec):
  24. # Capture warnings
  25. env = spec.make(disable_env_checker=True).unwrapped
  26. warnings.simplefilter("always")
  27. # Test if env adheres to Gym API
  28. with warnings.catch_warnings(record=True) as w:
  29. check_env(env)
  30. for warning in w:
  31. if warning.message.args[0] not in CHECK_ENV_IGNORE_WARNINGS:
  32. raise gym.error.Error(f"Unexpected warning: {warning.message}")
  33. # Note that this precludes running this test in multiple threads.
  34. # However, we probably already can't do multithreading due to some environments.
  35. SEED = 0
  36. NUM_STEPS = 50
  37. @pytest.mark.parametrize(
  38. "env_spec", all_testing_env_specs, ids=[env.id for env in all_testing_env_specs]
  39. )
  40. def test_env_determinism_rollout(env_spec: EnvSpec):
  41. """Run a rollout with two environments and assert equality.
  42. This test run a rollout of NUM_STEPS steps with two environments
  43. initialized with the same seed and assert that:
  44. - observation after first reset are the same
  45. - same actions are sampled by the two envs
  46. - observations are contained in the observation space
  47. - obs, rew, done and info are equals between the two envs
  48. """
  49. # Don't check rollout equality if it's a nondeterministic environment.
  50. if env_spec.nondeterministic is True:
  51. return
  52. env_1 = env_spec.make(disable_env_checker=True)
  53. env_2 = env_spec.make(disable_env_checker=True)
  54. initial_obs_1 = env_1.reset(seed=SEED)
  55. initial_obs_2 = env_2.reset(seed=SEED)
  56. assert_equals(initial_obs_1, initial_obs_2)
  57. env_1.action_space.seed(SEED)
  58. for time_step in range(NUM_STEPS):
  59. # We don't evaluate the determinism of actions
  60. action = env_1.action_space.sample()
  61. obs_1, rew_1, done_1, info_1 = env_1.step(action)
  62. obs_2, rew_2, done_2, info_2 = env_2.step(action)
  63. assert_equals(obs_1, obs_2, f"[{time_step}] ")
  64. assert env_1.observation_space.contains(
  65. obs_1
  66. ) # obs_2 verified by previous assertion
  67. assert rew_1 == rew_2, f"[{time_step}] reward 1={rew_1}, reward 2={rew_2}"
  68. assert done_1 == done_2, f"[{time_step}] done 1={done_1}, done 2={done_2}"
  69. assert_equals(info_1, info_2, f"[{time_step}] ")
  70. if done_1: # done_2 verified by previous assertion
  71. env_1.reset(seed=SEED)
  72. env_2.reset(seed=SEED)
  73. env_1.close()
  74. env_2.close()
  75. @pytest.mark.parametrize(
  76. "spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_env_specs]
  77. )
  78. def test_render_modes(spec):
  79. env = spec.make()
  80. for mode in env.metadata.get("render_modes", []):
  81. if mode != "human":
  82. new_env = spec.make()
  83. new_env.reset()
  84. new_env.step(new_env.action_space.sample())
  85. new_env.render(mode=mode)
  86. @pytest.mark.parametrize("env_id", ["MiniGrid-DoorKey-6x6-v0"])
  87. def test_agent_sees_method(env_id):
  88. env = gym.make(env_id)
  89. goal_pos = (env.grid.width - 2, env.grid.height - 2)
  90. # Test the "in" operator on grid objects
  91. assert ("green", "goal") in env.grid
  92. assert ("blue", "key") not in env.grid
  93. # Test the env.agent_sees() function
  94. env.reset()
  95. for i in range(0, 500):
  96. action = env.action_space.sample()
  97. obs, reward, done, info = env.step(action)
  98. grid, _ = Grid.decode(obs["image"])
  99. goal_visible = ("green", "goal") in grid
  100. agent_sees_goal = env.agent_sees(*goal_pos)
  101. assert agent_sees_goal == goal_visible
  102. if done:
  103. env.reset()
  104. env.close()
  105. @pytest.mark.parametrize(
  106. "env_spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_env_specs]
  107. )
  108. def old_run_test(env_spec):
  109. # Load the gym environment
  110. env = env_spec.make()
  111. env.max_steps = min(env.max_steps, 200)
  112. env.reset()
  113. env.render()
  114. # Verify that the same seed always produces the same environment
  115. for i in range(0, 5):
  116. seed = 1337 + i
  117. _ = env.reset(seed=seed)
  118. grid1 = env.grid
  119. _ = env.reset(seed=seed)
  120. grid2 = env.grid
  121. assert grid1 == grid2
  122. env.reset()
  123. # Run for a few episodes
  124. num_episodes = 0
  125. while num_episodes < 5:
  126. # Pick a random action
  127. action = env.action_space.sample()
  128. obs, reward, done, info = env.step(action)
  129. # Validate the agent position
  130. assert env.agent_pos[0] < env.width
  131. assert env.agent_pos[1] < env.height
  132. # Test observation encode/decode roundtrip
  133. img = obs["image"]
  134. grid, vis_mask = Grid.decode(img)
  135. img2 = grid.encode(vis_mask=vis_mask)
  136. assert np.array_equal(img, img2)
  137. # Test the env to string function
  138. str(env)
  139. # Check that the reward is within the specified range
  140. assert reward >= env.reward_range[0], reward
  141. assert reward <= env.reward_range[1], reward
  142. if done:
  143. num_episodes += 1
  144. env.reset()
  145. env.render()
  146. # Test the close method
  147. env.close()
  148. @pytest.mark.parametrize("env_id", ["MiniGrid-Empty-8x8-v0"])
  149. def test_interactive_mode(env_id):
  150. env = gym.make(env_id)
  151. env.reset()
  152. for i in range(0, 100):
  153. print(f"step {i}")
  154. # Pick a random action
  155. action = env.action_space.sample()
  156. obs, reward, done, info = env.step(action)
  157. # Test the close method
  158. env.close()
  159. def test_mission_space():
  160. # Test placeholders
  161. mission_space = MissionSpace(
  162. mission_func=lambda color, obj_type: f"Get the {color} {obj_type}.",
  163. ordered_placeholders=[["green", "red"], ["ball", "key"]],
  164. )
  165. assert mission_space.contains("Get the green ball.")
  166. assert mission_space.contains("Get the red key.")
  167. assert not mission_space.contains("Get the purple box.")
  168. # Test passing inverted placeholders
  169. assert not mission_space.contains("Get the key red.")
  170. # Test passing extra repeated placeholders
  171. assert not mission_space.contains("Get the key red key.")
  172. # Test contained placeholders like "get the" and "go get the". "get the" string is contained in both placeholders.
  173. mission_space = MissionSpace(
  174. mission_func=lambda get_syntax, obj_type: f"{get_syntax} {obj_type}.",
  175. ordered_placeholders=[
  176. ["go get the", "get the", "go fetch the", "fetch the"],
  177. ["ball", "key"],
  178. ],
  179. )
  180. assert mission_space.contains("get the ball.")
  181. assert mission_space.contains("go get the key.")
  182. assert mission_space.contains("go fetch the ball.")
  183. # Test repeated placeholders
  184. mission_space = MissionSpace(
  185. mission_func=lambda get_syntax, color_1, obj_type_1, color_2, obj_type_2: f"{get_syntax} {color_1} {obj_type_1} and the {color_2} {obj_type_2}.",
  186. ordered_placeholders=[
  187. ["go get the", "get the", "go fetch the", "fetch the"],
  188. ["green", "red"],
  189. ["ball", "key"],
  190. ["green", "red"],
  191. ["ball", "key"],
  192. ],
  193. )
  194. assert mission_space.contains("get the green key and the green key.")
  195. assert mission_space.contains("go fetch the red ball and the green key.")