ChangeLog 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. 2004-05-05 Atsushi Enomoto <[email protected]>
  2. * XmlDsigBase64Transform.cs : LoadInputAsXmlNodeList() is testable.
  3. * XmlDsigC14NTransformTest.cs : Ignore LoadInputAsXmlNodeList(); that
  4. test premises incorrect namespace handling.
  5. * XmlDsigXPathTransformTest.cs : Removed some FIXMEs (counting node
  6. will give more expected results),
  7. plus some noise on FunctionHereObsolete().
  8. 2004-03-26 Atsushi Enomoto <[email protected]>
  9. * Added XmlDsigEnvelopedSignatureTransformTest.cs.
  10. * SignedXmlTest.cs : Added some KeyInfo and error handling repro.
  11. 2004-03-24 Atsushi Enomoto <[email protected]>
  12. * ReferenceTest.cs : Test for keeping document object identity.
  13. * XmlDsigC14NTransformTest.cs : Fixed LoadInputAsXmlNodeList(). Here,
  14. passed XmlNodeList means filtered (e.g. XPath) nodes, which might
  15. contain parent and children as each node in the list.
  16. Added LoadInputAsXmlNodeList2(), which fails in the meantime.
  17. 2004-03-23 Atsushi Enomoto <[email protected]>
  18. * SignedInfoTest.cs : assure the owner document object equality /
  19. inequality with related to LoadXml() and setting properties.
  20. 2004-03-23 Atsushi Enomoto <[email protected]>
  21. * DataObjectTest.cs : assure that owner document object is different
  22. after setting properties.
  23. 2004-03-20 Sebastien Pouliot <[email protected]>
  24. * SignedXmlTest.cs: Renamed GetPublicKey to PublicGetPublicKey to
  25. remove warning.
  26. 2004-03-19 Sebastien Pouliot <[email protected]>
  27. * SignedXmlTest.cs: Completed unit tests as many methods were not
  28. tested at all previously.
  29. 2004-03-15 Sebastien Pouliot <[email protected]>
  30. * SignedXmlTest.cs: Added null test for LoadXml.
  31. 2004-03-14 Atsushi Enomoto <[email protected]>
  32. * XmlDsigXPathTransformTest.cs : added TransformSimple() and
  33. FunctionHere() [commented].
  34. 2004-03-13 Atsushi Enomoto <[email protected]>
  35. * XmlDsigC14NWithCommentsTransformTest,cs : world.txt causes FileShare
  36. Win32Error so it should be added only when it does not exist.
  37. * XmlDsigXsltTransformTest.cs : embedded stylesheet should have
  38. version attribute. EmbeddedStylesheet() should also load input doc.
  39. 2004-03-12 Sebastien Pouliot <[email protected]>
  40. * XmlDsigC14NTransformTest.cs: Fixed missing files error under MS.NET.
  41. * XmlDsigC14NWithCommentsTransformTest.cs: Fixed missing files error
  42. under MS.NET.
  43. 2004-03-11 Atsushi Enomoto <[email protected]>
  44. * XmlDsigC14NTransformTest.cs : Stream2String() should consider utf-8
  45. escaping (i.e. it must be the same as with-comments test).
  46. Enabled example6 (encoding test).
  47. * XmlDsigXsltTransformTest.cs :
  48. GetXslDoc() now works (xmlns for dsig was missing).
  49. Added EmptyXslt(), EmbeddedStylesheet() and InvalidXslt().
  50. Activated ignored LoadInputAsXXX() and Load2() by supplying xsl.
  51. 2004-03-04 Atsushi Enomoto <[email protected]>
  52. * SignatureTest.cs : added some malformed xml tests.
  53. 2004-02-14 Atsushi Enomoto <[email protected]>
  54. * XmlDsigC14NTransformTest.cs,
  55. XmlDsigC14NWithCommentsTransformTest.cs:
  56. uncommented some code blocks which should be tested.
  57. 2004-02-11 Sebastien Pouliot <[email protected]>
  58. * KeyInfoTest.cs: Corrected the xmlRSA XML string.
  59. * ReferenceTest.cs: Tests fixed if XML is different (but equivalent)
  60. to MS implementation.
  61. * SignatureTest.cs: Tests fixed if XML is different (but equivalent)
  62. to MS implementation.
  63. * XmlDsigBase64TransformTest.cs: New UnprotectedGetInnerXml class to get
  64. results from the protected GetInnerXml. No more convertion to arrays.
  65. * XmlDsigC14NTransformTest.cs: New UnprotectedGetInnerXml class to get
  66. results from the protected GetInnerXml. Fixed input/output typo. Tests
  67. fixed if XML is different (but equivalent) to MS implementation.
  68. * XmlDsigC14NWithCommentsTransformTest.cs: New UnprotectedGetInnerXml
  69. class to get results from the protected GetInnerXml. Fixed input/output
  70. typo.
  71. * XmlDsigXPathTransformTest.cs: New. Unit tests XmlDsigXPathTransform.
  72. * XmlDsigXsltTransformTest.cs: New UnprotectedGetInnerXml class to get
  73. results from the protected GetInnerXml. Fixed input/output typo.
  74. 2003-12-14 Sebastien Pouliot <[email protected]>
  75. * SignedXmlTest.cs: Added a new unit test to verify both bugs (no
  76. key assigned on verification and GetElementId) found when fixing
  77. #52084.
  78. 2003-07-28 Sebastien Pouliot <[email protected]>
  79. * XmlDsigC14NTransformTest.cs: Corrected test for .NET 1.1 (that was a
  80. bug in .NET 1.0). There are no more unit test failures on Windows.
  81. 2003-07-27 Sebastien Pouliot <[email protected]>
  82. * KeyInfoTest.cs: Added #if NET_1_0 for the RetrievalMethod bug.
  83. 2003-07-24 Sebastien Pouliot <[email protected]>
  84. * XmlDsigC14NTransformTest.cs: New tests from Aleksey Sanin.
  85. * XmlDsigC14NWithCommentsTransformTest.cs: New tests from
  86. Aleksey Sanin.
  87. 2003-06-02 Sebastien Pouliot <[email protected]>
  88. * KeyInfoRetrievalMethodTest.cs: Changed RetrievalElement to
  89. RetrievalMethod to match W3C specification and framework 1.1.
  90. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  91. * Tests inherits from Assertion and Assertion. prefix is removed
  92. 2003-03-03 Sebastien Pouliot <[email protected]>
  93. * XmlDsigBase64TransformTest.cs: Simplified some parts when fixing
  94. XPath test.
  95. 2003-03-02 Sebastien Pouliot <[email protected]>
  96. * KeyInfoNameTest.cs: Better naming.
  97. * KeyInfoRetrievalMethodTest.cs: Splitted a test.
  98. 2003-02-19 Sebastien Pouliot <[email protected]>
  99. * All: Updated tests for NUnit2. Some big tests where splited in
  100. smaller ones.
  101. * XmlDsigC14NTransformTest.cs: New, but almost empty, test suite.
  102. * XmlDsigC14NWithCommentsTransformTest.cs: New, but almost empty,
  103. test suite.
  104. 2002-11-28 Sebastien Pouliot <[email protected]>
  105. * AllTests.cs: Added missing test suites.
  106. 2002-11-20 Sebastien Pouliot <[email protected]>
  107. * AllTests.cs: New. Added suites for very listed files.
  108. * DataObjectTest.cs: New. Test suite for DataObject.
  109. * DSAKeyValueTest.cs: New. Test suite for DSAKeyValue.
  110. * KeyInfoNameTest.cs: New. Test suite for KeyInfoName.
  111. * KeyInfoNodeTest.cs: New. Test suite for KeyInfoNode.
  112. * KeyInfoRetrievalMethodTest.cs: New. Test suite for DSAKeyValue.
  113. * KeyInfoTest.cs: New. Test suite for KeyInfo.
  114. * KeyInfoX509DataTest.cs: New. Test suite for KeyInfoX509Data.
  115. * ReferenceTest.cs: New. Incomplete test suite for Reference.
  116. * RSAKeyValueTest.cs: New. Test suite for RSAKeyValue.
  117. * SignatureTest.cs: New. Partial test suite for Signature.
  118. * SignedInfoTest.cs: New. Partial test suite for SignedInfo.
  119. * SignedXmlTest.cs: New. Partial test suite for SignedXml.
  120. * TransformChainTest.cs: New. Test suite for TransformChain.
  121. * XmlDsigBase64TransformTest.cs: New. Partial test suite for
  122. XmlDsigBase64Transform
  123. * XmlDsigXsltTransformTest.cs: New. Partial test suite for
  124. XmlDsigXsltTransform.