< Summary

Class:LaunchAngleCsvInterpolatorTest
Assembly:bamlab.test.editmode
File(s):/github/workspace/Assets/Tests/EditMode/LaunchAngleInterpolatorTest.cs
Covered lines:27
Uncovered lines:1
Coverable lines:28
Total lines:87
Line coverage:96.4% (27 of 28)
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
TestDataPoint()0%110100%
TestNearestNeighbor()0%110100%
TestFileNotFound()0%220100%
TestInvalidInterpolationData()0%110100%

File(s)

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

#LineLine coverage
 1using NUnit.Framework;
 2using System.Collections;
 3using System.Collections.Generic;
 4using UnityEngine;
 5using UnityEngine.TestTools;
 6using System;
 7
 8public class LaunchAngleCsvInterpolatorTest {
 9  [Test]
 110  public void TestDataPoint() {
 111    LaunchAngleInput input = new LaunchAngleInput(distance: 9074.84f, altitude: 97.7306f);
 112    LaunchAngleOutput expectedOutput =
 13        new LaunchAngleOutput(launchAngle: 22f, timeToPosition: 21.32f);
 14
 115    LaunchAngleCsvInterpolator interpolator = new LaunchAngleCsvInterpolator();
 116    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 117  }
 18
 19  [Test]
 120  public void TestNearestNeighbor() {
 121    LaunchAngleInput input = new LaunchAngleInput(distance: 9076f, altitude: 94f);
 122    LaunchAngleOutput expectedOutput =
 23        new LaunchAngleOutput(launchAngle: 22f, timeToPosition: 21.32f);
 24
 125    LaunchAngleCsvInterpolator interpolator = new LaunchAngleCsvInterpolator();
 126    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 127  }
 28
 29  [Test]
 130  public void TestFileNotFound() {
 31    // Inject a mock ConfigLoader that returns an empty string.
 232    LaunchAngleCsvInterpolator.ConfigLoaderDelegate mockLoader = (string path) => "";
 33
 134    LogAssert.Expect(LogType.Error, "Failed to load CSV file from Planning/nonexistent.csv.");
 235    Assert.Throws<InvalidOperationException>(() => {
 136      var interpolator = new LaunchAngleCsvInterpolator("Planning/nonexistent.csv", mockLoader);
 137      interpolator.Plan(new LaunchAngleInput());
 038    });
 139  }
 40
 41  [Test]
 142  public void TestInvalidInterpolationData() {
 43    // Create a mock CSV with invalid data format.
 144    string mockCsv = "invalid,csv,data\n1,2,3";
 245    LaunchAngleCsvInterpolator.ConfigLoaderDelegate mockLoader = (string path) => mockCsv;
 46
 147    var interpolator = new LaunchAngleCsvInterpolator(null, mockLoader);
 148    var input = new LaunchAngleInput(distance: 1, altitude: 2);
 49
 350    var ex = Assert.Throws<InvalidOperationException>(() => { interpolator.Plan(input); });
 151    Assert.That(ex.Message, Is.EqualTo("Interpolator returned invalid data."));
 152  }
 53}
 54
 55public class LaunchAngleDataInterpolatorTest {
 56  private class DummyLaunchAngleDataInterpolator : LaunchAngleDataInterpolator {
 57    public DummyLaunchAngleDataInterpolator() : base() {}
 58
 59    // Generate the list of launch angle data points to interpolate.
 60    protected override List<LaunchAngleDataPoint> GenerateData() {
 61      return new List<LaunchAngleDataPoint> {
 62        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 1, altitude: 100),
 63                                 new LaunchAngleOutput(launchAngle: 90, timeToPosition: 10)),
 64        new LaunchAngleDataPoint(new LaunchAngleInput(distance: 100, altitude: 1),
 65                                 new LaunchAngleOutput(launchAngle: 10, timeToPosition: 20)),
 66      };
 67    }
 68  }
 69
 70  [Test]
 71  public void TestDataPoint() {
 72    LaunchAngleInput input = new LaunchAngleInput(distance: 1, altitude: 100);
 73    LaunchAngleOutput expectedOutput = new LaunchAngleOutput(launchAngle: 90, timeToPosition: 10);
 74
 75    DummyLaunchAngleDataInterpolator interpolator = new DummyLaunchAngleDataInterpolator();
 76    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 77  }
 78
 79  [Test]
 80  public void TestNearestNeighbor() {
 81    LaunchAngleInput input = new LaunchAngleInput(distance: 1, altitude: 200);
 82    LaunchAngleOutput expectedOutput = new LaunchAngleOutput(launchAngle: 90, timeToPosition: 10);
 83
 84    DummyLaunchAngleDataInterpolator interpolator = new DummyLaunchAngleDataInterpolator();
 85    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 86  }
 87}