FbxLayerElementArrayTestBase.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 abstract class FbxLayerElementArrayTestBase<T> : TestBase<T> where T : Autodesk.Fbx.FbxLayerElementArray
  13. {
  14. public void TestBasics(T layerElementArray)
  15. {
  16. // Test SetCount()
  17. layerElementArray.SetCount (1);
  18. Assert.AreEqual (layerElementArray.GetCount (), 1);
  19. // test invalid
  20. layerElementArray.SetCount (-1);
  21. // Test AddInt()
  22. layerElementArray.Add (0);
  23. layerElementArray.Add (-1);
  24. // Test AddFbxColor()
  25. layerElementArray.Add (new FbxColor ());
  26. layerElementArray.Add (new FbxColor (1, 0, 0));
  27. // Test AddFbxVector2()
  28. layerElementArray.Add (new FbxVector2 ());
  29. layerElementArray.Add (new FbxVector2 (1, 0));
  30. // Test AddFbxVector4()
  31. layerElementArray.Add (new FbxVector4 ());
  32. layerElementArray.Add (new FbxVector4 (1, 0, 0));
  33. // Test SetAtInt()
  34. layerElementArray.SetAt (0, 1);
  35. // test invalid index
  36. layerElementArray.SetAt (-1, 1);
  37. // test negative int
  38. layerElementArray.SetAt (1, -1);
  39. // Test SetAtFbxColor()
  40. layerElementArray.SetAt (0, new FbxColor ());
  41. // test invalid index
  42. layerElementArray.SetAt (-1, new FbxColor ());
  43. // Test SetFbxVector2()
  44. layerElementArray.SetAt (0, new FbxVector2 ());
  45. // test invalid index
  46. layerElementArray.SetAt (-1, new FbxVector2 ());
  47. // Test SetAtFbxVector4()
  48. layerElementArray.SetAt (0, new FbxVector4 ());
  49. // test invalid index
  50. layerElementArray.SetAt (-1, new FbxVector4 ());
  51. // test dispose
  52. layerElementArray.Dispose ();
  53. Assert.That (() => {
  54. layerElementArray.SetCount (1);
  55. }, Throws.Exception.TypeOf<System.ArgumentNullException> ());
  56. }
  57. [Test]
  58. public abstract void TestBasics();
  59. }
  60. public abstract class FbxLayerElementArrayTemplateTestBase<T,U> : FbxLayerElementArrayTestBase<T> where T : Autodesk.Fbx.FbxLayerElementArray {
  61. static System.Reflection.MethodInfo s_getAt;
  62. static System.Reflection.ConstructorInfo s_constructor;
  63. static FbxLayerElementArrayTemplateTestBase() {
  64. s_getAt = typeof(T).GetMethod("GetAt", new System.Type[] { typeof(int) });
  65. s_constructor = typeof(T).GetConstructor (System.Type.EmptyTypes);
  66. #if ENABLE_COVERAGE_TEST
  67. // Register the calls we make through reflection.
  68. if(s_getAt != null){
  69. var getAt = typeof(FbxLayerElementArrayTemplateTestBase<T,U>).GetMethod("GetAt");
  70. CoverageTester.RegisterReflectionCall(getAt, s_getAt);
  71. }
  72. if(s_constructor != null){
  73. var constructor = typeof(FbxLayerElementArrayTemplateTestBase<T,U>).GetMethod("CreateObject");
  74. CoverageTester.RegisterReflectionCall(constructor, s_constructor);
  75. }
  76. #endif
  77. }
  78. public T CreateObject()
  79. {
  80. return Invoker.InvokeConstructor<T> (s_constructor);
  81. }
  82. public U GetAt(T layerElementArray, int index){
  83. return Invoker.Invoke<U> (s_getAt, layerElementArray, index);
  84. }
  85. [Test]
  86. public override void TestBasics ()
  87. {
  88. base.TestBasics (CreateObject());
  89. }
  90. [Test]
  91. public void TestGetAt ()
  92. {
  93. T layerElementArrayTemplate = CreateObject();
  94. Assert.IsNotNull (layerElementArrayTemplate);
  95. layerElementArrayTemplate.SetCount (1);
  96. // make sure doesn't crash
  97. GetAt (layerElementArrayTemplate, 0);
  98. Assert.That (() => {
  99. GetAt (layerElementArrayTemplate, int.MinValue);
  100. }, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException> ());
  101. Assert.That (() => {
  102. GetAt (layerElementArrayTemplate, int.MaxValue);
  103. }, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException> ());
  104. }
  105. }
  106. public class FbxLayerElementArrayTest : FbxLayerElementArrayTestBase<FbxLayerElementArray> {
  107. [Test]
  108. public override void TestBasics()
  109. {
  110. TestBasics(new FbxLayerElementArray (EFbxType.eFbxBlob));
  111. }
  112. }
  113. public class FbxLayerElementArrayTemplateFbxColorTest :
  114. FbxLayerElementArrayTemplateTestBase<FbxLayerElementArrayTemplateFbxColor,FbxColor> {
  115. }
  116. public class FbxLayerElementArrayTemplateFbxSurfaceMaterialTest :
  117. FbxLayerElementArrayTemplateTestBase<FbxLayerElementArrayTemplateFbxSurfaceMaterial,FbxSurfaceMaterial> {
  118. }
  119. public class FbxLayerElementArrayTemplateFbxVector2Test :
  120. FbxLayerElementArrayTemplateTestBase<FbxLayerElementArrayTemplateFbxVector2,FbxVector2> {
  121. }
  122. public class FbxLayerElementArrayTemplateFbxVector4Test :
  123. FbxLayerElementArrayTemplateTestBase<FbxLayerElementArrayTemplateFbxVector4,FbxVector4> {
  124. }
  125. public class FbxLayerElementArrayTemplateIntTest :
  126. FbxLayerElementArrayTemplateTestBase<FbxLayerElementArrayTemplateInt,int> {
  127. }
  128. }