File size: 1,482 Bytes
079c32c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import pytest
import numpy as np
import pprint

try:
    from dizoo.gfootball.envs.gfootball_env import GfootballEnv
except ModuleNotFoundError:
    print("[WARNING] no gfootball env, if you want to use gfootball, please install it, otherwise, ignore it.")


@pytest.mark.envtest
class TestGfootballEnv:

    def get_random_action(self, min_value, max_value):
        action = np.random.randint(min_value, max_value + 1, (1, ))
        return action

    def test_naive(self):
        env = GfootballEnv({})
        print(env.info())
        reset_obs = env.reset()
        print('after reset:', reset_obs)
        pp = pprint.PrettyPrinter(indent=2)
        for i in range(3000):
            action = self.get_random_action(env.info().act_space.value['min'], env.info().act_space.value['max'])
            timestep = env.step(action)
            reward = timestep.reward
            print('reward:', reward)
            # assert reward.shape == 1
            obs = timestep.obs
            print("raw_obs = ", obs['raw_obs'])
            obs = obs['processed_obs']
            assert obs['ball_owned_team'].shape[0] == 3
            assert obs['ball_owned_player'].shape[0] == 12
            assert obs['active_player'].shape[0] == 11
            assert obs['score'].shape[0] == 22
            assert obs['steps_left'].shape[0] == 30
            print('observation: ')
            pp.pprint(obs)
            print('--step {} with action {}'.format(i, action))
        print('end')