< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using NUnit.Framework;
 2using System.Collections.Generic;
 3using System.Linq;
 4using UnityEngine;
 5using UnityEngine.TestTools;
 6
 7public class ThreatAssignmentTests {
 8  [Test]
 19  public void AssignNoInterceptors() {
 10    // Define the threat assignment.
 111    IAssignment threatAssignment = new ThreatAssignment();
 12
 13    // Create interceptors.
 114    List<Interceptor> interceptors = new List<Interceptor>();
 15
 16    // Create threats.
 117    List<Threat> threats =
 18        new List<Threat> { new GameObject("Threat").AddComponent<RotaryWingThreat>() };
 19
 20    // Assign the interceptors to the threats.
 121    LogAssert.Expect(LogType.Warning, "No assignable interceptors found.");
 122    IEnumerable<IAssignment.AssignmentItem> assignments =
 23        threatAssignment.Assign(interceptors, threats);
 124    Assert.AreEqual(0, assignments.Count(), "There should be no assignments.");
 125  }
 26
 27  [Test]
 128  public void AssignNoThreats() {
 29    // Define the threat assignment.
 130    IAssignment threatAssignment = new ThreatAssignment();
 31
 32    // Create interceptors.
 133    List<Interceptor> interceptors =
 34        new List<Interceptor> { new GameObject("Interceptor").AddComponent<MissileInterceptor>() };
 35
 36    // Create threats.
 137    List<Threat> threats = new List<Threat>();
 38
 39    // Assign the interceptors to the threats.
 140    LogAssert.Expect(LogType.Warning, "No active threats found.");
 141    IEnumerable<IAssignment.AssignmentItem> assignments =
 42        threatAssignment.Assign(interceptors, threats);
 143    Assert.AreEqual(0, assignments.Count(), "There should be no assignments.");
 144  }
 45
 46  [Test]
 147  public void AssignShouldAssignAllInterceptorsAndThreats() {
 48    // Define the threat assignment.
 149    IAssignment threatAssignment = new ThreatAssignment();
 50
 51    // Create interceptors.
 152    List<Interceptor> interceptors = new List<Interceptor> {
 53      new GameObject("Interceptor 1").AddComponent<MissileInterceptor>(),
 54      new GameObject("Interceptor 2").AddComponent<MissileInterceptor>(),
 55      new GameObject("Interceptor 3").AddComponent<MissileInterceptor>()
 56    };
 57
 58    // Create threats.
 159    Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>();
 160    Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>();
 161    Threat threat3 = new GameObject("Threat 3").AddComponent<RotaryWingThreat>();
 62
 63    // Add rigid body components to threats to set velocities.
 164    Rigidbody rb1 = threat1.gameObject.AddComponent<Rigidbody>();
 165    Rigidbody rb2 = threat2.gameObject.AddComponent<Rigidbody>();
 166    Rigidbody rb3 = threat3.gameObject.AddComponent<Rigidbody>();
 67
 68    // Set positions and velocities.
 169    threat1.transform.position = Vector3.forward * -20f;
 170    threat2.transform.position = Vector3.forward * -20f;
 171    threat3.transform.position = Vector3.forward * -20f;
 72
 173    rb1.linearVelocity = Vector3.forward * 5f;
 174    rb2.linearVelocity = Vector3.forward * 10f;
 175    rb3.linearVelocity = Vector3.forward * 15f;
 76
 77    // Create threats.
 178    List<Threat> threats = new List<Threat> { threat1, threat2, threat3 };
 79
 80    // Assign the interceptors to the threats.
 181    IEnumerable<IAssignment.AssignmentItem> assignments =
 82        threatAssignment.Assign(interceptors, threats);
 83
 184    Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned.");
 85
 186    HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>();
 187    HashSet<Threat> assignedThreats = new HashSet<Threat>();
 88
 1289    foreach (var assignment in assignments) {
 390      Assert.IsNotNull(assignment.Interceptor, "Interceptor should not be null.");
 391      Assert.IsNotNull(assignment.Threat, "Threat should not be null.");
 392      assignedInterceptors.Add(assignment.Interceptor);
 393      assignedThreats.Add(assignment.Threat);
 394    }
 95
 196    Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be unique.");
 197    Assert.AreEqual(3, assignedThreats.Count, "All threats should be assigned.");
 98
 99    // Verify that threats are assigned in order of their threat level (based on velocity and
 100    // distance).
 1101    var orderedAssignments =
 102        assignments
 3103            .OrderByDescending(a => a.Threat.GetVelocity().magnitude /
 104                                    Vector3.Distance(a.Threat.transform.position, Vector3.zero))
 105            .ToList();
 1106    Assert.AreEqual(threat3, orderedAssignments[0].Threat,
 107                    "Highest threat should be assigned first.");
 1108    Assert.AreEqual(threat2, orderedAssignments[1].Threat,
 109                    "Second highest threat should be assigned second.");
 1110    Assert.AreEqual(threat1, orderedAssignments[2].Threat,
 111                    "Lowest threat should be assigned last.");
 1112  }
 113
 114  [Test]
 1115  public void AssignShouldHandleMoreInterceptorsThanThreats() {
 116    // Define the threat assignment.
 1117    IAssignment threatAssignment = new ThreatAssignment();
 118
 119    // Create interceptors.
 1120    List<Interceptor> interceptors = new List<Interceptor> {
 121      new GameObject("Interceptor 1").AddComponent<MissileInterceptor>(),
 122      new GameObject("Interceptor 2").AddComponent<MissileInterceptor>(),
 123      new GameObject("Interceptor 3").AddComponent<MissileInterceptor>()
 124    };
 125
 126    // Create threats.
 1127    Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>();
 1128    Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>();
 129
 130    // Add rigid body components to threats to set velocities.
 1131    Rigidbody rb1 = threat1.gameObject.AddComponent<Rigidbody>();
 1132    Rigidbody rb2 = threat2.gameObject.AddComponent<Rigidbody>();
 133
 134    // Set positions and velocities.
 1135    threat1.transform.position = Vector3.up * 10f;
 1136    threat2.transform.position = Vector3.right * 5f;
 137
 1138    rb1.linearVelocity = Vector3.forward * 10f;
 1139    rb2.linearVelocity = Vector3.forward * 15f;
 140
 141    // Create threats.
 1142    List<Threat> threats = new List<Threat> { threat1, threat2 };
 143
 144    // Assign the interceptors to the threats.
 1145    IEnumerable<IAssignment.AssignmentItem> assignments =
 146        threatAssignment.Assign(interceptors, threats);
 147
 1148    Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned.");
 149
 1150    HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>();
 1151    HashSet<Threat> assignedThreats = new HashSet<Threat>();
 152
 12153    foreach (var assignment in assignments) {
 3154      Assert.IsNotNull(assignment.Interceptor, "Interceptor should not be null.");
 3155      Assert.IsNotNull(assignment.Threat, "Threat should not be null.");
 3156      assignedInterceptors.Add(assignment.Interceptor);
 3157      assignedThreats.Add(assignment.Threat);
 3158    }
 159
 1160    Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be assigned.");
 1161    Assert.AreEqual(2, assignedThreats.Count, "Both threats should be assigned.");
 162
 163    // Verify that threats are assigned in order of their threat level (based on velocity and
 164    // distance).
 1165    var orderedAssignments =
 166        assignments
 3167            .OrderByDescending(a => a.Threat.GetVelocity().magnitude /
 168                                    Vector3.Distance(a.Threat.transform.position, Vector3.zero))
 169            .ToList();
 1170    Assert.AreEqual(threat2, orderedAssignments[0].Threat,
 171                    "Higher threat should be assigned first.");
 1172    Assert.AreEqual(threat2, orderedAssignments[1].Threat,
 173                    "Higher threat should be assigned twice.");
 1174    Assert.AreEqual(threat1, orderedAssignments[2].Threat, "Lower threat should be assigned last.");
 1175  }
 176}