aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/Base64Test.java
blob: 976cbd64b231b63402c34f49ada8bf49e07f4888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (C) 2010, Google Inc. and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.util;

import static org.eclipse.jgit.util.Base64.decode;
import static org.eclipse.jgit.util.Base64.encodeBytes;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import org.eclipse.jgit.junit.JGitTestUtil;
import org.eclipse.jgit.lib.Constants;
import org.junit.Test;

public class Base64Test {
	@Test
	public void testEncode() {
		assertEquals("aGkK", encodeBytes(b("hi\n")));
		assertEquals("AAECDQoJcQ==", encodeBytes(b("\0\1\2\r\n\tq")));
	}

	@Test
	public void testDecode() {
		JGitTestUtil.assertEquals(b("hi\n"), decode("aGkK"));
		JGitTestUtil.assertEquals(b("\0\1\2\r\n\tq"), decode("AAECDQoJcQ=="));
		JGitTestUtil.assertEquals(b("\0\1\2\r\n\tq"),
				decode("A A E\tC D\rQ o\nJ c Q=="));
		JGitTestUtil.assertEquals(b("\u000EB"), decode("DkL="));
	}

	@Test
	public void testDecodeFail_NonBase64Character() {
		try {
			decode("! a bad base64 string !");
			fail("Accepted bad string in decode");
		} catch (IllegalArgumentException fail) {
			// Expected
		}
	}

	@Test
	public void testEncodeMatchesDecode() {
		String[] testStrings = { "", //
				"cow", //
				"a", //
				"a secret string", //
				"\0\1\2\r\n\t" //
		};
		for (String e : testStrings)
			JGitTestUtil.assertEquals(b(e), decode(encodeBytes(b(e))));
	}

	private static byte[] b(String str) {
		return Constants.encode(str);
	}

}