FbxExporterTest.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using UnityEngine;
  2. using UnityEngine.TestTools;
  3. using NUnit.Framework;
  4. using System.Collections;
  5. using Autodesk.Fbx;
  6. using System.IO;
  7. public class FbxExporterTest {
  8. [Test]
  9. public void TestWriteEmptyFbxFile() {
  10. /*
  11. Runtime test that writes an fbx scene file in the directory where the
  12. player is (temp folder while running tests)
  13. */
  14. // Build the fbx scene file path
  15. // (player/player_data/emptySceneFromRuntime.fbx)
  16. string fbxFilePath = Application.dataPath;
  17. fbxFilePath = Path.Combine(fbxFilePath, "emptySceneFromRuntime.fbx");
  18. // The file should not exist. We are running the test from the Test
  19. // Runner, which should always create a new player with its own fresh
  20. // data directory
  21. FileInfo fbxFileInfo = new FileInfo(fbxFilePath);
  22. Assert.That(!fbxFileInfo.Exists, string.Format("\"{0}\" already exists but the test did not create it yet", fbxFilePath));
  23. using (var fbxManager = FbxManager.Create())
  24. {
  25. FbxIOSettings fbxIOSettings = FbxIOSettings.Create(fbxManager, Globals.IOSROOT);
  26. // Configure the IO settings.
  27. fbxManager.SetIOSettings(fbxIOSettings);
  28. // Create the exporter
  29. var fbxExporter = FbxExporter.Create(fbxManager, "Exporter");
  30. // Initialize the exporter.
  31. int fileFormat = fbxManager.GetIOPluginRegistry().FindWriterIDByDescription("FBX ascii (*.fbx)");
  32. bool status = fbxExporter.Initialize(fbxFilePath, fileFormat, fbxIOSettings);
  33. Assert.That( status, string.Format("failed to initialize exporter, reason:D {0}",
  34. fbxExporter.GetStatus().GetErrorString()));
  35. // Create a scene
  36. var fbxScene = FbxScene.Create(fbxManager, "Scene");
  37. // create scene info
  38. FbxDocumentInfo fbxSceneInfo = FbxDocumentInfo.Create(fbxManager, "SceneInfo");
  39. // set some scene info values
  40. fbxSceneInfo.mTitle = "emptySceneFromRuntime";
  41. fbxSceneInfo.mSubject = "Exported from a Unity runtime while testing in play mode";
  42. fbxSceneInfo.mAuthor = "Unity Technologies";
  43. fbxSceneInfo.mRevision = "1.0";
  44. fbxSceneInfo.mKeywords = "export fbx runtime player play mode";
  45. fbxSceneInfo.mComment = "This is to test the capability of exporting from a Unity runtime, using the FBX SDK C# bindings";
  46. fbxScene.SetSceneInfo(fbxSceneInfo);
  47. // Export the scene to the file.
  48. status = fbxExporter.Export(fbxScene);
  49. Assert.That( status, string.Format("Failed to export scene, reason: {0}",
  50. fbxExporter.GetStatus().GetErrorString()));
  51. // cleanup
  52. fbxScene.Destroy();
  53. fbxExporter.Destroy();
  54. }
  55. // Test that the file exists
  56. fbxFileInfo = new FileInfo(fbxFilePath);
  57. Assert.That(fbxFileInfo.Exists, string.Format("\"{0}\" was not created", fbxFilePath));
  58. }
  59. }