You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by ra...@apache.org on 2004/09/20 23:24:14 UTC

cvs commit: xml-security/src_unitTests/org/apache/xml/security/test/transforms/implementations TransformBase64DecodeTest.java

raul        2004/09/20 14:24:13

  Modified:    src_unitTests/org/apache/xml/security/test/signature
                        XMLSignatureInputTest.java
               src_unitTests/org/apache/xml/security/test/c14n/implementations
                        ExclusiveC14NInterop.java
                        Canonicalizer20010315Test.java C14NInteropTest.java
               src_unitTests/org/apache/xml/security/test/transforms/implementations
                        TransformBase64DecodeTest.java
  Log:
  removed call to circumventBug2650 as is no need anymore.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-security/src_unitTests/org/apache/xml/security/test/signature/XMLSignatureInputTest.java
  
  Index: XMLSignatureInputTest.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/signature/XMLSignatureInputTest.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- XMLSignatureInputTest.java	8 Feb 2004 06:08:22 -0000	1.13
  +++ XMLSignatureInputTest.java	20 Sep 2004 21:24:13 -0000	1.14
  @@ -228,7 +228,7 @@
         String s1 =
            "<!--Small Comment Test--><RootElement><Element1/><Element2/><Element3>Text in Element3</Element3></RootElement>";
   
  -      XMLUtils.circumventBug2650(doc);
  +      //XMLUtils.circumventBug2650(doc);
   
         CachedXPathAPI cXPathAPI = new CachedXPathAPI();
         NodeList nl = cXPathAPI.selectNodeList(doc,
  
  
  
  1.13      +1 -1      xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/ExclusiveC14NInterop.java
  
  Index: ExclusiveC14NInterop.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/ExclusiveC14NInterop.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ExclusiveC14NInterop.java	12 Jul 2004 14:59:31 -0000	1.12
  +++ ExclusiveC14NInterop.java	20 Sep 2004 21:24:13 -0000	1.13
  @@ -159,7 +159,7 @@
         org.w3c.dom.Document doc = db.parse(f);
         long start = System.currentTimeMillis();
   
  -      XMLUtils.circumventBug2650(doc);
  +      //XMLUtils.circumventBug2650(doc);
   
         long end = System.currentTimeMillis();
   
  
  
  
  1.20      +1 -1      xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/Canonicalizer20010315Test.java
  
  Index: Canonicalizer20010315Test.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/Canonicalizer20010315Test.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Canonicalizer20010315Test.java	8 Feb 2004 06:08:22 -0000	1.19
  +++ Canonicalizer20010315Test.java	20 Sep 2004 21:24:13 -0000	1.20
  @@ -1085,7 +1085,7 @@
            Canonicalizer.getInstance(Canonicalizer.ALGO_ID_C14N_OMIT_COMMENTS);
         CachedXPathAPI xpathAPI = new CachedXPathAPI();
   
  -      XMLUtils.circumventBug2650(doc);
  +      //XMLUtils.circumventBug2650(doc);
   
         NodeList nodes =
            xpathAPI.selectNodeList(doc, "(//*[local-name()='included'] | //@*[parent::node()[local-name()='included']])");
  
  
  
  1.4       +1 -1      xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/C14NInteropTest.java
  
  Index: C14NInteropTest.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/c14n/implementations/C14NInteropTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- C14NInteropTest.java	12 Jul 2004 14:59:31 -0000	1.3
  +++ C14NInteropTest.java	20 Sep 2004 21:24:13 -0000	1.4
  @@ -172,7 +172,7 @@
         org.w3c.dom.Document doc = db.parse(f);
         long start = System.currentTimeMillis();
   
  -      XMLUtils.circumventBug2650(doc);
  +      //XMLUtils.circumventBug2650(doc);
   
         long end = System.currentTimeMillis();
   
  
  
  
  1.9       +1 -1      xml-security/src_unitTests/org/apache/xml/security/test/transforms/implementations/TransformBase64DecodeTest.java
  
  Index: TransformBase64DecodeTest.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/transforms/implementations/TransformBase64DecodeTest.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- TransformBase64DecodeTest.java	8 Feb 2004 06:08:22 -0000	1.8
  +++ TransformBase64DecodeTest.java	20 Sep 2004 21:24:13 -0000	1.9
  @@ -231,7 +231,7 @@
            .IgnoreAllErrorHandler());
   
         Document doc = db.parse(new ByteArrayInputStream(input.getBytes()));
  -      XMLUtils.circumventBug2650(doc);
  +      //XMLUtils.circumventBug2650(doc);
         Element nscontext = XMLUtils.createDSctx(doc, "ds", Constants.SignatureSpecNS);
   
         Node base64Node = XPathAPI.selectSingleNode(doc, "//ds:Base64", nscontext);