FbxBlendShapeTest.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 System.Collections;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxBlendShapeTest : FbxDeformerTestBase<FbxBlendShape>
  13. {
  14. [Test]
  15. public void TestBasics ()
  16. {
  17. using (var fbxBlendShape = CreateObject ()) {
  18. // test FbxDeformer functions
  19. TestBasics(fbxBlendShape, FbxDeformer.EDeformerType.eBlendShape);
  20. int origCount = fbxBlendShape.GetBlendShapeChannelCount ();
  21. // test AddBlendShapeChannel()
  22. var fbxBlendShapeChannel = FbxBlendShapeChannel.Create (Manager, "blendShapeChannel");
  23. fbxBlendShape.AddBlendShapeChannel (fbxBlendShapeChannel);
  24. Assert.AreEqual (origCount+1, fbxBlendShape.GetBlendShapeChannelCount ());
  25. Assert.AreEqual (fbxBlendShapeChannel, fbxBlendShape.GetBlendShapeChannel (origCount));
  26. // test RemoveBlendShapeChannel()
  27. Assert.AreEqual(fbxBlendShapeChannel, fbxBlendShape.RemoveBlendShapeChannel(fbxBlendShapeChannel));
  28. // test already removed
  29. Assert.AreEqual(null, fbxBlendShape.RemoveBlendShapeChannel(fbxBlendShapeChannel));
  30. // test null
  31. Assert.That (() => { fbxBlendShape.AddBlendShapeChannel (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  32. Assert.That (() => { fbxBlendShape.RemoveBlendShapeChannel (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  33. // test destroyed
  34. fbxBlendShapeChannel.Destroy();
  35. Assert.That (() => { fbxBlendShape.AddBlendShapeChannel (fbxBlendShapeChannel); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  36. Assert.That (() => { fbxBlendShape.RemoveBlendShapeChannel (fbxBlendShapeChannel); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  37. // test SetGeometry()
  38. FbxGeometry fbxGeom = FbxGeometry.Create(Manager, "geometry");
  39. Assert.IsTrue(fbxBlendShape.SetGeometry (fbxGeom));
  40. Assert.AreEqual (fbxGeom, fbxBlendShape.GetGeometry ());
  41. // test null
  42. Assert.That (() => { fbxBlendShape.SetGeometry (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  43. // test destroyed
  44. fbxGeom = FbxGeometry.Create(Manager, "geometry2");
  45. fbxGeom.Destroy();
  46. Assert.That (() => { fbxBlendShape.SetGeometry (fbxGeom); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  47. }
  48. }
  49. }
  50. }