FbxDocumentTest.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 FbxDocumentTest : Base<FbxDocument>
  13. {
  14. private static Dictionary<string, string> m_dataValues = new Dictionary<string, string> ()
  15. {
  16. { "title", "Document Title" },
  17. { "subject", "Unit Tests for DocumentInfo class." },
  18. { "author", "Unity Technologies" },
  19. { "revision", "1.0" },
  20. { "keywords", "do not crash" },
  21. { "comment", "Testing the DocumentInfo object." },
  22. };
  23. protected Dictionary<string, string> dataValues { get { return m_dataValues; } }
  24. // Override this test and simply ignore it: documents don't fit into scenes.
  25. protected override void TestSceneContainer() { }
  26. [Test]
  27. public void TestDocumentInfo ()
  28. {
  29. using (var doc = CreateObject("RootDoc"))
  30. {
  31. // NOTE: we'll get a ArgumentNullException warning if we use the using
  32. // scope because doc.Clear() will destroy the FbxDocumentInfo.
  33. var docInfo = FbxDocumentInfo.Create (this.Manager, "myDocumentInfo");
  34. Assert.IsNotNull (docInfo);
  35. doc.SetDocumentInfo (FbxDocumentInfoTest.InitDocumentInfo (docInfo, this.dataValues));
  36. var docInfo2 = doc.GetDocumentInfo ();
  37. Assert.IsNotNull (docInfo2);
  38. FbxDocumentInfoTest.CheckDocumentInfo (docInfo2, this.dataValues);
  39. // TODO: test identity
  40. // Assert.AreEqual (docInfo2, docInfo);
  41. // Assert.AreSame (docInfo2, docInfo);
  42. Assert.That (() => { doc.SetDocumentInfo (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  43. // CRASH ALERT!!! remove reference to document info before
  44. // going out of using docInfo scope.
  45. doc.Clear ();
  46. Assert.IsNull (doc.GetDocumentInfo ());
  47. FbxCollectionTest.GenericTests (doc, Manager);
  48. }
  49. }
  50. }
  51. }