ChangeLog 7.5 KB

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