FbxBlendShapeChannelTest.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 FbxBlendShapeChannelTest : Base<FbxBlendShapeChannel>
  13. {
  14. [Test]
  15. public void TestBasics ()
  16. {
  17. using (var blendShapeChannel = CreateObject ()) {
  18. int origCount = blendShapeChannel.GetTargetShapeCount ();
  19. FbxShape shape = FbxShape.Create (Manager, "shape");
  20. Assert.IsTrue(blendShapeChannel.AddTargetShape (shape));
  21. Assert.AreEqual (origCount + 1, blendShapeChannel.GetTargetShapeCount ());
  22. Assert.AreEqual (shape, blendShapeChannel.GetTargetShape (origCount));
  23. Assert.AreEqual (origCount, blendShapeChannel.GetTargetShapeIndex (shape));
  24. // test RemoveTargetShape
  25. Assert.AreEqual (shape, blendShapeChannel.RemoveTargetShape (shape));
  26. Assert.IsNull (blendShapeChannel.GetTargetShape (origCount));
  27. // test AddTargetShape with double doesn't crash
  28. blendShapeChannel.AddTargetShape (shape, 45);
  29. // test null
  30. Assert.That (() => { blendShapeChannel.AddTargetShape (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  31. Assert.That (() => { blendShapeChannel.RemoveTargetShape (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  32. // test destroyed
  33. shape.Destroy();
  34. Assert.That (() => { blendShapeChannel.AddTargetShape (shape); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  35. Assert.That (() => { blendShapeChannel.RemoveTargetShape (shape); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  36. // test GetDeformPercent
  37. TestGetter (blendShapeChannel.DeformPercent);
  38. // test SetBlendShapeDeformer()
  39. FbxBlendShape blendShape = FbxBlendShape.Create(Manager, "blendShape");
  40. Assert.IsTrue(blendShapeChannel.SetBlendShapeDeformer (blendShape));
  41. Assert.AreEqual (blendShape, blendShapeChannel.GetBlendShapeDeformer ());
  42. // test null
  43. Assert.That (() => { blendShapeChannel.SetBlendShapeDeformer(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  44. // test destroyed
  45. blendShape = FbxBlendShape.Create(Manager, "blendShape2");
  46. blendShape.Destroy ();
  47. Assert.That (() => { blendShapeChannel.SetBlendShapeDeformer (blendShape); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  48. }
  49. }
  50. }
  51. }