Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b0b6da4b7c60b162b722e57fe5fea6764e6b2f9 (plain) (blame)
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
/******************************************************************************
 *  Copyright (c) 2011 GitHub Inc.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  Contributors:
 *    Kevin Sawicki (GitHub Inc.) - initial API and implementation
 *****************************************************************************/
package org.eclipse.egit.github.core.tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;

import org.eclipse.egit.github.core.util.EncodingUtils;
import org.junit.Test;

/**
 * Unit tests of {@link EncodingUtils}
 */
public class EncodingUtilsTest {

	/**
	 * Test default constructor through anonymous sub-class
	 */
	@Test
	public void constructor() {
		assertNotNull(new EncodingUtils() {
		});
	}

	/**
	 * Encode and decode content
	 */
	@Test
	public void encodeDecode() {
		String test = "content";
		String encoded = EncodingUtils.toBase64(test.getBytes());
		assertNotNull(encoded);
		assertFalse(encoded.length() == 0);
		assertFalse(test.equals(encoded));
		byte[] decoded = EncodingUtils.fromBase64(new String(encoded));
		assertNotNull(decoded);
		assertFalse(decoded.length == 0);
		assertEquals(test, new String(decoded));
	}

}

Back to the top