< Summary

Class:NearestNeighborInterpolator2DTest
Assembly:bamlab.test.editmode
File(s):/github/workspace/Assets/Tests/EditMode/Interpolator2DTest.cs
Covered lines:56
Uncovered lines:0
Coverable lines:56
Total lines:107
Line coverage:100% (56 of 56)
Covered branches:0
Total branches:0
Covered methods:7
Total methods:7
Method coverage:100% (7 of 7)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
GetNumDataPoints(...)0%330100%
TestEmptyAndInvalidLines()0%110100%
TestSingleDataPoint()0%110100%
TestInsufficientColumns()0%110100%
TestOutOfRangeQuery()0%110100%
TestInterpolateVector2Success()0%990100%
TestInterpolateVector2Error()0%110100%

File(s)

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

#LineLine coverage
 1using Is = NUnit.Framework.Is;
 2using NUnit.Framework;
 3using NUnit.Framework.Constraints;
 4using System.Collections.Generic;
 5using UnityEngine;
 6using UnityEngine.TestTools;
 7
 8public class NearestNeighborInterpolator2DTest {
 9  // Helper method to count how many data points the 2D interpolator is holding.
 110  private static int GetNumDataPoints(NearestNeighborInterpolator2D interpolator) {
 111    var fieldInfo = typeof(NearestNeighborInterpolator2D)
 12                        .GetField("_data", System.Reflection.BindingFlags.NonPublic |
 13                                               System.Reflection.BindingFlags.Instance);
 14
 15    // Get the raw value and use IList.Count.
 116    var dataList = fieldInfo.GetValue(interpolator) as System.Collections.IList;
 117    return dataList?.Count ?? 0;
 118  }
 19
 20  [Test]
 121  public void TestEmptyAndInvalidLines() {
 122    string[] csvLines = {
 23      "",              // Empty.
 24      " , ",           // Whitespace.
 25      "abc,123,45,67"  // Invalid because "abc" is not float.
 26    };
 127    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 28
 29    // This should result in zero valid data points.
 130    Assert.AreEqual(0, GetNumDataPoints(interpolator), "No valid lines should have been parsed.");
 31
 32    // Expect the error log before calling the method that produces it.
 133    LogAssert.Expect(LogType.Error, "No data points available for interpolation.");
 134    Interpolator2DDataPoint result = interpolator.Interpolate(1, 1);
 135    Assert.AreEqual(0, result.Data.Count, "Interpolator returned data from an empty dataset.");
 136  }
 37
 38  [Test]
 139  public void TestSingleDataPoint() {
 140    string[] csvLines = { "0,0,45,2" };
 141    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 42
 43    // Query a random far point.
 144    Interpolator2DDataPoint result = interpolator.Interpolate(100, 200);
 145    Assert.AreEqual(new Vector2(0, 0), result.Coordinates);
 146    Assert.AreEqual(2, result.Data.Count);
 147    Assert.AreEqual(45f, result.Data[0]);
 148    Assert.AreEqual(2f, result.Data[1]);
 149  }
 50
 51  [Test]
 152  public void TestInsufficientColumns() {
 153    string[] csvLines = { "100.0,200.0" };
 154    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 55
 56    // Interpolate from the single data point.
 157    Interpolator2DDataPoint result = interpolator.Interpolate(100.0f, 200.0f);
 158    Assert.NotNull(result);
 159    Assert.AreEqual(new Vector2(100.0f, 200.0f), result.Coordinates);
 160    Assert.AreEqual(0, result.Data.Count, "Expected zero data columns for this line.");
 161  }
 62
 63  [Test]
 164  public void TestOutOfRangeQuery() {
 65    // minimal data covering some small region.
 166    string[] csvLines = { "0,0,45,2", "10,10,30,3", "20,5,25,4" };
 167    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 68
 69    // Query something very far from all data points, e.g., (1000, 1000).
 170    Interpolator2DDataPoint result = interpolator.Interpolate(1000, 1000);
 71
 72    // The nearest neighbor is (20, 5), so we expect (25, 4).
 173    Assert.AreEqual(new Vector2(20, 5), result.Coordinates);
 174    Assert.AreEqual(2, result.Data.Count);
 175    Assert.AreEqual(25f, result.Data[0]);
 176    Assert.AreEqual(4f, result.Data[1]);
 177  }
 78
 79  [Test]
 180  public void TestInterpolateVector2Success() {
 181    string[] csvLines = { "1,1,10,20", "1,2,30,40", "2,1,50,60", "2,2,70,80" };
 182    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 83
 184    Vector2 testPoint = new Vector2(1.5f, 1.5f);
 185    Interpolator2DDataPoint result = interpolator.Interpolate(testPoint);
 186    Assert.AreEqual(2, result.Data.Count);
 87
 88    // Check if the result matches any of the possible nearest point pairs.
 189    bool isValidPair = (result.Data[0] == 10f && result.Data[1] == 20f) ||
 90                       (result.Data[0] == 30f && result.Data[1] == 40f) ||
 91                       (result.Data[0] == 50f && result.Data[1] == 60f) ||
 92                       (result.Data[0] == 70f && result.Data[1] == 80f);
 193    Assert.IsTrue(isValidPair, "Result should match one of the nearest point pairs.");
 194  }
 95
 96  [Test]
 197  public void TestInterpolateVector2Error() {
 98    // Empty dataset.
 199    string[] csvLines = {};
 1100    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 101
 1102    Vector2 testPoint = new Vector2(1.0f, 1.0f);
 1103    LogAssert.Expect(LogType.Error, "No data points available for interpolation.");
 1104    Interpolator2DDataPoint result = interpolator.Interpolate(testPoint);
 1105    Assert.AreEqual(0, result.Data.Count, "Should return empty list when no data is available.");
 1106  }
 107}