RoundTripTestBase.cs 5.1 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 System.IO;
  10. using System.Collections.Generic;
  11. using Autodesk.Fbx;
  12. namespace Autodesk.Fbx.UseCaseTests
  13. {
  14. public abstract class RoundTripTestBase
  15. {
  16. private string _filePath;
  17. protected string filePath { get { return string.IsNullOrEmpty(_filePath) ? "." : _filePath; } set { _filePath = value; } }
  18. private string _fileNamePrefix;
  19. protected string fileNamePrefix { get { return string.IsNullOrEmpty(_fileNamePrefix) ? "_safe_to_delete__" : _fileNamePrefix; }
  20. set { _fileNamePrefix = value; } }
  21. private string _fileNameExt;
  22. protected string fileNameExt { get { return string.IsNullOrEmpty(_fileNameExt) ? ".fbx" : _fileNameExt; } set { _fileNameExt = value; } }
  23. private string MakeFileName(string baseName = null, string prefixName = null, string extName = null)
  24. {
  25. if (baseName==null)
  26. baseName = Path.GetRandomFileName();
  27. if (prefixName==null)
  28. prefixName = this.fileNamePrefix;
  29. if (extName==null)
  30. extName = this.fileNameExt;
  31. return prefixName + baseName + extName;
  32. }
  33. protected string GetRandomFileNamePath(string pathName = null, string prefixName = null, string extName = null)
  34. {
  35. string temp;
  36. if (pathName==null)
  37. pathName = this.filePath;
  38. if (prefixName==null)
  39. prefixName = this.fileNamePrefix;
  40. if (extName==null)
  41. extName = this.fileNameExt;
  42. // repeat until you find a file that does not already exist
  43. do {
  44. temp = Path.Combine (pathName, MakeFileName(prefixName: prefixName, extName: extName));
  45. } while(File.Exists (temp));
  46. return temp;
  47. }
  48. private FbxManager m_fbxManager;
  49. protected FbxManager FbxManager { get { return m_fbxManager; } }
  50. [SetUp]
  51. public virtual void Init ()
  52. {
  53. foreach (string file in Directory.GetFiles (this.filePath, MakeFileName("*"))) {
  54. File.Delete (file);
  55. }
  56. // create fbx manager.
  57. m_fbxManager = FbxManager.Create ();
  58. // configure IO settings.
  59. m_fbxManager.SetIOSettings (FbxIOSettings.Create (m_fbxManager, Globals.IOSROOT));
  60. }
  61. [TearDown]
  62. public virtual void Term ()
  63. {
  64. try {
  65. m_fbxManager.Destroy ();
  66. }
  67. catch (System.ArgumentNullException) {
  68. }
  69. }
  70. protected virtual FbxScene CreateScene (FbxManager manager)
  71. {
  72. return FbxScene.Create (manager, "myScene");
  73. }
  74. protected virtual void CheckScene (FbxScene scene)
  75. {}
  76. protected void ExportScene (string fileName)
  77. {
  78. // Export the scene
  79. using (FbxExporter exporter = FbxExporter.Create (FbxManager, "myExporter")) {
  80. // Initialize the exporter.
  81. bool status = exporter.Initialize (fileName, -1, FbxManager.GetIOSettings ());
  82. // Check that export status is True
  83. Assert.IsTrue (status);
  84. // Create a new scene so it can be populated by the imported file.
  85. FbxScene scene = CreateScene (FbxManager);
  86. CheckScene (scene);
  87. // Export the scene to the file.
  88. exporter.Export (scene);
  89. // Check if file exists
  90. Assert.IsTrue (File.Exists (fileName));
  91. }
  92. }
  93. protected void ImportScene (string fileName)
  94. {
  95. // Import the scene to make sure file is valid
  96. using (FbxImporter importer = FbxImporter.Create (FbxManager, "myImporter")) {
  97. // Initialize the importer.
  98. bool status = importer.Initialize (fileName, -1, FbxManager.GetIOSettings ());
  99. Assert.IsTrue (status);
  100. // Create a new scene so it can be populated by the imported file.
  101. FbxScene scene = FbxScene.Create (FbxManager, "myScene");
  102. // Import the contents of the file into the scene.
  103. importer.Import (scene);
  104. // check that the scene is valid
  105. CheckScene (scene);
  106. }
  107. }
  108. [Test]
  109. public void TestExportScene ()
  110. {
  111. var fileName = GetRandomFileNamePath ();
  112. this.ExportScene (fileName);
  113. File.Delete (fileName);
  114. }
  115. [Test]
  116. public void TestRoundTrip ()
  117. {
  118. var fileName = GetRandomFileNamePath ();
  119. this.ExportScene (fileName);
  120. this.ImportScene (fileName);
  121. File.Delete (fileName);
  122. }
  123. }
  124. }