FbxSystemUnitTest.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 FbxSystemUnitTest : TestBase<FbxSystemUnit>
  17. {
  18. [Test]
  19. public void TestEquality()
  20. {
  21. EqualityTester<FbxSystemUnit>.TestEquality(FbxSystemUnit.mm, FbxSystemUnit.Yard, new FbxSystemUnit(0.1));
  22. }
  23. /// <summary>
  24. /// Test the basics. Subclasses should override and add some calls
  25. /// e.g. to excercise all the constructors.
  26. /// </summary>
  27. [Test]
  28. public void TestBasics()
  29. {
  30. // Call all the functions. Test that a few of them actually work
  31. // (rather than merely not crashing).
  32. using (FbxSystemUnit.mm) { }
  33. using (FbxSystemUnit.cm) { }
  34. using (FbxSystemUnit.dm) { }
  35. using (FbxSystemUnit.m) { }
  36. using (FbxSystemUnit.km) { }
  37. using (FbxSystemUnit.Inch) { }
  38. using (FbxSystemUnit.Foot) { }
  39. using (FbxSystemUnit.Yard) { }
  40. var units = new FbxSystemUnit(0.1);
  41. Assert.AreEqual(0.1, units.GetScaleFactor());
  42. Assert.AreEqual(1, units.GetMultiplier(), 1);
  43. Assert.AreEqual("mm", units.GetScaleFactorAsString());
  44. Assert.AreEqual(FbxSystemUnit.mm, units);
  45. Assert.AreNotEqual(FbxSystemUnit.km, units);
  46. units.GetHashCode();
  47. units.ToString();
  48. units.Dispose();
  49. units = new FbxSystemUnit(0.1378123891, 324823);
  50. units.ToString();
  51. Assert.AreEqual("custom unit", units.GetScaleFactorAsString(pAbbreviated: false));
  52. Assert.AreNotEqual(units, FbxSystemUnit.mm);
  53. // test GetGetConversionFactor
  54. Assert.AreEqual(FbxSystemUnit.cm.GetConversionFactorTo(FbxSystemUnit.Foot),
  55. FbxSystemUnit.Foot.GetConversionFactorFrom(FbxSystemUnit.cm));
  56. // test ConversionOptions.Dispose()
  57. FbxSystemUnit.ConversionOptions options = new FbxSystemUnit.ConversionOptions();
  58. options.Dispose ();
  59. using (var manager = FbxManager.Create ()) {
  60. FbxScene scene = FbxScene.Create (manager, "scene");
  61. // test ConvertScene (make sure it doesn't crash)
  62. FbxSystemUnit.cm.ConvertScene (scene);
  63. FbxSystemUnit.m.ConvertScene(scene, new FbxSystemUnit.ConversionOptions());
  64. // test null
  65. Assert.That (() => { FbxSystemUnit.dm.ConvertScene(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  66. // test destroyed
  67. scene.Destroy();
  68. Assert.That (() => { FbxSystemUnit.dm.ConvertScene(scene); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  69. }
  70. }
  71. }
  72. }