< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
DummyLaunchAngleDataInterpolator()0%110100%
GenerateData()0%110100%
IterativeLaunchPlannerTest()0%110100%
GenerateAgent(...)0%110100%
TestInterceptAtDataPoint()0%110100%
TestInterceptAroundDataPoint()0%110100%
TestInterceptAcrossMultipleDataPoints()0%110100%
TestNoLaunchDivergingFromInterceptPoint()0%110100%
TestNoLaunchTooFarFromInterceptPoint()0%110100%

File(s)

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

#LineLine coverage
 1using NUnit.Framework;
 2using System.Collections;
 3using System.Collections.Generic;
 4using System.Linq;
 5using UnityEngine;
 6using UnityEngine.TestTools;
 7
 8public class IterativeLaunchPlannerTest {
 9  private class DummyLaunchAngleDataInterpolator : LaunchAngleDataInterpolator {
 310    public DummyLaunchAngleDataInterpolator() : base() {}
 11
 12    // Generate the list of launch angle data points to interpolate.
 113    protected override List<LaunchAngleDataPoint> GenerateData() {
 114      return new List<LaunchAngleDataPoint> {
 15        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 1, altitude: 100),
 16                                 new LaunchAngleOutput(launchAngle: 90, timeToPosition: 10)),
 17        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 60, altitude: 1),
 18                                 new LaunchAngleOutput(launchAngle: 20, timeToPosition: 13)),
 19        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 80, altitude: 1),
 20                                 new LaunchAngleOutput(launchAngle: 15, timeToPosition: 16)),
 21        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 100, altitude: 1),
 22                                 new LaunchAngleOutput(launchAngle: 10, timeToPosition: 20)),
 23      };
 124    }
 25  }
 26
 127  private static ILaunchAnglePlanner _launchAnglePlanner = new DummyLaunchAngleDataInterpolator();
 28
 529  public static Agent GenerateAgent(in Vector3 position, in Vector3 velocity) {
 530    Agent agent = new GameObject().AddComponent<DummyAgent>();
 531    Rigidbody rb = agent.gameObject.AddComponent<Rigidbody>();
 532    agent.transform.position = position;
 533    rb.linearVelocity = velocity;
 534    return agent;
 535  }
 36
 37  [Test]
 138  public void TestInterceptAtDataPoint() {
 139    Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 1, 0));
 140    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 141    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 142    LaunchPlan plan = planner.Plan();
 143    Assert.IsTrue(plan.ShouldLaunch);
 144    Assert.AreEqual(90, plan.LaunchAngle);
 145    Assert.AreEqual(new Vector3(1, 100, 0), plan.InterceptPosition);
 146  }
 47
 48  [Test]
 149  public void TestInterceptAroundDataPoint() {
 150    Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 0.9f, 0));
 151    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 152    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 153    LaunchPlan plan = planner.Plan();
 154    Assert.IsTrue(plan.ShouldLaunch);
 155    Assert.AreEqual(90, plan.LaunchAngle);
 156    Assert.AreEqual(new Vector3(1, 99, 0), plan.InterceptPosition);
 157  }
 58
 59  [Test]
 160  public void TestInterceptAcrossMultipleDataPoints() {
 161    Agent agent = GenerateAgent(position: new Vector3(126, 1, 0), velocity: new Vector3(-5, 0, 0));
 162    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 163    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 164    LaunchPlan plan = planner.Plan();
 165    Assert.IsTrue(plan.ShouldLaunch);
 166    Assert.AreEqual(20, plan.LaunchAngle);
 167    Assert.AreEqual(new Vector3(61, 1, 0), plan.InterceptPosition);
 168  }
 69
 70  [Test]
 171  public void TestNoLaunchDivergingFromInterceptPoint() {
 172    Agent agent = GenerateAgent(position: new Vector3(1, 105, 0), velocity: new Vector3(0, 1, 0));
 173    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 174    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 175    LaunchPlan plan = planner.Plan();
 176    Assert.IsFalse(plan.ShouldLaunch);
 177  }
 78
 79  [Test]
 180  public void TestNoLaunchTooFarFromInterceptPoint() {
 181    Agent agent = GenerateAgent(position: new Vector3(1, 2000, 0), velocity: new Vector3(0, -1, 0));
 182    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 183    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 184    LaunchPlan plan = planner.Plan();
 185    Assert.IsFalse(plan.ShouldLaunch);
 186  }
 87}