ChangeLog 10 KB

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