| | 1 | | using NUnit.Framework; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using UnityEngine; |
| | 5 | | using UnityEngine.TestTools; |
| | 6 | |
|
| | 7 | | public class MaxSpeedAssignmentTest { |
| 6 | 8 | | public static StaticAgentConfig CreateStaticAgentConfig() { |
| 6 | 9 | | StaticAgentConfig config = new StaticAgentConfig(); |
| 6 | 10 | | config.accelerationConfig = new StaticAgentConfig.AccelerationConfig(); |
| 6 | 11 | | config.bodyConfig = new StaticAgentConfig.BodyConfig(); |
| 6 | 12 | | config.liftDragConfig = new StaticAgentConfig.LiftDragConfig(); |
| 6 | 13 | | return config; |
| 6 | 14 | | } |
| | 15 | |
|
| | 16 | | [Test] |
| 1 | 17 | | public void AssignNoInterceptors() { |
| | 18 | | // Define the assignment. |
| 1 | 19 | | IAssignment assignment = new MaxSpeedAssignment(); |
| | 20 | |
|
| | 21 | | // Create interceptors. |
| 1 | 22 | | List<Interceptor> interceptors = new List<Interceptor>(); |
| | 23 | |
|
| | 24 | | // Create threats. |
| 1 | 25 | | List<Threat> threats = |
| | 26 | | new List<Threat> { new GameObject("Threat").AddComponent<RotaryWingThreat>() }; |
| | 27 | |
|
| | 28 | | // Assign the interceptors to the threats. |
| 1 | 29 | | LogAssert.Expect(LogType.Warning, "No assignable interceptors found."); |
| 1 | 30 | | IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats); |
| 1 | 31 | | Assert.AreEqual(0, assignments.Count(), "There should be no assignments."); |
| 1 | 32 | | } |
| | 33 | |
|
| | 34 | | [Test] |
| 1 | 35 | | public void AssignNoThreats() { |
| | 36 | | // Define the assignment. |
| 1 | 37 | | IAssignment assignment = new MaxSpeedAssignment(); |
| | 38 | |
|
| | 39 | | // Create interceptors. |
| 1 | 40 | | List<Interceptor> interceptors = |
| | 41 | | new List<Interceptor> { new GameObject("Interceptor").AddComponent<MissileInterceptor>() }; |
| | 42 | |
|
| | 43 | | // Create threats. |
| 1 | 44 | | List<Threat> threats = new List<Threat>(); |
| | 45 | |
|
| | 46 | | // Assign the interceptors to the threats. |
| 1 | 47 | | LogAssert.Expect(LogType.Warning, "No active threats found."); |
| 1 | 48 | | IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats); |
| 1 | 49 | | Assert.AreEqual(0, assignments.Count(), "There should be no assignments."); |
| 1 | 50 | | } |
| | 51 | |
|
| | 52 | | [Test] |
| 1 | 53 | | public void AssignShouldAssignAllInterceptorsAndThreats() { |
| | 54 | | // Define the assignment. |
| 1 | 55 | | IAssignment assignment = new MaxSpeedAssignment(); |
| | 56 | |
|
| | 57 | | // Create the interceptors. |
| 1 | 58 | | Interceptor interceptor1 = new GameObject("Interceptor 1").AddComponent<MissileInterceptor>(); |
| 1 | 59 | | interceptor1.staticAgentConfig = CreateStaticAgentConfig(); |
| 1 | 60 | | Interceptor interceptor2 = new GameObject("Interceptor 2").AddComponent<MissileInterceptor>(); |
| 1 | 61 | | interceptor2.staticAgentConfig = CreateStaticAgentConfig(); |
| 1 | 62 | | Interceptor interceptor3 = new GameObject("Interceptor 3").AddComponent<MissileInterceptor>(); |
| 1 | 63 | | interceptor3.staticAgentConfig = CreateStaticAgentConfig(); |
| | 64 | |
|
| | 65 | | // Add rigid body components to interceptors to set their velocities. |
| 1 | 66 | | Rigidbody interceptorRb1 = interceptor1.gameObject.AddComponent<Rigidbody>(); |
| 1 | 67 | | Rigidbody interceptorRb2 = interceptor2.gameObject.AddComponent<Rigidbody>(); |
| 1 | 68 | | Rigidbody interceptorRb3 = interceptor3.gameObject.AddComponent<Rigidbody>(); |
| | 69 | |
|
| | 70 | | // Set the interceptor positions and velocities. |
| 1 | 71 | | interceptor1.transform.position = Vector3.zero; |
| 1 | 72 | | interceptor2.transform.position = Vector3.zero; |
| 1 | 73 | | interceptor3.transform.position = new Vector3(0, 100, 0); |
| 1 | 74 | | interceptorRb1.linearVelocity = new Vector3(0, 0, 5); |
| 1 | 75 | | interceptorRb2.linearVelocity = new Vector3(0, 10, 0); |
| 1 | 76 | | interceptorRb3.linearVelocity = new Vector3(0, 0, 5); |
| | 77 | |
|
| 1 | 78 | | List<Interceptor> interceptors = |
| | 79 | | new List<Interceptor> { interceptor1, interceptor2, interceptor3 }; |
| | 80 | |
|
| | 81 | | // Create the threats. |
| 1 | 82 | | Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>(); |
| 1 | 83 | | Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>(); |
| 1 | 84 | | Threat threat3 = new GameObject("Threat 3").AddComponent<RotaryWingThreat>(); |
| | 85 | |
|
| | 86 | | // Set threat positions. |
| 1 | 87 | | threat1.transform.position = new Vector3(0, -1, 0); |
| 1 | 88 | | threat2.transform.position = new Vector3(0, 1, 0); |
| 1 | 89 | | threat3.transform.position = new Vector3(0, 105, 0); |
| | 90 | |
|
| 1 | 91 | | List<Threat> threats = new List<Threat> { threat1, threat2, threat3 }; |
| | 92 | |
|
| | 93 | | // Assign the interceptors to the threats. |
| 1 | 94 | | IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats); |
| 1 | 95 | | Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned."); |
| | 96 | |
|
| 1 | 97 | | HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>(); |
| 1 | 98 | | HashSet<Threat> assignedThreats = new HashSet<Threat>(); |
| 1 | 99 | | Dictionary<Interceptor, Threat> assignmentMap = new Dictionary<Interceptor, Threat>(); |
| | 100 | |
|
| 12 | 101 | | foreach (var assignmentItem in assignments) { |
| 3 | 102 | | Assert.IsNotNull(assignmentItem.Interceptor, "Interceptor should not be null."); |
| 3 | 103 | | Assert.IsNotNull(assignmentItem.Threat, "Threat should not be null."); |
| 3 | 104 | | assignedInterceptors.Add(assignmentItem.Interceptor); |
| 3 | 105 | | assignedThreats.Add(assignmentItem.Threat); |
| 3 | 106 | | assignmentMap[assignmentItem.Interceptor] = assignmentItem.Threat; |
| 3 | 107 | | } |
| | 108 | |
|
| 1 | 109 | | Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be unique."); |
| 1 | 110 | | Assert.AreEqual(3, assignedThreats.Count, "All threats should be assigned."); |
| | 111 | |
|
| | 112 | | // Verify that threats are assigned to maximize the intercept speed. |
| 1 | 113 | | Assert.AreEqual(assignmentMap[interceptor1], threat1); |
| 1 | 114 | | Assert.AreEqual(assignmentMap[interceptor2], threat2); |
| 1 | 115 | | Assert.AreEqual(assignmentMap[interceptor3], threat3); |
| 1 | 116 | | } |
| | 117 | |
|
| | 118 | | [Test] |
| 1 | 119 | | public void AssignShouldHandleMoreInterceptorsThanThreats() { |
| | 120 | | // Define the assignment. |
| 1 | 121 | | IAssignment assignment = new MaxSpeedAssignment(); |
| | 122 | |
|
| | 123 | | // Create the interceptors. |
| 1 | 124 | | Interceptor interceptor1 = new GameObject("Interceptor 1").AddComponent<MissileInterceptor>(); |
| 1 | 125 | | interceptor1.staticAgentConfig = CreateStaticAgentConfig(); |
| 1 | 126 | | Interceptor interceptor2 = new GameObject("Interceptor 2").AddComponent<MissileInterceptor>(); |
| 1 | 127 | | interceptor2.staticAgentConfig = CreateStaticAgentConfig(); |
| 1 | 128 | | Interceptor interceptor3 = new GameObject("Interceptor 3").AddComponent<MissileInterceptor>(); |
| 1 | 129 | | interceptor3.staticAgentConfig = CreateStaticAgentConfig(); |
| | 130 | |
|
| | 131 | | // Add rigid body components to interceptors to set their velocities. |
| 1 | 132 | | Rigidbody interceptorRb1 = interceptor1.gameObject.AddComponent<Rigidbody>(); |
| 1 | 133 | | Rigidbody interceptorRb2 = interceptor2.gameObject.AddComponent<Rigidbody>(); |
| 1 | 134 | | Rigidbody interceptorRb3 = interceptor3.gameObject.AddComponent<Rigidbody>(); |
| | 135 | |
|
| | 136 | | // Set the interceptor positions and velocities. |
| 1 | 137 | | interceptor1.transform.position = Vector3.zero; |
| 1 | 138 | | interceptor2.transform.position = Vector3.zero; |
| 1 | 139 | | interceptor3.transform.position = new Vector3(0, 100, 0); |
| 1 | 140 | | interceptorRb1.linearVelocity = new Vector3(0, 0, 5); |
| 1 | 141 | | interceptorRb2.linearVelocity = new Vector3(0, 10, 0); |
| 1 | 142 | | interceptorRb3.linearVelocity = new Vector3(0, 0, 5); |
| | 143 | |
|
| 1 | 144 | | List<Interceptor> interceptors = |
| | 145 | | new List<Interceptor> { interceptor1, interceptor2, interceptor3 }; |
| | 146 | |
|
| | 147 | | // Create the threats. |
| 1 | 148 | | Threat threat1 = new GameObject("Threat 1").AddComponent<RotaryWingThreat>(); |
| 1 | 149 | | Threat threat2 = new GameObject("Threat 2").AddComponent<RotaryWingThreat>(); |
| | 150 | |
|
| | 151 | | // Set threat positions. |
| 1 | 152 | | threat1.transform.position = new Vector3(0, -1, 0); |
| 1 | 153 | | threat2.transform.position = new Vector3(0, 1, 0); |
| | 154 | |
|
| 1 | 155 | | List<Threat> threats = new List<Threat> { threat1, threat2 }; |
| | 156 | |
|
| | 157 | | // Assign the interceptors to the threats. |
| 1 | 158 | | IEnumerable<IAssignment.AssignmentItem> assignments = assignment.Assign(interceptors, threats); |
| 1 | 159 | | Assert.AreEqual(3, assignments.Count(), "All interceptors should be assigned."); |
| | 160 | |
|
| 1 | 161 | | HashSet<Interceptor> assignedInterceptors = new HashSet<Interceptor>(); |
| 1 | 162 | | HashSet<Threat> assignedThreats = new HashSet<Threat>(); |
| 1 | 163 | | Dictionary<Interceptor, Threat> assignmentMap = new Dictionary<Interceptor, Threat>(); |
| | 164 | |
|
| 12 | 165 | | foreach (var assignmentItem in assignments) { |
| 3 | 166 | | Assert.IsNotNull(assignmentItem.Interceptor, "Interceptor should not be null."); |
| 3 | 167 | | Assert.IsNotNull(assignmentItem.Threat, "Threat should not be null."); |
| 3 | 168 | | assignedInterceptors.Add(assignmentItem.Interceptor); |
| 3 | 169 | | assignedThreats.Add(assignmentItem.Threat); |
| 3 | 170 | | assignmentMap[assignmentItem.Interceptor] = assignmentItem.Threat; |
| 3 | 171 | | } |
| | 172 | |
|
| 1 | 173 | | Assert.AreEqual(3, assignedInterceptors.Count, "All interceptors should be assigned."); |
| 1 | 174 | | Assert.AreEqual(2, assignedThreats.Count, "Both threats should be assigned."); |
| | 175 | |
|
| | 176 | | // Verify that threats are assigned to maximize the intercept speed. |
| 1 | 177 | | Assert.AreEqual(assignmentMap[interceptor1], threat1); |
| 1 | 178 | | Assert.AreEqual(assignmentMap[interceptor2], threat2); |
| 1 | 179 | | Assert.AreEqual(assignmentMap[interceptor3], threat2); |
| 1 | 180 | | } |
| | 181 | | } |