您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
145 行
5.6 KiB
145 行
5.6 KiB
from unittest import mock
|
|
import pytest
|
|
import numpy as np
|
|
|
|
from gym import spaces
|
|
from gym_unity.envs import UnityEnv, UnityGymException
|
|
from mlagents_envs.base_env import AgentGroupSpec, ActionType, BatchedStepResult
|
|
|
|
|
|
@mock.patch("gym_unity.envs.UnityEnvironment")
|
|
def test_gym_wrapper(mock_env):
|
|
mock_brain = create_mock_group_spec()
|
|
mock_braininfo = create_mock_vector_step_result()
|
|
setup_mock_unityenvironment(mock_env, mock_brain, mock_braininfo)
|
|
|
|
env = UnityEnv(" ", use_visual=False, multiagent=False)
|
|
assert isinstance(env, UnityEnv)
|
|
assert isinstance(env.reset(), np.ndarray)
|
|
actions = env.action_space.sample()
|
|
assert actions.shape[0] == 2
|
|
obs, rew, done, info = env.step(actions)
|
|
assert env.observation_space.contains(obs)
|
|
assert isinstance(obs, np.ndarray)
|
|
assert isinstance(rew, float)
|
|
assert isinstance(done, (bool, np.bool_))
|
|
assert isinstance(info, dict)
|
|
|
|
|
|
@mock.patch("gym_unity.envs.UnityEnvironment")
|
|
def test_multi_agent(mock_env):
|
|
mock_brain = create_mock_group_spec()
|
|
mock_braininfo = create_mock_vector_step_result(num_agents=2)
|
|
setup_mock_unityenvironment(mock_env, mock_brain, mock_braininfo)
|
|
|
|
with pytest.raises(UnityGymException):
|
|
UnityEnv(" ", multiagent=False)
|
|
|
|
env = UnityEnv(" ", use_visual=False, multiagent=True)
|
|
assert isinstance(env.reset(), list)
|
|
actions = [env.action_space.sample() for i in range(env.number_agents)]
|
|
obs, rew, done, info = env.step(actions)
|
|
assert isinstance(obs, list)
|
|
assert isinstance(rew, list)
|
|
assert isinstance(done, list)
|
|
assert isinstance(info, dict)
|
|
|
|
|
|
@mock.patch("gym_unity.envs.UnityEnvironment")
|
|
def test_branched_flatten(mock_env):
|
|
mock_brain = create_mock_group_spec(
|
|
vector_action_space_type="discrete", vector_action_space_size=[2, 2, 3]
|
|
)
|
|
mock_braininfo = create_mock_vector_step_result(num_agents=1)
|
|
setup_mock_unityenvironment(mock_env, mock_brain, mock_braininfo)
|
|
|
|
env = UnityEnv(" ", use_visual=False, multiagent=False, flatten_branched=True)
|
|
assert isinstance(env.action_space, spaces.Discrete)
|
|
assert env.action_space.n == 12
|
|
assert env._flattener.lookup_action(0) == [0, 0, 0]
|
|
assert env._flattener.lookup_action(11) == [1, 1, 2]
|
|
|
|
# Check that False produces a MultiDiscrete
|
|
env = UnityEnv(" ", use_visual=False, multiagent=False, flatten_branched=False)
|
|
assert isinstance(env.action_space, spaces.MultiDiscrete)
|
|
|
|
|
|
@pytest.mark.parametrize("use_uint8", [True, False], ids=["float", "uint8"])
|
|
@mock.patch("gym_unity.envs.UnityEnvironment")
|
|
def test_gym_wrapper_visual(mock_env, use_uint8):
|
|
mock_brain = create_mock_group_spec(number_visual_observations=1)
|
|
mock_braininfo = create_mock_vector_step_result(number_visual_observations=1)
|
|
setup_mock_unityenvironment(mock_env, mock_brain, mock_braininfo)
|
|
|
|
env = UnityEnv(" ", use_visual=True, multiagent=False, uint8_visual=use_uint8)
|
|
assert isinstance(env, UnityEnv)
|
|
assert isinstance(env.reset(), np.ndarray)
|
|
actions = env.action_space.sample()
|
|
assert actions.shape[0] == 2
|
|
obs, rew, done, info = env.step(actions)
|
|
assert env.observation_space.contains(obs)
|
|
assert isinstance(obs, np.ndarray)
|
|
assert isinstance(rew, float)
|
|
assert isinstance(done, (bool, np.bool_))
|
|
assert isinstance(info, dict)
|
|
|
|
|
|
# Helper methods
|
|
|
|
|
|
def create_mock_group_spec(
|
|
number_visual_observations=0,
|
|
vector_action_space_type="continuous",
|
|
vector_observation_space_size=3,
|
|
vector_action_space_size=None,
|
|
):
|
|
"""
|
|
Creates a mock BrainParameters object with parameters.
|
|
"""
|
|
# Avoid using mutable object as default param
|
|
act_type = ActionType.DISCRETE
|
|
if vector_action_space_type == "continuous":
|
|
act_type = ActionType.CONTINUOUS
|
|
if vector_action_space_size is None:
|
|
vector_action_space_size = 2
|
|
else:
|
|
vector_action_space_size = vector_action_space_size[0]
|
|
else:
|
|
if vector_action_space_size is None:
|
|
vector_action_space_size = (2,)
|
|
else:
|
|
vector_action_space_size = tuple(vector_action_space_size)
|
|
obs_shapes = [(vector_observation_space_size,)]
|
|
for _ in range(number_visual_observations):
|
|
obs_shapes += [(8, 8, 3)]
|
|
return AgentGroupSpec(obs_shapes, act_type, vector_action_space_size)
|
|
|
|
|
|
def create_mock_vector_step_result(num_agents=1, number_visual_observations=0):
|
|
"""
|
|
Creates a mock BrainInfo with vector observations. Imitates constant
|
|
vector observations, rewards, dones, and agents.
|
|
|
|
:int num_agents: Number of "agents" to imitate in your BrainInfo values.
|
|
"""
|
|
obs = [np.array([num_agents * [1, 2, 3]])]
|
|
if number_visual_observations:
|
|
obs += [np.zeros(shape=(num_agents, 8, 8, 3), dtype=np.float32)]
|
|
rewards = np.array(num_agents * [1.0])
|
|
done = np.array(num_agents * [False])
|
|
agents = np.array(range(0, num_agents))
|
|
return BatchedStepResult(obs, rewards, done, done, agents, None)
|
|
|
|
|
|
def setup_mock_unityenvironment(mock_env, mock_spec, mock_result):
|
|
"""
|
|
Takes a mock UnityEnvironment and adds the appropriate properties, defined by the mock
|
|
BrainParameters and BrainInfo.
|
|
|
|
:Mock mock_env: A mock UnityEnvironment, usually empty.
|
|
:Mock mock_spec: An AgentGroupSpec object that specifies the params of this environment.
|
|
:Mock mock_result: A BatchedStepResult object that will be returned at each step and reset.
|
|
"""
|
|
mock_env.return_value.get_agent_groups.return_value = ["MockBrain"]
|
|
mock_env.return_value.get_agent_group_spec.return_value = mock_spec
|
|
mock_env.return_value.get_step_result.return_value = mock_result
|