FbxVector2Test.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using Autodesk.Fbx;
  9. using System.Collections.Generic;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxVector2Test
  13. {
  14. #if ENABLE_COVERAGE_TEST
  15. static FbxVector2Test()
  16. {
  17. // The coverage tester doesn't realize that MatchingTests calls
  18. // every command (it asserts as much at the end). We need to tell it.
  19. var lambdaCaller = typeof(FbxVector2Test).GetMethod("MatchingTests");
  20. CppMatchingHelper.RegisterLambdaCalls(lambdaCaller, s_commands);
  21. }
  22. [Test]
  23. public void TestCoverage() { CoverageTester.TestCoverage(typeof(FbxVector2), this.GetType()); }
  24. #endif
  25. [Test]
  26. public void TestEquality()
  27. {
  28. EqualityTester<FbxVector2>.TestEquality(
  29. new FbxVector2(0, 1),
  30. new FbxVector2(3, 2),
  31. new FbxVector2(0, 1));
  32. }
  33. [Test]
  34. public void BasicTests ()
  35. {
  36. FbxVector2 v;
  37. // make sure the no-arg constructor doesn't crash
  38. new FbxVector2();
  39. // Test other constructors
  40. v = new FbxVector2(5);
  41. Assert.AreEqual(5, v.X);
  42. Assert.AreEqual(5, v.Y);
  43. v = new FbxVector2(1, 2);
  44. var u = new FbxVector2(v);
  45. Assert.AreEqual(v, u);
  46. u[0] = 5;
  47. Assert.AreEqual(5, u[0]);
  48. Assert.AreEqual(1, v[0]); // check that setting u doesn't set v
  49. Assert.AreEqual(1, v.X);
  50. Assert.AreEqual(2, v.Y);
  51. var d2 = new FbxDouble2(5, 6);
  52. v = new FbxVector2(d2);
  53. Assert.AreEqual(5, v.X);
  54. Assert.AreEqual(6, v.Y);
  55. // Test operator[]
  56. v = new FbxVector2();
  57. v[0] = 1;
  58. Assert.AreEqual(1, v[0]);
  59. v[1] = 2;
  60. Assert.AreEqual(2, v[1]);
  61. Assert.That(() => v[-1], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  62. Assert.That(() => v[ 2], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  63. Assert.That(() => v[-1] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  64. Assert.That(() => v[ 2] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  65. // Test that we can scale by a scalar.
  66. // This isn't covered below because this isn't legal in C++
  67. // (at least in FBX SDK 2017.1)
  68. u = 5 * v;
  69. Assert.AreEqual(5 * v.X, u.X);
  70. Assert.AreEqual(5 * v.Y, u.Y);
  71. }
  72. ///////////////////////////////////////////////////////////////////////////
  73. // Test that our results match the C++.
  74. ///////////////////////////////////////////////////////////////////////////
  75. static FbxVector2 Vector(double d) { return new FbxVector2(d,d); }
  76. static FbxVector2 Vector(double[] d) {
  77. return d.Length == 1 ? Vector(d[0]) : new FbxVector2(d[0], d[1]);
  78. }
  79. static Dictionary<string, CppMatchingHelper.TestCommand<FbxVector2>> s_commands = new Dictionary<string, CppMatchingHelper.TestCommand<FbxVector2>> {
  80. { "-a", (FbxVector2 a, FbxVector2 b) => { return -a; } },
  81. { "a + 2", (FbxVector2 a, FbxVector2 b) => { return a + 2; } },
  82. { "a - 2", (FbxVector2 a, FbxVector2 b) => { return a - 2; } },
  83. { "a * 2", (FbxVector2 a, FbxVector2 b) => { return a * 2; } },
  84. { "a / 2", (FbxVector2 a, FbxVector2 b) => { return a / 2; } },
  85. { "a + b", (FbxVector2 a, FbxVector2 b) => { return a + b; } },
  86. { "a - b", (FbxVector2 a, FbxVector2 b) => { return a - b; } },
  87. { "a * b", (FbxVector2 a, FbxVector2 b) => { return a * b; } },
  88. { "a / b", (FbxVector2 a, FbxVector2 b) => { return a / b; } },
  89. { "a.Length()", (FbxVector2 a, FbxVector2 b) => { return Vector(a.Length()); } },
  90. { "a.SquareLength()", (FbxVector2 a, FbxVector2 b) => { return Vector(a.SquareLength()); } },
  91. { "a.DotProduct(b)", (FbxVector2 a, FbxVector2 b) => { return Vector(a.DotProduct(b)); } },
  92. { "a.Distance(b)", (FbxVector2 a, FbxVector2 b) => { return Vector(a.Distance(b)); } },
  93. };
  94. static Dictionary<string, CppMatchingHelper.AreSimilar<FbxVector2>> s_custom_compare = new Dictionary<string, CppMatchingHelper.AreSimilar<FbxVector2>> {
  95. { "a.Length()", (FbxVector2 a, FbxVector2 b) => { Assert.AreEqual(a.X, b.X, 1e-8); return true; } },
  96. { "a.Distance(b)", (FbxVector2 a, FbxVector2 b) => { Assert.AreEqual(a.X, b.X, 1e-8); return true; } },
  97. };
  98. [Ignore("Fails if imported from a package because of Vector.cpp dependency")]
  99. [Test]
  100. public void MatchingTests ()
  101. {
  102. CppMatchingHelper.MatchingTest<FbxVector2>(
  103. "vector_test.txt",
  104. "FbxVector2",
  105. Vector,
  106. s_commands,
  107. s_custom_compare);
  108. }
  109. }
  110. }