KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > ristretto > coder > Base64EncoderInputStreamTest


1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * The Original Code is Ristretto Mail API.
15  *
16  * The Initial Developers of the Original Code are
17  * Timo Stich and Frederik Dietz.
18  * Portions created by the Initial Developers are Copyright (C) 2004
19  * All Rights Reserved.
20  *
21  * Contributor(s):
22  *
23  * Alternatively, the contents of this file may be used under the terms of
24  * either the GNU General Public License Version 2 or later (the "GPL"), or
25  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
26  * in which case the provisions of the GPL or the LGPL are applicable instead
27  * of those above. If you wish to allow use of your version of this file only
28  * under the terms of either the GPL or the LGPL, and not to allow others to
29  * use your version of this file under the terms of the MPL, indicate your
30  * decision by deleting the provisions above and replace them with the notice
31  * and other provisions required by the GPL or the LGPL. If you do not delete
32  * the provisions above, a recipient may use your version of this file under
33  * the terms of any one of the MPL, the GPL or the LGPL.
34  *
35  * ***** END LICENSE BLOCK ***** */

36 package org.columba.ristretto.coder;
37
38 import java.io.ByteArrayInputStream JavaDoc;
39 import java.io.IOException JavaDoc;
40 import java.io.InputStream JavaDoc;
41 import java.nio.ByteBuffer JavaDoc;
42 import java.util.Random JavaDoc;
43
44 import junit.framework.TestCase;
45
46 public class Base64EncoderInputStreamTest extends TestCase {
47
48     /**
49      * Constructor for Base64EncoderInputStreamTest.
50      * @param arg0
51      */

52     public Base64EncoderInputStreamTest(String JavaDoc arg0) {
53         super(arg0);
54     }
55     
56     public void test0Pads() {
57         byte[] input = {(byte)0x0ff, (byte)0x080, (byte)0x040,(byte)0x0ff, (byte)0x080, (byte)0x040};
58         String JavaDoc result = "/4BA/4BA";
59         InputStream JavaDoc in = new Base64EncoderInputStream( new ByteArrayInputStream JavaDoc( input ));
60         int pos = 0;
61         
62         try {
63             int next = in.read();
64             while( next != -1 ) {
65                 assertTrue( next == result.charAt(pos++));
66                 next = in.read();
67             }
68         } catch (IOException JavaDoc e) {
69             e.printStackTrace();
70         }
71         
72         assertTrue( pos == 8);
73     }
74
75     public void test1Pads() {
76         byte[] input = {(byte)0x0ff, (byte)0x080, (byte)0x040,(byte)0x0ff, (byte)0x080 };
77         String JavaDoc result = "/4BA/4A=";
78         InputStream JavaDoc in = new Base64EncoderInputStream( new ByteArrayInputStream JavaDoc( input ));
79         int pos = 0;
80         
81         try {
82             int next = in.read();
83             while( next != -1 ) {
84                 assertTrue( next == result.charAt(pos++));
85                 next = in.read();
86             }
87         } catch (IOException JavaDoc e) {
88             e.printStackTrace();
89         }
90         
91         assertTrue( pos == 8);
92     }
93
94
95     public void test2Pads() {
96         byte[] input = {(byte)0x0ff, (byte)0x080, (byte)0x040,(byte)0x0ff };
97         String JavaDoc result = "/4BA/w==";
98         InputStream JavaDoc in = new Base64EncoderInputStream( new ByteArrayInputStream JavaDoc( input ));
99         int pos = 0;
100         
101         try {
102             int next = in.read();
103             while( next != -1 ) {
104                 assertTrue( next == result.charAt(pos++));
105                 next = in.read();
106             }
107         } catch (IOException JavaDoc e) {
108             e.printStackTrace();
109         }
110         
111         assertTrue( pos == 8);
112     }
113     
114     public void testEncodeDecode() {
115         Random JavaDoc random = new Random JavaDoc();
116         byte[] testInput = new byte[(int) (random.nextFloat() * 1024)];
117         random.nextBytes(testInput);
118         StringBuffer JavaDoc encoded = new StringBuffer JavaDoc();
119         InputStream JavaDoc in = new Base64EncoderInputStream( new ByteArrayInputStream JavaDoc(testInput));
120         try {
121             int next = in.read();
122             while( next != -1 ) {
123                 encoded.append((char) next);
124                 next = in.read();
125             }
126         } catch (IOException JavaDoc e) {
127             e.printStackTrace();
128         }
129         System.out.println( encoded );
130         ByteBuffer JavaDoc decoded = Base64.decode(encoded);
131         for( int i=0; i<testInput.length; i++) {
132             int next = decoded.get();
133             if(testInput[i] != next ) {
134                 System.out.println( i );
135             }
136             assertTrue(testInput[i] == next);
137         }
138     }
139 }
140
Popular Tags