< Summary

Class:ConfigTest
Assembly:bamlab.test.playmode
File(s):/github/workspace/Assets/Tests/PlayMode/ConfigTest.cs
Covered lines:41
Uncovered lines:1
Coverable lines:42
Total lines:73
Line coverage:97.6% (41 of 42)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:2
Method coverage:100% (2 of 2)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
LoadScene()0%110100%
TestAllConfigFilesLoad()0%13.0313094.34%

File(s)

/github/workspace/Assets/Tests/PlayMode/ConfigTest.cs

#LineLine coverage
 1using NUnit.Framework;
 2using UnityEngine;
 3using UnityEngine.TestTools;
 4using System.Collections;
 5using UnityEngine.SceneManagement;
 6using System.IO;
 7using System.Linq;
 8using System.Collections.Generic;
 9public class ConfigTest : TestBase {
 10  [OneTimeSetUp]
 111  public void LoadScene() {
 112    SceneManager.LoadScene("Scenes/MainScene");
 113  }
 14
 15  [UnityTest]
 116  public IEnumerator TestAllConfigFilesLoad() {
 117    string configPath = Path.Combine(Application.streamingAssetsPath, "Configs");
 118    string[] jsonFiles = Directory.GetFiles(configPath, "*.json");
 19
 120    Assert.IsTrue(jsonFiles.Length > 0, "No JSON files found in the Configs directory");
 21
 122    bool isPaused = false;
 123    double epsilon = 0.0002;
 2924    for (int i = 0; i < jsonFiles.Length; ++i) {
 1325      if (i % 2 == 1) {
 426        SimManager.Instance.PauseSimulation();
 427        isPaused = true;
 428      }
 929      yield return new WaitForSecondsRealtime(0.1f);
 930      SimManager.Instance.LoadNewConfig(jsonFiles[i]);
 931      yield return new WaitForSecondsRealtime(0.1f);
 932      double elapsedTime = SimManager.Instance.GetElapsedSimulationTime();
 1333      if (isPaused) {
 434        List<Agent> agents = SimManager.Instance.GetActiveAgents();
 170435        foreach (Agent agent in agents) {
 56436          if (agent is Interceptor) {
 37            // All interceptors start in INITIALIZED phase
 038            Assert.AreEqual(
 39                Agent.FlightPhase.INITIALIZED, agent.GetFlightPhase(),
 40                "All INTERCEPTOR agents should be in the INITIALIZED flight phase after loading while paused");
 41
 112842          } else if (agent is Threat) {
 43            // All threats start in INITIALIZED phase
 56444            Assert.AreEqual(
 45                Agent.FlightPhase.INITIALIZED, agent.GetFlightPhase(),
 46                "All THREAT agents should be in the INITIALIZED flight phase after loading while paused");
 56447          }
 56448        }
 449        Assert.LessOrEqual(Mathf.Abs(Time.fixedDeltaTime), epsilon,
 50                           "Fixed delta time should be approximately 0 after loading while paused");
 451        Assert.LessOrEqual(Mathf.Abs(Time.timeScale), epsilon,
 52                           "Time scale should be approximately 0 after loading while paused");
 453        Assert.IsFalse(elapsedTime > 0 + epsilon,
 54                       "Simulation time should not have advanced after loading while paused");
 955      } else {
 556        Assert.IsTrue(elapsedTime > 0 + epsilon,
 57                      "Simulation time should have advanced after loading while not paused");
 558        Assert.LessOrEqual(
 59            Mathf.Abs(Time.fixedDeltaTime -
 60                      (1.0f / SimManager.Instance.simulatorConfig.physicsUpdateRate)),
 61            epsilon, "Physics update rate should be 1 / simulatorConfig.physicsUpdateRate");
 562      }
 63
 1364      if (isPaused) {
 465        SimManager.Instance.ResumeSimulation();
 466        isPaused = false;
 467        yield return new WaitForSecondsRealtime(0.1f);
 468        Assert.IsTrue(SimManager.Instance.GetElapsedSimulationTime() > 0 + epsilon,
 69                      "Simulation time should have advanced after resuming");
 470      }
 971    }
 172  }
 73}