< Summary

Class:MaxSpeedAssignmentTest
Assembly:bamlab.test.editmode
File(s):/github/workspace/Assets/Tests/EditMode/MaxSpeedAssignmentTest.cs
Covered lines:107
Uncovered lines:0
Coverable lines:107
Total lines:181
Line coverage:100% (107 of 107)
Covered branches:0
Total branches:0
Covered methods:5
Total methods:5
Method coverage:100% (5 of 5)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
CreateStaticAgentConfig()0%110100%
AssignNoInterceptors()0%110100%
AssignNoThreats()0%110100%
AssignShouldAssignAllInterceptorsAndThreats()0%330100%
AssignShouldHandleMoreInterceptorsThanThreats()0%330100%

File(s)

/github/workspace/Assets/Tests/EditMode/MaxSpeedAssignmentTest.cs

#LineLine coverage
 1using NUnit.Framework;
 2using System.Collections.Generic;
 3using System.Linq;
 4using UnityEngine;
 5using UnityEngine.TestTools;
 6
 7public class MaxSpeedAssignmentTest {
 68  public static StaticAgentConfig CreateStaticAgentConfig() {
 69    StaticAgentConfig config = new StaticAgentConfig();
 610    config.accelerationConfig = new StaticAgentConfig.AccelerationConfig();
 611    config.bodyConfig = new StaticAgentConfig.BodyConfig();
 612    config.liftDragConfig = new StaticAgentConfig.LiftDragConfig();
 613    return config;
 614  }
 15
 16  [Test]
 117  public void AssignNoInterceptors() {
 18    // Define the assignment.
 119    IAssignment assignment = new MaxSpeedAssignment();
 20
 21    // Create interceptors.
 122    List<Interceptor> interceptors = new List<Interceptor>();
 23
 24    // Create threats.
 125    List<Threat> threats =
 26        new List<Threat> { new GameObject("Threat").AddComponent<RotaryWingThreat>() };
 27
 28    // Assign the interceptors to the threats.
 129    LogAssert.Expect(LogType.Warning, "No assignable interceptors found.");
 130    IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats);
 131    Assert.AreEqual(0, assignments.Count(), "There should be no assignments.");
 132  }
 33
 34  [Test]
 135  public void AssignNoThreats() {
 36    // Define the assignment.
 137    IAssignment assignment = new MaxSpeedAssignment();
 38
 39    // Create interceptors.
 140    List<Interceptor> interceptors =
 41        new List<Interceptor> { new GameObject("Interceptor").AddComponent<MissileInterceptor>() };
 42
 43    // Create threats.
 144    List<Threat> threats = new List<Threat>();
 45
 46    // Assign the interceptors to the threats.
 147    LogAssert.Expect(LogType.Warning, "No active threats found.");
 148    IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats);
 149    Assert.AreEqual(0, assignments.Count(), "There should be no assignments.");
 150  }
 51
 52  [Test]
 153  public void AssignShouldAssignAllInterceptorsAndThreats() {
 54    // Define the assignment.
 155    IAssignment assignment = new MaxSpeedAssignment();
 56
 57    // Create the interceptors.
 158    Interceptor interceptor1 = new GameObject("Interceptor 1").AddComponent<MissileInterceptor>();
 159    interceptor1.staticAgentConfig = CreateStaticAgentConfig();
 160    Interceptor interceptor2 = new GameObject("Interceptor 2").AddComponent<MissileInterceptor>();
 161    interceptor2.staticAgentConfig = CreateStaticAgentConfig();
 162    Interceptor interceptor3 = new GameObject("Interceptor 3").AddComponent<MissileInterceptor>();
 163    interceptor3.staticAgentConfig = CreateStaticAgentConfig();
 64
 65    // Add rigid body components to interceptors to set their velocities.
 166    Rigidbody interceptorRb1 = interceptor1.gameObject.AddComponent<Rigidbody>();
 167    Rigidbody interceptorRb2 = interceptor2.gameObject.AddComponent<Rigidbody>();
 168    Rigidbody interceptorRb3 = interceptor3.gameObject.AddComponent<Rigidbody>();
 69
 70    // Set the interceptor positions and velocities.
 171    interceptor1.transform.position = Vector3.zero;
 172    interceptor2.transform.position = Vector3.zero;
 173    interceptor3.transform.position = new Vector3(0, 100, 0);
 174    interceptorRb1.linearVelocity = new Vector3(0, 0, 5);
 175    interceptorRb2.linearVelocity = new Vector3(0, 10, 0);
 176    interceptorRb3.linearVelocity = new Vector3(0, 0, 5);
 77
 178    List<Interceptor> interceptors =
 79        new List<Interceptor> { interceptor1, interceptor2, interceptor3 };
 80
 81    // Create the threats.
 182    Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>();
 183    Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>();
 184    Threat threat3 = new GameObject("Threat 3").AddComponent<RotaryWingThreat>();
 85
 86    // Set threat positions.
 187    threat1.transform.position = new Vector3(0, -1, 0);
 188    threat2.transform.position = new Vector3(0, 1, 0);
 189    threat3.transform.position = new Vector3(0, 105, 0);
 90
 191    List<Threat> threats = new List<Threat> { threat1, threat2, threat3 };
 92
 93    // Assign the interceptors to the threats.
 194    IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats);
 195    Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned.");
 96
 197    HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>();
 198    HashSet<Threat> assignedThreats = new HashSet<Threat>();
 199    Dictionary<Interceptor, Threat> assignmentMap = new Dictionary<Interceptor, Threat>();
 100
 12101    foreach (var assignmentItem in assignments) {
 3102      Assert.IsNotNull(assignmentItem.Interceptor, "Interceptor should not be null.");
 3103      Assert.IsNotNull(assignmentItem.Threat, "Threat should not be null.");
 3104      assignedInterceptors.Add(assignmentItem.Interceptor);
 3105      assignedThreats.Add(assignmentItem.Threat);
 3106      assignmentMap[assignmentItem.Interceptor] = assignmentItem.Threat;
 3107    }
 108
 1109    Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be unique.");
 1110    Assert.AreEqual(3, assignedThreats.Count, "All threats should be assigned.");
 111
 112    // Verify that threats are assigned to maximize the intercept speed.
 1113    Assert.AreEqual(assignmentMap[interceptor1], threat1);
 1114    Assert.AreEqual(assignmentMap[interceptor2], threat2);
 1115    Assert.AreEqual(assignmentMap[interceptor3], threat3);
 1116  }
 117
 118  [Test]
 1119  public void AssignShouldHandleMoreInterceptorsThanThreats() {
 120    // Define the assignment.
 1121    IAssignment assignment = new MaxSpeedAssignment();
 122
 123    // Create the interceptors.
 1124    Interceptor interceptor1 = new GameObject("Interceptor 1").AddComponent<MissileInterceptor>();
 1125    interceptor1.staticAgentConfig = CreateStaticAgentConfig();
 1126    Interceptor interceptor2 = new GameObject("Interceptor 2").AddComponent<MissileInterceptor>();
 1127    interceptor2.staticAgentConfig = CreateStaticAgentConfig();
 1128    Interceptor interceptor3 = new GameObject("Interceptor 3").AddComponent<MissileInterceptor>();
 1129    interceptor3.staticAgentConfig = CreateStaticAgentConfig();
 130
 131    // Add rigid body components to interceptors to set their velocities.
 1132    Rigidbody interceptorRb1 = interceptor1.gameObject.AddComponent<Rigidbody>();
 1133    Rigidbody interceptorRb2 = interceptor2.gameObject.AddComponent<Rigidbody>();
 1134    Rigidbody interceptorRb3 = interceptor3.gameObject.AddComponent<Rigidbody>();
 135
 136    // Set the interceptor positions and velocities.
 1137    interceptor1.transform.position = Vector3.zero;
 1138    interceptor2.transform.position = Vector3.zero;
 1139    interceptor3.transform.position = new Vector3(0, 100, 0);
 1140    interceptorRb1.linearVelocity = new Vector3(0, 0, 5);
 1141    interceptorRb2.linearVelocity = new Vector3(0, 10, 0);
 1142    interceptorRb3.linearVelocity = new Vector3(0, 0, 5);
 143
 1144    List<Interceptor> interceptors =
 145        new List<Interceptor> { interceptor1, interceptor2, interceptor3 };
 146
 147    // Create the threats.
 1148    Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>();
 1149    Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>();
 150
 151    // Set threat positions.
 1152    threat1.transform.position = new Vector3(0, -1, 0);
 1153    threat2.transform.position = new Vector3(0, 1, 0);
 154
 1155    List<Threat> threats = new List<Threat> { threat1, threat2 };
 156
 157    // Assign the interceptors to the threats.
 1158    IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats);
 1159    Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned.");
 160
 1161    HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>();
 1162    HashSet<Threat> assignedThreats = new HashSet<Threat>();
 1163    Dictionary<Interceptor, Threat> assignmentMap = new Dictionary<Interceptor, Threat>();
 164
 12165    foreach (var assignmentItem in assignments) {
 3166      Assert.IsNotNull(assignmentItem.Interceptor, "Interceptor should not be null.");
 3167      Assert.IsNotNull(assignmentItem.Threat, "Threat should not be null.");
 3168      assignedInterceptors.Add(assignmentItem.Interceptor);
 3169      assignedThreats.Add(assignmentItem.Threat);
 3170      assignmentMap[assignmentItem.Interceptor] = assignmentItem.Threat;
 3171    }
 172
 1173    Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be assigned.");
 1174    Assert.AreEqual(2, assignedThreats.Count, "Both threats should be assigned.");
 175
 176    // Verify that threats are assigned to maximize the intercept speed.
 1177    Assert.AreEqual(assignmentMap[interceptor1], threat1);
 1178    Assert.AreEqual(assignmentMap[interceptor2], threat2);
 1179    Assert.AreEqual(assignmentMap[interceptor3], threat2);
 1180  }
 181}