FbxSceneTest.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. public class FbxSceneTest : Base<FbxScene>
  12. {
  13. protected override void TestSceneContainer()
  14. {
  15. // GetScene returns the parent scene.
  16. using(var scene = FbxScene.Create(Manager, "thescene")) {
  17. Assert.AreEqual(null, scene.GetScene());
  18. var subscene = CreateObject(scene, "subscene");
  19. Assert.AreEqual(scene, subscene.GetScene());
  20. var subsubscene = CreateObject(subscene, "subscene");
  21. Assert.AreEqual(subscene, subsubscene.GetScene());
  22. }
  23. }
  24. [Test]
  25. public void TestBasics()
  26. {
  27. using (var scene = FbxScene.Create(Manager, "scene")) {
  28. // Just call every function. TODO: and test them at least minimally!
  29. scene.GetGlobalSettings();
  30. scene.GetRootNode();
  31. var docInfo = FbxDocumentInfo.Create(Manager, "info");
  32. scene.SetDocumentInfo(docInfo);
  33. Assert.AreEqual(docInfo, scene.GetDocumentInfo());
  34. docInfo = FbxDocumentInfo.Create(Manager, "info2");
  35. scene.SetSceneInfo(docInfo);
  36. Assert.AreEqual(docInfo, scene.GetSceneInfo());
  37. scene.Clear();
  38. FbxCollectionTest.GenericTests (scene, Manager);
  39. }
  40. }
  41. [Test]
  42. public override void TestDisposeDestroy ()
  43. {
  44. // The scene destroys recursively even if you ask it not to
  45. DoTestDisposeDestroy(canDestroyNonRecursive: false);
  46. }
  47. [Test]
  48. public void TestNodeCount ()
  49. {
  50. using (FbxScene newScene = FbxScene.Create (Manager, ""))
  51. {
  52. Assert.GreaterOrEqual (newScene.GetNodeCount (), 0);
  53. }
  54. }
  55. [Test]
  56. public void TestAddPose()
  57. {
  58. using (FbxScene newScene = FbxScene.Create (Manager, "")) {
  59. FbxPose fbxPose = FbxPose.Create (Manager, "pose");
  60. bool result = newScene.AddPose (fbxPose);
  61. Assert.IsTrue (result);
  62. Assert.AreEqual (fbxPose, newScene.GetPose (0));
  63. // test null
  64. Assert.That (() => { newScene.AddPose(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  65. // test invalid
  66. fbxPose.Destroy();
  67. Assert.That (() => { newScene.AddPose(fbxPose); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  68. }
  69. }
  70. [Test]
  71. public void TestSetCurrentAnimStack()
  72. {
  73. using (FbxScene newScene = FbxScene.Create (Manager, "")) {
  74. FbxAnimStack animStack = FbxAnimStack.Create (Manager, "");
  75. newScene.SetCurrentAnimationStack (animStack);
  76. Assert.AreEqual (animStack, newScene.GetCurrentAnimationStack ());
  77. // test null
  78. Assert.That (() => { newScene.SetCurrentAnimationStack(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  79. // test invalid
  80. animStack.Destroy();
  81. Assert.That (() => { newScene.SetCurrentAnimationStack(animStack); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  82. }
  83. }
  84. }
  85. }