< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
TestDataPoint()0%2100%
TestNearestNeighbor()0%2100%
TestFileNotFound()0%6200%
TestInvalidInterpolationData()0%2100%

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]
 010  public void TestDataPoint() {
 011    LaunchAngleInput input = new LaunchAngleInput(distance: 9074.84f, altitude: 97.7306f);
 012    LaunchAngleOutput expectedOutput =
 13        new LaunchAngleOutput(launchAngle: 22f, timeToPosition: 21.32f);
 14
 015    LaunchAngleCsvInterpolator interpolator = new LaunchAngleCsvInterpolator();
 016    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 017  }
 18
 19  [Test]
 020  public void TestNearestNeighbor() {
 021    LaunchAngleInput input = new LaunchAngleInput(distance: 9076f, altitude: 94f);
 022    LaunchAngleOutput expectedOutput =
 23        new LaunchAngleOutput(launchAngle: 22f, timeToPosition: 21.32f);
 24
 025    LaunchAngleCsvInterpolator interpolator = new LaunchAngleCsvInterpolator();
 026    Assert.AreEqual(expectedOutput, interpolator.Plan(input));
 027  }
 28
 29  [Test]
 030  public void TestFileNotFound() {
 31    // Inject a mock ConfigLoader that returns an empty string.
 032    LaunchAngleCsvInterpolator.ConfigLoaderDelegate mockLoader = (string path) => "";
 33
 034    LogAssert.Expect(LogType.Error, "Failed to load CSV file from Planning/nonexistent.csv.");
 035    Assert.Throws<InvalidOperationException>(() => {
 036      var interpolator = new LaunchAngleCsvInterpolator("Planning/nonexistent.csv", mockLoader);
 037      interpolator.Plan(new LaunchAngleInput());
 038    });
 039  }
 40
 41  [Test]
 042  public void TestInvalidInterpolationData() {
 43    // Create a mock CSV with invalid data format.
 044    string mockCsv = "invalid,csv,data\n1,2,3";
 045    LaunchAngleCsvInterpolator.ConfigLoaderDelegate mockLoader = (string path) => mockCsv;
 46
 047    var interpolator = new LaunchAngleCsvInterpolator(null, mockLoader);
 048    var input = new LaunchAngleInput(distance: 1, altitude: 2);
 49
 050    var ex = Assert.Throws<InvalidOperationException>(() => { interpolator.Plan(input); });
 051    Assert.That(ex.Message, Is.EqualTo("Interpolator returned invalid data."));
 052  }
 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}