< Summary

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

Metrics

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

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 {
 010    public DummyLaunchAngleDataInterpolator() : base() {}
 11
 12    // Generate the list of launch angle data points to interpolate.
 013    protected override List<LaunchAngleDataPoint> GenerateData() {
 014      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      };
 024    }
 25  }
 26
 027  private static ILaunchAnglePlanner _launchAnglePlanner = new DummyLaunchAngleDataInterpolator();
 28
 029  public static Agent GenerateAgent(in Vector3 position, in Vector3 velocity) {
 030    Agent agent = new GameObject().AddComponent<DummyAgent>();
 031    Rigidbody rb = agent.gameObject.AddComponent<Rigidbody>();
 032    agent.transform.position = position;
 033    rb.linearVelocity = velocity;
 034    return agent;
 035  }
 36
 37  [Test]
 038  public void TestInterceptAtDataPoint() {
 039    Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 1, 0));
 040    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 041    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 042    LaunchPlan plan = planner.Plan();
 043    Assert.IsTrue(plan.ShouldLaunch);
 044    Assert.AreEqual(90, plan.LaunchAngle);
 045    Assert.AreEqual(new Vector3(1, 100, 0), plan.InterceptPosition);
 046  }
 47
 48  [Test]
 049  public void TestInterceptAroundDataPoint() {
 050    Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 0.9f, 0));
 051    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 052    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 053    LaunchPlan plan = planner.Plan();
 054    Assert.IsTrue(plan.ShouldLaunch);
 055    Assert.AreEqual(90, plan.LaunchAngle);
 056    Assert.AreEqual(new Vector3(1, 99, 0), plan.InterceptPosition);
 057  }
 58
 59  [Test]
 060  public void TestInterceptAcrossMultipleDataPoints() {
 061    Agent agent = GenerateAgent(position: new Vector3(126, 1, 0), velocity: new Vector3(-5, 0, 0));
 062    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 063    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 064    LaunchPlan plan = planner.Plan();
 065    Assert.IsTrue(plan.ShouldLaunch);
 066    Assert.AreEqual(20, plan.LaunchAngle);
 067    Assert.AreEqual(new Vector3(61, 1, 0), plan.InterceptPosition);
 068  }
 69
 70  [Test]
 071  public void TestNoLaunchDivergingFromInterceptPoint() {
 072    Agent agent = GenerateAgent(position: new Vector3(1, 105, 0), velocity: new Vector3(0, 1, 0));
 073    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 074    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 075    LaunchPlan plan = planner.Plan();
 076    Assert.IsFalse(plan.ShouldLaunch);
 077  }
 78
 79  [Test]
 080  public void TestNoLaunchTooFarFromInterceptPoint() {
 081    Agent agent = GenerateAgent(position: new Vector3(1, 2000, 0), velocity: new Vector3(0, -1, 0));
 082    LinearExtrapolator predictor = new LinearExtrapolator(agent);
 083    IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor);
 084    LaunchPlan plan = planner.Plan();
 085    Assert.IsFalse(plan.ShouldLaunch);
 086  }
 87}