FbxMeshTest.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 FbxMeshTest : FbxGeometryTestBase<FbxMesh>
  13. {
  14. [Test]
  15. public void TestBasics()
  16. {
  17. base.TestBasics(CreateObject("mesh"), FbxNodeAttribute.EType.eMesh);
  18. using (FbxMesh mesh = CreateObject ("mesh")) {
  19. int polyCount = 0;
  20. int polyVertexCount = 0;
  21. mesh.InitControlPoints(4);
  22. mesh.SetControlPointAt(new FbxVector4(0,0,0), 0);
  23. mesh.SetControlPointAt(new FbxVector4(1,0,0), 1);
  24. mesh.SetControlPointAt(new FbxVector4(1,0,1), 2);
  25. mesh.SetControlPointAt(new FbxVector4(0,0,1), 3);
  26. mesh.BeginPolygon();
  27. mesh.AddPolygon(0); polyVertexCount++;
  28. mesh.AddPolygon(1); polyVertexCount++;
  29. mesh.AddPolygon(2); polyVertexCount++;
  30. mesh.AddPolygon(3); polyVertexCount++;
  31. mesh.EndPolygon();
  32. polyCount++;
  33. // Link a poly to a material (even though we don't have any).
  34. mesh.BeginPolygon(0);
  35. mesh.AddPolygon(0); polyVertexCount++;
  36. mesh.AddPolygon(1); polyVertexCount++;
  37. mesh.AddPolygon(2); polyVertexCount++;
  38. mesh.AddPolygon(3); polyVertexCount++;
  39. mesh.EndPolygon();
  40. polyCount++;
  41. // Link a poly to a material and texture (even though we don't have any).
  42. mesh.BeginPolygon(0, 0);
  43. mesh.AddPolygon(0); polyVertexCount++;
  44. mesh.AddPolygon(1); polyVertexCount++;
  45. mesh.AddPolygon(2); polyVertexCount++;
  46. mesh.AddPolygon(3); polyVertexCount++;
  47. mesh.EndPolygon();
  48. polyCount++;
  49. // Create a group.
  50. mesh.BeginPolygon(-1, -1, 0);
  51. mesh.AddPolygon(0); polyVertexCount++;
  52. mesh.AddPolygon(1); polyVertexCount++;
  53. mesh.AddPolygon(2); polyVertexCount++;
  54. mesh.AddPolygon(3); polyVertexCount++;
  55. mesh.EndPolygon();
  56. polyCount++;
  57. // Create a non-legacy group polygon.
  58. mesh.BeginPolygon(-1, -1, 0, false);
  59. mesh.AddPolygon(0); polyVertexCount++;
  60. mesh.AddPolygon(1); polyVertexCount++;
  61. mesh.AddPolygon(2); polyVertexCount++;
  62. mesh.AddPolygon(3); polyVertexCount++;
  63. mesh.EndPolygon();
  64. polyCount++;
  65. // Create a polygon with UV indices (even though we don't have any)
  66. mesh.BeginPolygon(0);
  67. mesh.AddPolygon(0, 0); polyVertexCount++;
  68. mesh.AddPolygon(1, 1); polyVertexCount++;
  69. mesh.AddPolygon(2, 2); polyVertexCount++;
  70. mesh.AddPolygon(3, 3); polyVertexCount++;
  71. mesh.EndPolygon();
  72. polyCount++;
  73. Assert.AreEqual (mesh.GetPolygonCount (), polyCount);
  74. Assert.AreEqual (mesh.GetPolygonSize (polyCount - 1), 4);
  75. Assert.AreEqual (mesh.GetPolygonVertex (polyCount - 1, 0), 0);
  76. Assert.AreEqual ( mesh.GetPolygonVertexCount (), polyVertexCount);
  77. Assert.AreEqual (mesh.GetPolygonCount (), polyCount);
  78. }
  79. }
  80. [Test]
  81. public void TestBeginBadPolygonCreation()
  82. {
  83. // Add before begin. This crashes in native FBX SDK.
  84. using (FbxMesh mesh = CreateObject ("mesh")) {
  85. Assert.That(() => mesh.AddPolygon(0), Throws.Exception.TypeOf<FbxMesh.BadBracketingException>());
  86. }
  87. // End before begin. This is benign in native FBX SDK.
  88. using (FbxMesh mesh = CreateObject ("mesh")) {
  89. Assert.That(() => mesh.EndPolygon(), Throws.Exception.TypeOf<FbxMesh.BadBracketingException>());
  90. }
  91. // Begin during begin. This is benign in native FBX SDK.
  92. using (FbxMesh mesh = CreateObject ("mesh")) {
  93. mesh.BeginPolygon();
  94. Assert.That(() => mesh.BeginPolygon(), Throws.Exception.TypeOf<FbxMesh.BadBracketingException>());
  95. }
  96. // Negative polygon index. Benign in FBX SDK, but it will crash some importers.
  97. using (FbxMesh mesh = CreateObject ("mesh")) {
  98. mesh.BeginPolygon ();
  99. Assert.That(() => mesh.AddPolygon (-1), Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  100. }
  101. }
  102. }
  103. public class FbxMeshBadBracketingExceptionTest {
  104. #if ENABLE_COVERAGE_TEST
  105. [Test]
  106. public void TestCoverage() { CoverageTester.TestCoverage(typeof(FbxMesh.BadBracketingException), this.GetType()); }
  107. static FbxMeshBadBracketingExceptionTest()
  108. {
  109. // We don't test Exception.GetObjectData ; we assume that the C#
  110. // compiler and runtime can make it work.
  111. CoverageTester.RegisterReflectionCall(
  112. typeof(FbxMeshBadBracketingExceptionTest).GetMethod("BasicTests"),
  113. typeof(FbxMesh.BadBracketingException).GetMethod("GetObjectData"));
  114. }
  115. #endif
  116. [Test]
  117. public void BasicTests()
  118. {
  119. // BadBracketingException()
  120. var xcp = new FbxMesh.BadBracketingException();
  121. xcp.HelpLink = "http://127.0.0.1";
  122. Assert.AreEqual("http://127.0.0.1", xcp.HelpLink);
  123. Assert.AreNotEqual("", xcp.Message);
  124. xcp.Source = "source";
  125. Assert.AreEqual("source", xcp.Source);
  126. Assert.AreNotEqual("", xcp.StackTrace);
  127. Assert.IsNull(xcp.InnerException);
  128. Assert.AreEqual(xcp, xcp.GetBaseException());
  129. Assert.IsNull(xcp.TargetSite);
  130. Assert.IsNotNull(xcp.Data);
  131. Assert.AreEqual(typeof(FbxMesh.BadBracketingException), xcp.GetType());
  132. // BadBracketingException(string message)
  133. xcp = new FbxMesh.BadBracketingException("oops");
  134. xcp.HelpLink = "http://127.0.0.1";
  135. Assert.AreEqual("http://127.0.0.1", xcp.HelpLink);
  136. Assert.AreNotEqual("", xcp.Message);
  137. xcp.Source = "source";
  138. Assert.AreEqual("source", xcp.Source);
  139. Assert.AreNotEqual("", xcp.StackTrace);
  140. Assert.IsNull(xcp.InnerException);
  141. Assert.AreEqual(xcp, xcp.GetBaseException());
  142. Assert.IsNull(xcp.TargetSite);
  143. Assert.IsNotNull(xcp.Data);
  144. Assert.AreEqual(typeof(FbxMesh.BadBracketingException), xcp.GetType());
  145. // BadBracketingException(string message, System.Exception innerException)
  146. xcp = new FbxMesh.BadBracketingException("oops", new System.Exception());
  147. xcp.HelpLink = "http://127.0.0.1";
  148. Assert.AreEqual("http://127.0.0.1", xcp.HelpLink);
  149. Assert.AreNotEqual("", xcp.Message);
  150. xcp.Source = "source";
  151. Assert.AreEqual("source", xcp.Source);
  152. Assert.AreNotEqual("", xcp.StackTrace);
  153. Assert.IsNotNull(xcp.InnerException);
  154. // The base exception becomes the inner exception here since this represents a chain of exceptions
  155. Assert.AreNotEqual(xcp, xcp.GetBaseException());
  156. Assert.AreEqual(xcp.InnerException, xcp.GetBaseException());
  157. Assert.IsNull(xcp.TargetSite);
  158. Assert.IsNotNull(xcp.Data);
  159. Assert.AreEqual(typeof(FbxMesh.BadBracketingException), xcp.GetType());
  160. }
  161. }
  162. }