James Moger
2012-10-01 eb1405f736f2f98e14215774dd53eea9b9a77017
commit | author | age
143fc9 1 /*
JM 2  * Copyright 2011 gitblit.com.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.gitblit.tests;
17
7e8873 18 import static org.junit.Assert.assertEquals;
JM 19
20 import org.junit.Test;
143fc9 21
JM 22 import com.gitblit.utils.Base64;
23
7e8873 24 public class Base64Test {
143fc9 25
7e8873 26     @Test
143fc9 27     public void testBase64() {
7e8873 28         String source = "this is a test";
143fc9 29         String base64 = Base64.encodeBytes(source.getBytes());
JM 30         assertEquals("dGhpcyBpcyBhIHRlc3Q=", base64);
31         String decoded = new String(Base64.decode(base64));
32         assertEquals(source, decoded);
33     }
34 }