blob: 08bbf222a8208e6fc6bd342050f628657bacbd8a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.commons.codec.net;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import org.apache.commons.codec.CharEncoding;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.EncoderException;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
* URL codec test cases
*
*/
public class URLCodecTest {
static final int SWISS_GERMAN_STUFF_UNICODE [] = {
0x47, 0x72, 0xFC, 0x65, 0x7A, 0x69, 0x5F, 0x7A, 0xE4, 0x6D, 0xE4
};
static final int RUSSIAN_STUFF_UNICODE [] = {
0x412, 0x441, 0x435, 0x43C, 0x5F, 0x43F, 0x440, 0x438,
0x432, 0x435, 0x442
};
private void validateState(final URLCodec urlCodec) {
// no tests for now.
}
private String constructString(final int [] unicodeChars) {
final StringBuilder buffer = new StringBuilder();
if (unicodeChars != null) {
for (final int unicodeChar : unicodeChars) {
buffer.append((char)unicodeChar);
}
}
return buffer.toString();
}
@Test
public void testUTF8RoundTrip() throws Exception {
final String ru_msg = constructString(RUSSIAN_STUFF_UNICODE);
final String ch_msg = constructString(SWISS_GERMAN_STUFF_UNICODE);
final URLCodec urlCodec = new URLCodec();
this.validateState(urlCodec);
assertEquals(
"%D0%92%D1%81%D0%B5%D0%BC_%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82",
urlCodec.encode(ru_msg, CharEncoding.UTF_8)
);
assertEquals("Gr%C3%BCezi_z%C3%A4m%C3%A4", urlCodec.encode(ch_msg, CharEncoding.UTF_8));
assertEquals(ru_msg, urlCodec.decode(urlCodec.encode(ru_msg, CharEncoding.UTF_8), CharEncoding.UTF_8));
assertEquals(ch_msg, urlCodec.decode(urlCodec.encode(ch_msg, CharEncoding.UTF_8), CharEncoding.UTF_8));
this.validateState(urlCodec);
}
@Test
public void testBasicEncodeDecode() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "Hello there!";
final String encoded = urlCodec.encode(plain);
assertEquals("Hello+there%21", encoded, "Basic URL encoding test");
assertEquals(plain, urlCodec.decode(encoded), "Basic URL decoding test");
this.validateState(urlCodec);
}
@Test
public void testSafeCharEncodeDecode() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "abc123_-.*";
final String encoded = urlCodec.encode(plain);
assertEquals(plain, encoded, "Safe chars URL encoding test");
assertEquals(plain, urlCodec.decode(encoded), "Safe chars URL decoding test");
this.validateState(urlCodec);
}
@Test
public void testUnsafeEncodeDecode() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "~!@#$%^&()+{}\"\\;:`,/[]";
final String encoded = urlCodec.encode(plain);
assertEquals("%7E%21%40%23%24%25%5E%26%28%29%2B%7B%7D%22%5C%3B%3A%60%2C%2F%5B%5D", encoded, "Unsafe chars URL encoding test");
assertEquals(plain, urlCodec.decode(encoded), "Unsafe chars URL decoding test");
this.validateState(urlCodec);
}
@Test
public void testEncodeDecodeNull() throws Exception {
final URLCodec urlCodec = new URLCodec();
assertNull(urlCodec.encode((String)null), "Null string URL encoding test");
assertNull(urlCodec.decode((String)null), "Null string URL decoding test");
this.validateState(urlCodec);
}
@Test
public void testDecodeInvalid() throws Exception {
final URLCodec urlCodec = new URLCodec();
assertThrows(DecoderException.class, () -> urlCodec.decode("%"));
assertThrows(DecoderException.class, () -> urlCodec.decode("%A"));
// Bad 1st char after %
assertThrows(DecoderException.class, () -> urlCodec.decode("%WW"));
// Bad 2nd char after %
assertThrows(DecoderException.class, () -> urlCodec.decode("%0W"));
this.validateState(urlCodec);
}
@Test
public void testDecodeInvalidContent() throws UnsupportedEncodingException, DecoderException {
final String ch_msg = constructString(SWISS_GERMAN_STUFF_UNICODE);
final URLCodec urlCodec = new URLCodec();
final byte[] input = ch_msg.getBytes(StandardCharsets.ISO_8859_1);
final byte[] output = urlCodec.decode(input);
assertEquals(input.length, output.length);
for (int i = 0; i < input.length; i++) {
assertEquals(input[i], output[i]);
}
this.validateState(urlCodec);
}
@Test
public void testEncodeNull() throws Exception {
final URLCodec urlCodec = new URLCodec();
final byte[] plain = null;
final byte[] encoded = urlCodec.encode(plain);
assertNull(encoded, "Encoding a null string should return null");
this.validateState(urlCodec);
}
@Test
public void testEncodeUrlWithNullBitSet() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "Hello there!";
final String encoded = new String( URLCodec.encodeUrl(null, plain.getBytes(StandardCharsets.UTF_8)));
assertEquals("Hello+there%21", encoded, "Basic URL encoding test");
assertEquals(plain, urlCodec.decode(encoded), "Basic URL decoding test");
this.validateState(urlCodec);
}
@Test
public void testDecodeWithNullArray() throws Exception {
final byte[] plain = null;
final byte[] result = URLCodec.decodeUrl( plain );
assertNull(result, "Result should be null");
}
@Test
public void testEncodeStringWithNull() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String test = null;
final String result = urlCodec.encode( test, "charset" );
assertNull(result, "Result should be null");
}
@Test
public void testDecodeStringWithNull() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String test = null;
final String result = urlCodec.decode( test, "charset" );
assertNull(result, "Result should be null");
}
@Test
public void testEncodeObjects() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "Hello there!";
String encoded = (String) urlCodec.encode((Object) plain);
assertEquals("Hello+there%21", encoded, "Basic URL encoding test");
final byte[] plainBA = plain.getBytes(StandardCharsets.UTF_8);
final byte[] encodedBA = (byte[]) urlCodec.encode((Object) plainBA);
encoded = new String(encodedBA);
assertEquals("Hello+there%21", encoded, "Basic URL encoding test");
final Object result = urlCodec.encode((Object) null);
assertNull(result, "Encoding a null Object should return null");
assertThrows(EncoderException.class, () -> urlCodec.encode(Double.valueOf(3.0d)),
"Trying to url encode a Double object should cause an exception.");
this.validateState(urlCodec);
}
@Test
public void testInvalidEncoding() {
final URLCodec urlCodec = new URLCodec("NONSENSE");
final String plain = "Hello there!";
assertThrows(EncoderException.class, () -> urlCodec.encode(plain), "We set the encoding to a bogus NONSENSE value");
assertThrows(DecoderException.class, () -> urlCodec.decode(plain), "We set the encoding to a bogus NONSENSE value");
this.validateState(urlCodec);
}
@Test
public void testDecodeObjects() throws Exception {
final URLCodec urlCodec = new URLCodec();
final String plain = "Hello+there%21";
String decoded = (String) urlCodec.decode((Object) plain);
assertEquals("Hello there!", decoded, "Basic URL decoding test");
final byte[] plainBA = plain.getBytes(StandardCharsets.UTF_8);
final byte[] decodedBA = (byte[]) urlCodec.decode((Object) plainBA);
decoded = new String(decodedBA);
assertEquals("Hello there!", decoded, "Basic URL decoding test");
final Object result = urlCodec.decode((Object) null);
assertNull(result, "Decoding a null Object should return null");
assertThrows(DecoderException.class, () -> urlCodec.decode(Double.valueOf(3.0d)),
"Trying to url encode a Double object should cause an exception.");
this.validateState(urlCodec);
}
@Test
public void testDefaultEncoding() throws Exception {
final String plain = "Hello there!";
final URLCodec urlCodec = new URLCodec("UnicodeBig");
urlCodec.encode(plain); // To work around a weird quirk in Java 1.2.2
final String encoded1 = urlCodec.encode(plain, "UnicodeBig");
final String encoded2 = urlCodec.encode(plain);
assertEquals(encoded1, encoded2);
this.validateState(urlCodec);
}
}