GlobalsTest.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. using System.Collections.Generic;
  10. using System.Reflection;
  11. namespace Autodesk.Fbx.UnitTests
  12. {
  13. public class GlobalsTest
  14. {
  15. const string kPINVOKE = "NativeMethods";
  16. static System.Type s_PINVOKEtype;
  17. static ConstructorInfo s_PINVOKEctor;
  18. static List<MethodInfo> s_UpcastFunctions = new List<MethodInfo>();
  19. #if ENABLE_COVERAGE_TEST
  20. [Test]
  21. public void TestCoverage() {
  22. /* Search the current assembly for unit tests. */
  23. var alltypes = GetType().Assembly.GetTypes();
  24. var unitTestMethods = new List<MethodBase>();
  25. foreach(var t in alltypes) {
  26. CoverageTester.CollectTestMethods(t, unitTestMethods);
  27. }
  28. /* Search the assembly that Autodesk.Fbx.Globals is in to find classes in
  29. * the FbxSdk namespace to test. */
  30. alltypes = typeof(Autodesk.Fbx.Globals).Assembly.GetTypes();
  31. var methodsToCover = new List<MethodBase>();
  32. foreach(var t in alltypes) {
  33. if (t.Namespace != "Autodesk.Fbx") {
  34. continue;
  35. }
  36. /* don't take in delegates; we can't properly track coverage,
  37. so just avoid the false negative */
  38. if (t.IsSubclassOf(typeof(System.Delegate))) {
  39. continue;
  40. }
  41. /* take in the PINVOKE class but skip its helper classes */
  42. bool skip = false;
  43. for(var u = t.DeclaringType ; u != null; u = u.DeclaringType) {
  44. if (u.TypeHandle.Value == s_PINVOKEtype.TypeHandle.Value) {
  45. skip = true;
  46. break;
  47. }
  48. }
  49. if (skip) { continue; }
  50. CoverageTester.CollectMethodsToCover(t, methodsToCover);
  51. }
  52. List<MethodBase> hitMethods = new List<MethodBase>();
  53. List<MethodBase> missedMethods = new List<MethodBase>();
  54. var ok = CoverageTester.TestCoverage(methodsToCover, unitTestMethods, out hitMethods, out missedMethods);
  55. NUnit.Framework.Assert.That(
  56. () => ok,
  57. () => CoverageTester.MakeCoverageMessage(hitMethods, missedMethods));
  58. }
  59. #endif
  60. static GlobalsTest()
  61. {
  62. /* We test the PINVOKE class by reflection since it's private to
  63. * its assembly. */
  64. var alltypes = typeof(Autodesk.Fbx.Globals).Assembly.GetTypes();
  65. foreach(var t in alltypes) {
  66. if (t.Namespace == "Autodesk.Fbx" && t.Name == kPINVOKE) {
  67. s_PINVOKEtype = t;
  68. break;
  69. }
  70. }
  71. Assert.IsNotNull(s_PINVOKEtype);
  72. s_PINVOKEctor = s_PINVOKEtype.GetConstructor(new System.Type[] {});
  73. foreach(var m in s_PINVOKEtype.GetMethods()) {
  74. if (m.Name.EndsWith("SWIGUpcast")) {
  75. s_UpcastFunctions.Add(m);
  76. }
  77. }
  78. #if ENABLE_COVERAGE_TEST
  79. var basicTests = typeof(GlobalsTest).GetMethod("BasicTests");
  80. if (s_PINVOKEctor != null) {
  81. CoverageTester.RegisterReflectionCall(basicTests, s_PINVOKEctor);
  82. }
  83. foreach(var m in s_UpcastFunctions) {
  84. CoverageTester.RegisterReflectionCall(basicTests, m);
  85. }
  86. #endif
  87. }
  88. bool ProgressCallback(float a, string b) { return true; }
  89. [Test]
  90. public void BasicTests ()
  91. {
  92. /* Try to create the Globals, which isn't
  93. * static, so the coverage tests want us to create them. */
  94. new Globals();
  95. /* Create the NativeMethods, which isn't static.
  96. * But it is protected, so we can't create it normally,
  97. * which is why we use reflection. */
  98. s_PINVOKEctor.Invoke(null);
  99. /* Don't actually invoke the SWIGUpcast functions. They're a
  100. * feature to handle multiple inheritance. But FBX SDK doesn't use
  101. * multiple inheritance anyway. */
  102. }
  103. }
  104. }