| /* |
| * 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 |
| * |
| * https://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 static org.junit.jupiter.api.Assertions.assertEquals; |
| import static org.junit.jupiter.api.Assertions.assertNull; |
| import static org.junit.jupiter.api.Assertions.assertThrows; |
| |
| import java.nio.charset.StandardCharsets; |
| import java.nio.charset.UnsupportedCharsetException; |
| |
| import org.apache.commons.codec.CharEncoding; |
| import org.apache.commons.codec.DecoderException; |
| import org.apache.commons.codec.EncoderException; |
| import org.junit.jupiter.api.Test; |
| |
| /** |
| * Quoted-printable codec test cases |
| */ |
| class QuotedPrintableCodecTest { |
| |
| 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 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 |
| void testBasicEncodeDecode() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "= Hello there =\r\n"; |
| final String encoded = qpcodec.encode(plain); |
| assertEquals("=3D Hello there =3D=0D=0A", encoded, "Basic quoted-printable encoding test"); |
| assertEquals(plain, qpcodec.decode(encoded), "Basic quoted-printable decoding test"); |
| } |
| |
| @Test |
| void testDecodeInvalid() { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| assertThrows(DecoderException.class, () -> qpcodec.decode("=")); |
| assertThrows(DecoderException.class, () -> qpcodec.decode("=A")); |
| assertThrows(DecoderException.class, () -> qpcodec.decode("=WW")); |
| } |
| |
| @Test |
| void testDecodeObjects() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "1+1 =3D 2"; |
| String decoded = (String) qpcodec.decode((Object) plain); |
| assertEquals("1+1 = 2", decoded, "Basic quoted-printable decoding test"); |
| |
| final byte[] plainBA = plain.getBytes(StandardCharsets.UTF_8); |
| final byte[] decodedBA = (byte[]) qpcodec.decode((Object) plainBA); |
| decoded = new String(decodedBA); |
| assertEquals("1+1 = 2", decoded, "Basic quoted-printable decoding test"); |
| |
| final Object result = qpcodec.decode((Object) null); |
| assertNull(result, "Decoding a null Object should return null"); |
| |
| assertThrows(DecoderException.class, () -> qpcodec.decode(Double.valueOf(3.0d)), "Trying to url encode a Double object should cause an exception."); |
| } |
| |
| @Test |
| void testDecodeStringWithNull() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String test = null; |
| final String result = qpcodec.decode(test, "charset"); |
| assertNull(result, "Result should be null"); |
| } |
| |
| @Test |
| void testDecodeWithNullArray() throws Exception { |
| final byte[] plain = null; |
| final byte[] result = QuotedPrintableCodec.decodeQuotedPrintable(plain); |
| assertNull(result, "Result should be null"); |
| } |
| |
| @Test |
| void testDefaultEncoding() throws Exception { |
| final String plain = "Hello there!"; |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec("UnicodeBig"); |
| qpcodec.encode(plain); // To work around a weird quirk in Java 1.2.2 |
| final String encoded1 = qpcodec.encode(plain, "UnicodeBig"); |
| final String encoded2 = qpcodec.encode(plain); |
| assertEquals(encoded1, encoded2); |
| } |
| |
| @Test |
| void testEncodeDecodeNull() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| assertNull(qpcodec.encode((String) null), "Null string quoted-printable encoding test"); |
| assertNull(qpcodec.decode((String) null), "Null string quoted-printable decoding test"); |
| } |
| |
| @Test |
| void testEncodeNull() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final byte[] plain = null; |
| final byte[] encoded = qpcodec.encode(plain); |
| assertNull(encoded, "Encoding a null string should return null"); |
| } |
| |
| @Test |
| void testEncodeObjects() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "1+1 = 2"; |
| String encoded = (String) qpcodec.encode((Object) plain); |
| |
| assertEquals("1+1 =3D 2", encoded, "Basic quoted-printable encoding test"); |
| final byte[] plainBA = plain.getBytes(StandardCharsets.UTF_8); |
| final byte[] encodedBA = (byte[]) qpcodec.encode((Object) plainBA); |
| encoded = new String(encodedBA); |
| assertEquals("1+1 =3D 2", encoded, "Basic quoted-printable encoding test"); |
| |
| final Object result = qpcodec.encode((Object) null); |
| assertNull(result, "Encoding a null Object should return null"); |
| |
| assertThrows(EncoderException.class, () -> qpcodec.encode(Double.valueOf(3.0d)), "Trying to url encode a Double object should cause an exception."); |
| } |
| |
| @Test |
| void testEncodeStringWithNull() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String test = null; |
| final String result = qpcodec.encode(test, "charset"); |
| assertNull(result, "Result should be null"); |
| } |
| |
| @Test |
| void testEncodeUrlWithNullBitSet() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "1+1 = 2"; |
| final String encoded = new String(QuotedPrintableCodec.encodeQuotedPrintable(null, plain.getBytes(StandardCharsets.UTF_8))); |
| assertEquals("1+1 =3D 2", encoded, "Basic quoted-printable encoding test"); |
| assertEquals(plain, qpcodec.decode(encoded), "Basic quoted-printable decoding test"); |
| } |
| |
| @Test |
| void testFinalBytes() throws Exception { |
| // whitespace, but does not need to be encoded |
| final String plain = "This is a example of a quoted=printable text file. There is no tt"; |
| final String expected = "This is a example of a quoted=3Dprintable text file. There is no tt"; |
| |
| assertEquals(expected, new QuotedPrintableCodec(true).encode(plain)); |
| } |
| |
| @Test |
| void testInvalidEncoding() { |
| assertThrows(UnsupportedCharsetException.class, () -> new QuotedPrintableCodec("NONSENSE")); |
| } |
| |
| @Test |
| void testSafeCharEncodeDecode() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "abc123_-.*~!@#$%^&()+{}\"\\;:`,/[]"; |
| final String encoded = qpcodec.encode(plain); |
| assertEquals(plain, encoded, "Safe chars quoted-printable encoding test"); |
| assertEquals(plain, qpcodec.decode(encoded), "Safe chars quoted-printable decoding test"); |
| } |
| |
| @Test |
| void testSkipNotEncodedCRLF() throws Exception { |
| final String qpdata = "CRLF in an\n encoded text should be=20=\r\n\rskipped in the\r decoding."; |
| final String expected = "CRLF in an encoded text should be skipped in the decoding."; |
| |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(true); |
| assertEquals(expected, qpcodec.decode(qpdata)); |
| |
| final String encoded = qpcodec.encode(expected); |
| assertEquals(expected, qpcodec.decode(encoded)); |
| } |
| |
| @Test |
| void testSoftLineBreakDecode() throws Exception { |
| final String qpdata = "If you believe that truth=3Dbeauty, then surely=20=\r\nmathematics is the most beautiful branch of philosophy."; |
| final String expected = "If you believe that truth=beauty, then surely mathematics is the most beautiful branch of philosophy."; |
| |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| assertEquals(expected, qpcodec.decode(qpdata)); |
| |
| final String encoded = qpcodec.encode(expected); |
| assertEquals(expected, qpcodec.decode(encoded)); |
| } |
| |
| @Test |
| void testSoftLineBreakEncode() throws Exception { |
| final String qpdata = "If you believe that truth=3Dbeauty, then surely mathematics is the most b=\r\neautiful branch of philosophy."; |
| final String expected = "If you believe that truth=beauty, then surely mathematics is the most beautiful branch of philosophy."; |
| |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(true); |
| assertEquals(qpdata, qpcodec.encode(expected)); |
| |
| final String decoded = qpcodec.decode(qpdata); |
| assertEquals(qpdata, qpcodec.encode(decoded)); |
| } |
| |
| @Test |
| void testTooShortByteArray() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(true); |
| assertNull(qpcodec.encode("AA"), "Result should be null."); |
| } |
| |
| @Test |
| void testTrailingSpecial() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(true); |
| |
| String plain = "This is a example of a quoted-printable text file. This might contain sp=cial chars."; |
| String expected = "This is a example of a quoted-printable text file. This might contain sp=3D=\r\ncial chars."; |
| assertEquals(expected, qpcodec.encode(plain)); |
| |
| plain = "This is a example of a quoted-printable text file. This might contain ta\tbs as well."; |
| expected = "This is a example of a quoted-printable text file. This might contain ta=09=\r\nbs as well."; |
| assertEquals(expected, qpcodec.encode(plain)); |
| } |
| |
| @Test |
| void testUltimateSoftBreak() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(true); |
| |
| String plain = "This is a example of a quoted-printable text file. There is no end to it\t"; |
| String expected = "This is a example of a quoted-printable text file. There is no end to i=\r\nt=09"; |
| |
| assertEquals(expected, qpcodec.encode(plain)); |
| |
| plain = "This is a example of a quoted-printable text file. There is no end to it "; |
| expected = "This is a example of a quoted-printable text file. There is no end to i=\r\nt=20"; |
| |
| assertEquals(expected, qpcodec.encode(plain)); |
| |
| // whitespace before soft break |
| plain = "This is a example of a quoted-printable text file. There is no end to "; |
| expected = "This is a example of a quoted-printable text file. There is no end to=20=\r\n =20"; |
| |
| assertEquals(expected, qpcodec.encode(plain)); |
| |
| // non-printable character before soft break |
| plain = "This is a example of a quoted-printable text file. There is no end to= "; |
| expected = "This is a example of a quoted-printable text file. There is no end to=3D=\r\n =20"; |
| |
| assertEquals(expected, qpcodec.encode(plain)); |
| } |
| |
| @Test |
| void testUnsafeEncodeDecode() throws Exception { |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| final String plain = "=\r\n"; |
| final String encoded = qpcodec.encode(plain); |
| assertEquals("=3D=0D=0A", encoded, "Unsafe chars quoted-printable encoding test"); |
| assertEquals(plain, qpcodec.decode(encoded), "Unsafe chars quoted-printable decoding test"); |
| } |
| |
| @Test |
| void testUTF8RoundTrip() throws Exception { |
| |
| final String ru_msg = constructString(RUSSIAN_STUFF_UNICODE); |
| final String ch_msg = constructString(SWISS_GERMAN_STUFF_UNICODE); |
| |
| final QuotedPrintableCodec qpcodec = new QuotedPrintableCodec(); |
| |
| assertEquals("=D0=92=D1=81=D0=B5=D0=BC_=D0=BF=D1=80=D0=B8=D0=B2=D0=B5=D1=82", qpcodec.encode(ru_msg, CharEncoding.UTF_8)); |
| assertEquals("Gr=C3=BCezi_z=C3=A4m=C3=A4", qpcodec.encode(ch_msg, CharEncoding.UTF_8)); |
| |
| assertEquals(ru_msg, qpcodec.decode(qpcodec.encode(ru_msg, CharEncoding.UTF_8), CharEncoding.UTF_8)); |
| assertEquals(ch_msg, qpcodec.decode(qpcodec.encode(ch_msg, CharEncoding.UTF_8), CharEncoding.UTF_8)); |
| } |
| } |