3 changed files with 62 additions and 9 deletions
@ -0,0 +1,49 @@
@@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright 2002-2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.util; |
||||
|
||||
import java.io.UnsupportedEncodingException; |
||||
|
||||
import org.junit.Test; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
/** |
||||
* @author Juergen Hoeller |
||||
*/ |
||||
public class Base64UtilsTests { |
||||
|
||||
@Test |
||||
public void jdk8VsCommonsCodec() throws UnsupportedEncodingException { |
||||
Base64Utils.Base64Delegate jdkDelegate = new Base64Utils.JdkBase64Delegate(); |
||||
Base64Utils.Base64Delegate commonsDelegate = new Base64Utils.CommonsCodecBase64Delegate(); |
||||
|
||||
byte[] bytes = new byte[] |
||||
{-0x4f, 0xa, -0x73, -0x4f, 0x64, -0x20, 0x75, 0x41, 0x5, -0x49, -0x57, -0x65, -0x19, 0x2e, 0x3f, -0x1b}; |
||||
assertArrayEquals(jdkDelegate.encode(bytes), commonsDelegate.encode(bytes)); |
||||
|
||||
bytes = "Hello World".getBytes("UTF-8"); |
||||
assertArrayEquals(jdkDelegate.encode(bytes), commonsDelegate.encode(bytes)); |
||||
|
||||
bytes = "Hello World\r\nSecond Line".getBytes("UTF-8"); |
||||
assertArrayEquals(jdkDelegate.encode(bytes), commonsDelegate.encode(bytes)); |
||||
|
||||
bytes = "Hello World\r\nSecond Line\r\n".getBytes("UTF-8"); |
||||
assertArrayEquals(jdkDelegate.encode(bytes), commonsDelegate.encode(bytes)); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue