您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
63 行
2.2 KiB
63 行
2.2 KiB
import os
|
|
import numpy as np
|
|
import pytest
|
|
import tempfile
|
|
|
|
from mlagents.trainers.demo_loader import (
|
|
load_demonstration,
|
|
demo_to_buffer,
|
|
get_demo_files,
|
|
)
|
|
|
|
|
|
def test_load_demo():
|
|
path_prefix = os.path.dirname(os.path.abspath(__file__))
|
|
group_spec, pair_infos, total_expected = load_demonstration(
|
|
path_prefix + "/test.demo"
|
|
)
|
|
assert np.sum(group_spec.observation_shapes[0]) == 8
|
|
assert len(pair_infos) == total_expected
|
|
|
|
_, demo_buffer = demo_to_buffer(path_prefix + "/test.demo", 1)
|
|
assert len(demo_buffer["actions"]) == total_expected - 1
|
|
|
|
|
|
def test_load_demo_dir():
|
|
path_prefix = os.path.dirname(os.path.abspath(__file__))
|
|
group_spec, pair_infos, total_expected = load_demonstration(
|
|
path_prefix + "/test_demo_dir"
|
|
)
|
|
assert np.sum(group_spec.observation_shapes[0]) == 8
|
|
assert len(pair_infos) == total_expected
|
|
|
|
_, demo_buffer = demo_to_buffer(path_prefix + "/test_demo_dir", 1)
|
|
assert len(demo_buffer["actions"]) == total_expected - 1
|
|
|
|
|
|
def test_edge_cases():
|
|
path_prefix = os.path.dirname(os.path.abspath(__file__))
|
|
# nonexistent file and directory
|
|
with pytest.raises(FileNotFoundError):
|
|
get_demo_files(os.path.join(path_prefix, "nonexistent_file.demo"))
|
|
with pytest.raises(FileNotFoundError):
|
|
get_demo_files(os.path.join(path_prefix, "nonexistent_directory"))
|
|
with tempfile.TemporaryDirectory() as tmpdirname:
|
|
# empty directory
|
|
with pytest.raises(ValueError):
|
|
get_demo_files(tmpdirname)
|
|
# invalid file
|
|
invalid_fname = os.path.join(tmpdirname, "mydemo.notademo")
|
|
with open(invalid_fname, "w") as f:
|
|
f.write("I'm not a demo")
|
|
with pytest.raises(ValueError):
|
|
get_demo_files(invalid_fname)
|
|
# invalid directory
|
|
with pytest.raises(ValueError):
|
|
get_demo_files(tmpdirname)
|
|
# valid file
|
|
valid_fname = os.path.join(tmpdirname, "mydemo.demo")
|
|
with open(valid_fname, "w") as f:
|
|
f.write("I'm a demo file")
|
|
assert get_demo_files(valid_fname) == [valid_fname]
|
|
# valid directory
|
|
assert get_demo_files(tmpdirname) == [valid_fname]
|