< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
GetNumDataPoints(...)0%12300%
TestEmptyAndInvalidLines()0%2100%
TestSingleDataPoint()0%2100%
TestInsufficientColumns()0%2100%
TestOutOfRangeQuery()0%2100%
TestInterpolateVector2Success()0%90900%
TestInterpolateVector2Error()0%2100%

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.
 010  private static int GetNumDataPoints(NearestNeighborInterpolator2D interpolator) {
 011    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.
 016    var dataList = fieldInfo.GetValue(interpolator) as System.Collections.IList;
 017    return dataList?.Count ?? 0;
 018  }
 19
 20  [Test]
 021  public void TestEmptyAndInvalidLines() {
 022    string[] csvLines = {
 23      "",              // Empty.
 24      " , ",           // Whitespace.
 25      "abc,123,45,67"  // Invalid because "abc" is not float.
 26    };
 027    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 28
 29    // This should result in zero valid data points.
 030    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.
 033    LogAssert.Expect(LogType.Error, "No data points available for interpolation.");
 034    Interpolator2DDataPoint result = interpolator.Interpolate(1, 1);
 035    Assert.AreEqual(0, result.Data.Count, "Interpolator returned data from an empty dataset.");
 036  }
 37
 38  [Test]
 039  public void TestSingleDataPoint() {
 040    string[] csvLines = { "0,0,45,2" };
 041    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 42
 43    // Query a random far point.
 044    Interpolator2DDataPoint result = interpolator.Interpolate(100, 200);
 045    Assert.AreEqual(new Vector2(0, 0), result.Coordinates);
 046    Assert.AreEqual(2, result.Data.Count);
 047    Assert.AreEqual(45f, result.Data[0]);
 048    Assert.AreEqual(2f, result.Data[1]);
 049  }
 50
 51  [Test]
 052  public void TestInsufficientColumns() {
 053    string[] csvLines = { "100.0,200.0" };
 054    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 55
 56    // Interpolate from the single data point.
 057    Interpolator2DDataPoint result = interpolator.Interpolate(100.0f, 200.0f);
 058    Assert.NotNull(result);
 059    Assert.AreEqual(new Vector2(100.0f, 200.0f), result.Coordinates);
 060    Assert.AreEqual(0, result.Data.Count, "Expected zero data columns for this line.");
 061  }
 62
 63  [Test]
 064  public void TestOutOfRangeQuery() {
 65    // minimal data covering some small region.
 066    string[] csvLines = { "0,0,45,2", "10,10,30,3", "20,5,25,4" };
 067    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 68
 69    // Query something very far from all data points, e.g., (1000, 1000).
 070    Interpolator2DDataPoint result = interpolator.Interpolate(1000, 1000);
 71
 72    // The nearest neighbor is (20, 5), so we expect (25, 4).
 073    Assert.AreEqual(new Vector2(20, 5), result.Coordinates);
 074    Assert.AreEqual(2, result.Data.Count);
 075    Assert.AreEqual(25f, result.Data[0]);
 076    Assert.AreEqual(4f, result.Data[1]);
 077  }
 78
 79  [Test]
 080  public void TestInterpolateVector2Success() {
 081    string[] csvLines = { "1,1,10,20", "1,2,30,40", "2,1,50,60", "2,2,70,80" };
 082    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 83
 084    Vector2 testPoint = new Vector2(1.5f, 1.5f);
 085    Interpolator2DDataPoint result = interpolator.Interpolate(testPoint);
 086    Assert.AreEqual(2, result.Data.Count);
 87
 88    // Check if the result matches any of the possible nearest point pairs.
 089    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);
 093    Assert.IsTrue(isValidPair, "Result should match one of the nearest point pairs.");
 094  }
 95
 96  [Test]
 097  public void TestInterpolateVector2Error() {
 98    // Empty dataset.
 099    string[] csvLines = {};
 0100    NearestNeighborInterpolator2D interpolator = new NearestNeighborInterpolator2D(csvLines);
 101
 0102    Vector2 testPoint = new Vector2(1.0f, 1.0f);
 0103    LogAssert.Expect(LogType.Error, "No data points available for interpolation.");
 0104    Interpolator2DDataPoint result = interpolator.Interpolate(testPoint);
 0105    Assert.AreEqual(0, result.Data.Count, "Should return empty list when no data is available.");
 0106  }
 107}