Skip to content
Snippets Groups Projects
Commit cea4d975 authored by srosse's avatar srosse
Browse files

OO-3712: update XStream to version 14.11.1

parent 151a0e84
No related branches found
No related tags found
No related merge requests found
...@@ -2328,7 +2328,7 @@ ...@@ -2328,7 +2328,7 @@
<dependency> <dependency>
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId> <artifactId>xstream</artifactId>
<version>1.4.10</version> <version>1.4.11.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>xerces</groupId> <groupId>xerces</groupId>
......
...@@ -211,7 +211,7 @@ public class StringHelper { ...@@ -211,7 +211,7 @@ public class StringHelper {
* @return The encoded string * @return The encoded string
*/ */
public static String encodeBase64(String unencoded) { public static String encodeBase64(String unencoded) {
return new Base64Encoder().encode(unencoded.getBytes()); return new Base64Encoder(true).encode(unencoded.getBytes());
} }
/** /**
...@@ -221,7 +221,7 @@ public class StringHelper { ...@@ -221,7 +221,7 @@ public class StringHelper {
* @return The encoded string * @return The encoded string
*/ */
public static String encodeBase64(byte[] unencoded) { public static String encodeBase64(byte[] unencoded) {
return new Base64Encoder().encode(unencoded); return new Base64Encoder(true).encode(unencoded);
} }
/** /**
...@@ -231,7 +231,7 @@ public class StringHelper { ...@@ -231,7 +231,7 @@ public class StringHelper {
* @return The decoded string * @return The decoded string
*/ */
public static String decodeBase64(String encoded) { public static String decodeBase64(String encoded) {
byte[] decoded = new Base64Encoder().decode(encoded); byte[] decoded = new Base64Encoder(true).decode(encoded);
return new String(decoded); return new String(decoded);
} }
......
...@@ -43,7 +43,7 @@ public class StringHelperTest { ...@@ -43,7 +43,7 @@ public class StringHelperTest {
public void base64() throws Exception { public void base64() throws Exception {
String str = "this a super secret string avec un \u00E9 et encore quelques charact\u00E8res kanji \u30b0."; String str = "this a super secret string avec un \u00E9 et encore quelques charact\u00E8res kanji \u30b0.";
String xstream64 = new com.thoughtworks.xstream.core.util.Base64Encoder().encode(str.getBytes()); String xstream64 = new com.thoughtworks.xstream.core.util.Base64Encoder(true).encode(str.getBytes());
String infinispan64 = org.infinispan.commons.util.Base64.encodeBytes(str.getBytes()); String infinispan64 = org.infinispan.commons.util.Base64.encodeBytes(str.getBytes());
String olat64 = StringHelper.encodeBase64(str); String olat64 = StringHelper.encodeBase64(str);
String olatBytes64 = StringHelper.encodeBase64(str.getBytes()); String olatBytes64 = StringHelper.encodeBase64(str.getBytes());
...@@ -54,15 +54,15 @@ public class StringHelperTest { ...@@ -54,15 +54,15 @@ public class StringHelperTest {
//decode with the same coder //decode with the same coder
Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(infinispan64))); Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(infinispan64)));
Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder().decode(xstream64))); Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder(true).decode(xstream64)));
Assert.assertEquals(str, StringHelper.decodeBase64(olat64)); Assert.assertEquals(str, StringHelper.decodeBase64(olat64));
Assert.assertEquals(str, StringHelper.decodeBase64(olatBytes64)); Assert.assertEquals(str, StringHelper.decodeBase64(olatBytes64));
//decode with an other decoder //decode with an other decoder
Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(olat64))); Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(olat64)));
Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(olatBytes64))); Assert.assertEquals(str, new String(org.infinispan.commons.util.Base64.decode(olatBytes64)));
Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder().decode(olat64))); Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder(true).decode(olat64)));
Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder().decode(olatBytes64))); Assert.assertEquals(str, new String(new com.thoughtworks.xstream.core.util.Base64Encoder(true).decode(olatBytes64)));
Assert.assertEquals(str, StringHelper.decodeBase64(infinispan64)); Assert.assertEquals(str, StringHelper.decodeBase64(infinispan64));
Assert.assertEquals(str, StringHelper.decodeBase64(xstream64)); Assert.assertEquals(str, StringHelper.decodeBase64(xstream64));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment