ChangeLog 8.3 KB

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