ChangeLog 7.1 KB

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