1561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes/*
2561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  Licensed to the Apache Software Foundation (ASF) under one or more
3561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  contributor license agreements.  See the NOTICE file distributed with
4561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  this work for additional information regarding copyright ownership.
5561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  The ASF licenses this file to You under the Apache License, Version 2.0
6561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  (the "License"); you may not use this file except in compliance with
7561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  the License.  You may obtain a copy of the License at
8561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *
9561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *     http://www.apache.org/licenses/LICENSE-2.0
10561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *
11561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  Unless required by applicable law or agreed to in writing, software
12561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  distributed under the License is distributed on an "AS IS" BASIS,
13561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  See the License for the specific language governing permissions and
15561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *  limitations under the License.
16561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes */
17561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
18561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughespackage org.apache.harmony.crypto.tests.javax.crypto;
19561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
20561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.io.BufferedInputStream;
21561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.io.ByteArrayInputStream;
22561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.io.InputStream;
23561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
24561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport junit.framework.TestCase;
25561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
26561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport javax.crypto.Cipher;
27561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport javax.crypto.CipherInputStream;
28561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport javax.crypto.NullCipher;
29561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
30561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughespublic class CipherInputStreamTest extends TestCase {
31561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
32561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    /**
33561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes     * @tests javax.crypto.CipherInputStream#read(byte[] b, int off, int len)
34561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes     */
35561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void testReadBII() throws Exception {
36561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        // Regression for HARMONY-1080
37561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        CipherInputStream stream = new CipherInputStream(null, new NullCipher());
38561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        try {
39561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            stream.read(new byte[1], 1, 0);
40561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            fail("NullPointerException expected");
41561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        } catch (NullPointerException e) {
42561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            // expected
43561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        }
44561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
45561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
46561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    /**
47561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes     * @tests javax.crypto.CipherInputStream#close()
48561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes     */
49561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void testClose() throws Exception {
50561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        // Regression for HARMONY-1087
51561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        try {
52561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            new CipherInputStream(new ByteArrayInputStream(new byte[] { 1 }),
53561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes                    Cipher.getInstance("DES/CBC/PKCS5Padding")).close();
54561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            fail("IllegalStateException expected!");
55561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        } catch (IllegalStateException e) {
56561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            // expected
57561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        }
58561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        try {
59561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            new CipherInputStream(new BufferedInputStream((InputStream) null),
60561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes                    Cipher.getInstance("DES/CBC/PKCS5Padding")).close();
61561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            fail("IllegalStateException expected!");
62561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        } catch (IllegalStateException e) {
63561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            // expected
64561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        }
65561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
66561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
67561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes}
68