FbxAxisSystemTest.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. namespace Autodesk.Fbx.UnitTests
  10. {
  11. /// <summary>
  12. /// Run some tests that any vector type should be able to pass.
  13. /// If you add tests here, you probably want to add them to the other
  14. /// FbxDouble* test classes.
  15. /// </summary>
  16. public class FbxAxisSystemTest : TestBase<FbxAxisSystem>
  17. {
  18. [Test]
  19. public void TestEquality() {
  20. var a = FbxAxisSystem.MayaZUp;
  21. var b = FbxAxisSystem.MayaYUp;
  22. var acopy = new FbxAxisSystem(FbxAxisSystem.EPreDefinedAxisSystem.eMayaZUp);
  23. EqualityTester<FbxAxisSystem>.TestEquality(a, b, acopy);
  24. }
  25. /// <summary>
  26. /// Test the basics. Subclasses should override and add some calls
  27. /// e.g. to excercise all the constructors.
  28. /// </summary>
  29. [Test]
  30. public void TestBasics()
  31. {
  32. // Use all the constants.
  33. using (FbxAxisSystem.MayaZUp) { }
  34. using (FbxAxisSystem.MayaYUp) { }
  35. using (FbxAxisSystem.Max) { }
  36. using (FbxAxisSystem.Motionbuilder) { }
  37. using (FbxAxisSystem.OpenGL) { }
  38. using (FbxAxisSystem.DirectX) { }
  39. using (FbxAxisSystem.Lightwave) { }
  40. // Use this one again (make sure we don't crash) */
  41. using (FbxAxisSystem.MayaZUp) { }
  42. // Test the copy constructor.
  43. var axes = new FbxAxisSystem(FbxAxisSystem.Lightwave);
  44. // Test equality functions.
  45. Assert.That(axes.GetHashCode(), Is.LessThan(0));
  46. Assert.AreEqual(FbxAxisSystem.Lightwave, axes);
  47. Assert.IsFalse(FbxAxisSystem.MayaZUp == axes);
  48. Assert.IsTrue(FbxAxisSystem.MayaZUp != axes);
  49. // Test the predefined-enum constructor.
  50. Assert.AreEqual(axes, new FbxAxisSystem(FbxAxisSystem.EPreDefinedAxisSystem.eLightwave));
  51. axes.Dispose();
  52. // Test the no-arg constructor.
  53. using (new FbxAxisSystem()) { }
  54. // Construct from the three axes. Test we can get the three axes, including the sign.
  55. axes = new FbxAxisSystem(
  56. FbxAxisSystem.EUpVector.eYAxis,
  57. FbxAxisSystem.EFrontVector.eParityOddNegative, // negative! check the sign goes through
  58. FbxAxisSystem.ECoordSystem.eLeftHanded);
  59. Assert.AreEqual(FbxAxisSystem.EUpVector.eYAxis, axes.GetUpVector());
  60. Assert.AreEqual(FbxAxisSystem.EFrontVector.eParityOddNegative, axes.GetFrontVector());
  61. Assert.AreEqual(FbxAxisSystem.ECoordSystem.eLeftHanded, axes.GetCoorSystem());
  62. }
  63. [Test]
  64. public void TestConvertScene()
  65. {
  66. var axes = new FbxAxisSystem(
  67. FbxAxisSystem.EUpVector.eYAxis,
  68. FbxAxisSystem.EFrontVector.eParityOddNegative, // negative! check the sign goes through
  69. FbxAxisSystem.ECoordSystem.eLeftHanded);
  70. using (var Manager = FbxManager.Create()) {
  71. var scene = FbxScene.Create(Manager, "scene");
  72. axes.ConvertScene(scene);
  73. }
  74. }
  75. [Test]
  76. public void TestDeepConvertScene()
  77. {
  78. var axes = new FbxAxisSystem(
  79. FbxAxisSystem.EUpVector.eYAxis,
  80. FbxAxisSystem.EFrontVector.eParityOddNegative, // negative! check the sign goes through
  81. FbxAxisSystem.ECoordSystem.eLeftHanded);
  82. using (var Manager = FbxManager.Create()) {
  83. var scene = FbxScene.Create(Manager, "scene");
  84. try {
  85. axes.DeepConvertScene(scene);
  86. } catch(System.EntryPointNotFoundException) {
  87. Assert.Ignore("Testing against FBX SDK that doesn't have DeepConvertScene");
  88. }
  89. }
  90. }
  91. }
  92. }