您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
159 行
5.6 KiB
159 行
5.6 KiB
using System;
|
|
using System.Collections;
|
|
using NUnit.Framework;
|
|
using UnityEngine;
|
|
using UnityEngine.Perception.Randomization.Randomizers.SampleRandomizers;
|
|
using UnityEngine.Perception.Randomization.Samplers;
|
|
using UnityEngine.Perception.GroundTruth;
|
|
using UnityEngine.Perception.Randomization.Scenarios;
|
|
using UnityEngine.TestTools;
|
|
using Object = UnityEngine.Object;
|
|
|
|
namespace RandomizationTests.ScenarioTests
|
|
{
|
|
[TestFixture]
|
|
public class ScenarioTests
|
|
{
|
|
GameObject m_TestObject;
|
|
TestFixedLengthScenario m_Scenario;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
m_TestObject = new GameObject();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
Object.DestroyImmediate(m_TestObject);
|
|
}
|
|
|
|
// TODO: update this function once the perception camera doesn't skip the first frame
|
|
IEnumerator CreateNewScenario(int totalIterations, int framesPerIteration)
|
|
{
|
|
m_Scenario = m_TestObject.AddComponent<TestFixedLengthScenario>();
|
|
m_Scenario.constants.totalIterations = totalIterations;
|
|
m_Scenario.constants.framesPerIteration = framesPerIteration;
|
|
yield return null; // Skip first frame
|
|
yield return null; // Skip first Update() frame
|
|
}
|
|
|
|
[Test]
|
|
public void ScenarioConfigurationSerializesProperly()
|
|
{
|
|
m_TestObject = new GameObject();
|
|
m_Scenario = m_TestObject.AddComponent<TestFixedLengthScenario>();
|
|
m_Scenario.AddRandomizer(new RotationRandomizer());
|
|
|
|
string RemoveWhitespace(string str) =>
|
|
string.Join("", str.Split(default(string[]), StringSplitOptions.RemoveEmptyEntries));
|
|
|
|
var expectedConfigAsset = (TextAsset)Resources.Load("SampleScenarioConfiguration");
|
|
var expectedText = RemoveWhitespace(expectedConfigAsset.text);
|
|
var scenarioJson = RemoveWhitespace(m_Scenario.SerializeToJson());
|
|
Assert.AreEqual(expectedText, scenarioJson);
|
|
}
|
|
|
|
[Test]
|
|
public void ScenarioConfigurationOverwrittenDuringDeserialization()
|
|
{
|
|
m_TestObject = new GameObject();
|
|
m_Scenario = m_TestObject.AddComponent<TestFixedLengthScenario>();
|
|
|
|
var constants = new FixedLengthScenario.Constants
|
|
{
|
|
framesPerIteration = 2,
|
|
totalIterations = 2
|
|
};
|
|
|
|
var changedConstants = new FixedLengthScenario.Constants
|
|
{
|
|
framesPerIteration = 0,
|
|
totalIterations = 0
|
|
};
|
|
|
|
// Serialize some values
|
|
m_Scenario.constants = constants;
|
|
var serializedConfig = m_Scenario.SerializeToJson();
|
|
|
|
// Change the values
|
|
m_Scenario.constants = changedConstants;
|
|
m_Scenario.DeserializeFromJson(serializedConfig);
|
|
|
|
// Check if the values reverted correctly
|
|
Assert.AreEqual(m_Scenario.constants.framesPerIteration, constants.framesPerIteration);
|
|
Assert.AreEqual(m_Scenario.constants.totalIterations, constants.totalIterations);
|
|
}
|
|
|
|
[UnityTest]
|
|
public IEnumerator IterationsCanLastMultipleFrames()
|
|
{
|
|
const int frameCount = 5;
|
|
yield return CreateNewScenario(1, frameCount);
|
|
for (var i = 0; i < frameCount; i++)
|
|
{
|
|
Assert.AreEqual(0, m_Scenario.currentIteration);
|
|
yield return null;
|
|
}
|
|
Assert.AreEqual(1, m_Scenario.currentIteration);
|
|
}
|
|
|
|
[UnityTest]
|
|
public IEnumerator FinishesWhenIsScenarioCompleteIsTrue()
|
|
{
|
|
const int iterationCount = 5;
|
|
yield return CreateNewScenario(iterationCount, 1);
|
|
for (var i = 0; i < iterationCount; i++)
|
|
{
|
|
Assert.True(m_Scenario.state == ScenarioBase.State.Playing);
|
|
yield return null;
|
|
}
|
|
Assert.True(m_Scenario.state == ScenarioBase.State.Idle);
|
|
}
|
|
|
|
[UnityTest]
|
|
public IEnumerator StartNewDatasetSequenceEveryIteration()
|
|
{
|
|
var perceptionCamera = SetupPerceptionCamera();
|
|
|
|
yield return CreateNewScenario(2, 2);
|
|
Assert.AreEqual(DatasetCapture.SimulationState.SequenceTime, 0);
|
|
|
|
// Second frame, first iteration
|
|
yield return null;
|
|
Assert.AreEqual(DatasetCapture.SimulationState.SequenceTime, perceptionCamera.simulationDeltaTime);
|
|
|
|
// Third frame, second iteration, SequenceTime has been reset
|
|
yield return null;
|
|
Assert.AreEqual(DatasetCapture.SimulationState.SequenceTime, 0);
|
|
}
|
|
|
|
[UnityTest]
|
|
public IEnumerator GeneratedRandomSeedsChangeWithScenarioIteration()
|
|
{
|
|
yield return CreateNewScenario(3, 1);
|
|
var seeds = new uint[3];
|
|
for (var i = 0; i < 3; i++)
|
|
seeds[i] = SamplerState.NextRandomState();
|
|
|
|
yield return null;
|
|
for (var i = 0; i < 3; i++)
|
|
Assert.AreNotEqual(seeds[i], SamplerState.NextRandomState());
|
|
}
|
|
|
|
PerceptionCamera SetupPerceptionCamera()
|
|
{
|
|
m_TestObject.SetActive(false);
|
|
var camera = m_TestObject.AddComponent<Camera>();
|
|
camera.orthographic = true;
|
|
camera.orthographicSize = 1;
|
|
|
|
var perceptionCamera = m_TestObject.AddComponent<PerceptionCamera>();
|
|
perceptionCamera.captureRgbImages = false;
|
|
|
|
m_TestObject.SetActive(true);
|
|
return perceptionCamera;
|
|
}
|
|
}
|
|
}
|