FbxDocumentInfoTest.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxDocumentInfoTest : Base<FbxDocumentInfo>
  13. {
  14. private static Dictionary<string, string> m_dataValues = new Dictionary<string, string> ()
  15. {
  16. { "title", ".YvH5peIJMdg" },
  17. { "subject", "lmESAM8Fe3HV" },
  18. { "author", "hLsYMCqUekvr" },
  19. { "revision", "SknI2x=Ncp5P" },
  20. { "keywords", "netJRGcb8alS" },
  21. { "comment", ".0pzL-twb6mx" },
  22. };
  23. protected Dictionary<string, string> dataValues { get { return m_dataValues; } }
  24. public static FbxDocumentInfo InitDocumentInfo (FbxDocumentInfo docInfo, Dictionary<string, string> values)
  25. {
  26. docInfo.mTitle = values ["title"];
  27. docInfo.mSubject = values ["subject"];
  28. docInfo.mAuthor = values ["author"];
  29. docInfo.mRevision = values ["revision"];
  30. docInfo.mKeywords = values ["keywords"];
  31. docInfo.mComment = values ["comment"];
  32. return docInfo;
  33. }
  34. public static void CheckDocumentInfo (FbxDocumentInfo docInfo, Dictionary<string, string> values)
  35. {
  36. Assert.AreEqual (docInfo.mTitle, values ["title"]);
  37. Assert.AreEqual (docInfo.mSubject, values ["subject"]);
  38. Assert.AreEqual (docInfo.mAuthor, values ["author"]);
  39. Assert.AreEqual (docInfo.mRevision, values ["revision"]);
  40. Assert.AreEqual (docInfo.mKeywords, values ["keywords"]);
  41. Assert.AreEqual (docInfo.mComment, values ["comment"]);
  42. }
  43. [Test]
  44. public void TestDocumentInfo ()
  45. {
  46. using (FbxDocumentInfo docInfo = CreateObject()) {
  47. CheckDocumentInfo (InitDocumentInfo (docInfo, this.dataValues), this.dataValues);
  48. TestGetter(docInfo.LastSavedUrl);
  49. TestGetter(docInfo.Url);
  50. TestGetter(docInfo.Original);
  51. TestGetter(docInfo.Original_ApplicationVendor);
  52. TestGetter(docInfo.Original_ApplicationName);
  53. TestGetter(docInfo.Original_ApplicationVersion);
  54. TestGetter(docInfo.Original_FileName);
  55. TestGetter(docInfo.LastSaved);
  56. TestGetter(docInfo.LastSaved_ApplicationVendor);
  57. TestGetter(docInfo.LastSaved_ApplicationName);
  58. TestGetter(docInfo.LastSaved_ApplicationVersion);
  59. TestGetter(docInfo.EmbeddedUrl);
  60. docInfo.Clear();
  61. Assert.AreEqual(docInfo.mTitle, "");
  62. }
  63. }
  64. [Test]
  65. [Ignore("FbxScene.GetDocumentInfo can return an invalid object and crash.")]
  66. public void TestCrashOnGetDocumentInfo()
  67. {
  68. using (var doc = FbxDocument.Create(Manager, "")) {
  69. using (var docInfo = CreateObject()) {
  70. doc.SetDocumentInfo(docInfo);
  71. docInfo.Destroy();
  72. // Crash! Normally FBX disconnects when you destroy an
  73. // object, but not so for the link between a document and
  74. // its document info.
  75. doc.GetDocumentInfo().Url.Get();
  76. }
  77. }
  78. }
  79. [Test]
  80. [Ignore("FbxScene.GetSceneInfo can return an invalid object and crash.")]
  81. public void TestCrashOnGetSceneInfo()
  82. {
  83. using (var scene = FbxScene.Create(Manager, "")) {
  84. using (var docInfo = CreateObject()) {
  85. scene.SetSceneInfo(docInfo);
  86. docInfo.Destroy();
  87. // Crash! Normally FBX disconnects when you destroy an
  88. // object, but not so for the link between the scene and
  89. // its scene info.
  90. scene.GetSceneInfo().Url.Get();
  91. }
  92. }
  93. }
  94. }
  95. }