EmptyExportTest.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.IO;
  10. using System.Collections.Generic;
  11. namespace Autodesk.Fbx.UseCaseTests
  12. {
  13. public class EmptyExportTest : RoundTripTestBase
  14. {
  15. private static Dictionary<string, string> m_dataValues = new Dictionary<string, string> ()
  16. {
  17. { "title", "Empty scene" },
  18. { "subject", "Example of an empty scene with document information settings" },
  19. { "author", "Unit Technologies" },
  20. { "revision", "1.0" },
  21. { "keywords", "example empty scene" },
  22. { "comment", "basic scene settings. Note that the scene thumnail is not set." },
  23. };
  24. protected Dictionary<string, string> dataValues { get { return m_dataValues; } }
  25. [SetUp]
  26. public override void Init ()
  27. {
  28. fileNamePrefix = "_safe_to_delete__empty_export_test_";
  29. base.Init ();
  30. }
  31. protected override FbxScene CreateScene (FbxManager manager)
  32. {
  33. FbxScene scene = FbxScene.Create (manager, "myScene");
  34. // create scene info
  35. FbxDocumentInfo sceneInfo = FbxDocumentInfo.Create (manager, "mySceneInfo");
  36. sceneInfo.mTitle = dataValues ["title"];
  37. sceneInfo.mSubject = dataValues ["subject"];
  38. sceneInfo.mAuthor = dataValues ["author"];
  39. sceneInfo.mRevision = dataValues ["revision"];
  40. sceneInfo.mKeywords = dataValues ["keywords"];
  41. sceneInfo.mComment = dataValues ["comment"];
  42. scene.SetSceneInfo (sceneInfo);
  43. // TODO: port SetSceneThumbnail
  44. return scene;
  45. }
  46. protected override void CheckScene (FbxScene scene)
  47. {
  48. Dictionary<string, string> values = this.dataValues;
  49. FbxDocumentInfo sceneInfo = scene.GetSceneInfo ();
  50. Assert.AreEqual (sceneInfo.mTitle, values ["title"]);
  51. Assert.AreEqual (sceneInfo.mSubject, values ["subject"]);
  52. Assert.AreEqual (sceneInfo.mAuthor, values ["author"]);
  53. Assert.AreEqual (sceneInfo.mRevision, values ["revision"]);
  54. Assert.AreEqual (sceneInfo.mKeywords, values ["keywords"]);
  55. Assert.AreEqual (sceneInfo.mComment, values ["comment"]);
  56. }
  57. }
  58. }