/Languages/IronPython/Tests/interop/com/dlrcomlib/typelib.py

http://github.com/IronLanguages/main · Python · 83 lines · 45 code · 17 blank · 21 comment · 5 complexity · 8f715b6f9e6bddddd80d81d8d4a4acb7 MD5 · raw file

  1. #####################################################################################
  2. #
  3. # Copyright (c) Microsoft Corporation. All rights reserved.
  4. #
  5. # This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. # copy of the license can be found in the License.html file at the root of this distribution. If
  7. # you cannot locate the Apache License, Version 2.0, please send an email to
  8. # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. # by the terms of the Apache License, Version 2.0.
  10. #
  11. # You must not remove this notice, or any other, from this software.
  12. #
  13. #
  14. #####################################################################################
  15. # COM Interop tests for IronPython
  16. from iptest.assert_util import skiptest
  17. skiptest("win32", "silverlight")
  18. from iptest.cominterop_util import *
  19. from System import Type, Activator, Guid
  20. import clr
  21. dlrcomlib_guid = Guid("a50d2773-4b1b-428a-b5b4-9300e1b50484")
  22. def test_load_typelib():
  23. for x in [dlrcomlib_guid, Activator.CreateInstance(Type.GetTypeFromProgID("DlrComLibrary.ParamsInRetval"))]:
  24. lib = clr.LoadTypeLibrary(x)
  25. #ComTypeLibInfo Members
  26. AreEqual(lib.Guid, dlrcomlib_guid)
  27. AreEqual(lib.Name, "DlrComLibraryLib")
  28. AreEqual(lib.VersionMajor, 1)
  29. AreEqual(lib.VersionMinor, 0)
  30. Assert("DlrComLibraryLib" in dir(lib))
  31. #ComTypeLibDesc Members
  32. dlrComLib = lib.DlrComLibraryLib
  33. Assert("DlrComServer" in dir(lib.DlrComLibraryLib))
  34. Assert("IDlrComServer" not in dir(lib.DlrComLibraryLib))
  35. #ComTypeClassDesc Members
  36. dlrComServer = lib.DlrComLibraryLib.DlrComServer
  37. AreEqual(dlrComServer.TypeLib, lib.DlrComLibraryLib)
  38. AreEqual(dlrComServer.TypeName, "DlrComServer")
  39. AreEqual(str(dlrComServer.Kind), "Class")
  40. #Create an instance of the class and access members.
  41. obj = dlrComServer.CreateInstance()
  42. Assert("__ComObject" in str(obj.__class__))
  43. AreEqual(12345, obj.SumArgs(1,2,3,4,5))
  44. #Complete the circle back to the lib
  45. AreEqual(clr.LoadTypeLibrary(obj).Guid, lib.Guid)
  46. def test_import_typelib():
  47. for x in [dlrcomlib_guid, Activator.CreateInstance(Type.GetTypeFromProgID("DlrComLibrary.ParamsInRetval"))]:
  48. clr.AddReferenceToTypeLibrary(x)
  49. try:
  50. DlrComLibrary.__class__
  51. except NameError: pass
  52. else: Fail("Namespace already exists")
  53. import DlrComLibraryLib
  54. from DlrComLibraryLib import DlrComServer
  55. Assert("DlrComServer" in dir(DlrComLibraryLib))
  56. #Create an instance of the class and access members.
  57. obj = DlrComServer.CreateInstance()
  58. Assert("__ComObject" in str(obj.__class__))
  59. AreEqual(12345, obj.SumArgs(1,2,3,4,5))
  60. del DlrComServer
  61. del DlrComLibraryLib
  62. def test_negative():
  63. AssertError(ValueError, clr.LoadTypeLibrary, "DlrComLibrary.DlrComServer")
  64. AssertError(ValueError, clr.LoadTypeLibrary, 42)
  65. AssertError(EnvironmentError, clr.LoadTypeLibrary, Guid.NewGuid())
  66. run_test(__name__)