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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
Derby -
Class org.apache.derbyTesting.functionTests.tests.derbynet.OutBufferedStreamTest
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.derbynet;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.SystemPropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
*
* This program tests streaming a blob with derby.drda.streamOutBufferSize
* configuration.
*
* When derby.drda.streamOutBufferSize is configured,
* a buffer of configured size is placed at network server just before
* sending the stream to the client.
*
* Buffer size is 131072
*/
public class OutBufferedStreamTest extends BaseJDBCTestCase {
/**
* This constructor takes the name of the test.
*
* @param name
*/
public OutBufferedStreamTest(String name) {
super(name);
}
/**
* Returns the testsuite with a clientServerDecorator and a
* CleanDatabaseTestSetup with a table. Also sets system property
* derby.drda.streamOutBufferSize=131072.
*
* @return the testsuite
*/
public static Test suite() {
Properties properties = new Properties();
properties.setProperty("derby.drda.streamOutBufferSize", "131072");
Test suite = TestConfiguration.clientServerSuite (OutBufferedStreamTest.class);
suite = new SystemPropertyTestSetup(suite, properties);
return new CleanDatabaseTestSetup(suite) {
/**
* Creates the table used in the test case.
*
* @throws SQLException
*/
protected void decorateSQL(Statement s) throws SQLException {
/* Create a table */
s.execute("create table TEST_TABLE( TEST_COL blob( 65536 ))");
getConnection().commit();
}
};
}
/**
* This test inserts a blob of length 65536 containing the series 0-255
* 256 times and then reads the data back and checks that it is correct.
*/
public void testOutBufferStream() {
try {
PreparedStatement insertLobSt = prepareStatement(
"insert into TEST_TABLE( TEST_COL ) values(?)");
insertLobSt.setBinaryStream(1, createOriginalDataInputStream(65536),
65536);
insertLobSt.executeUpdate();
insertLobSt.close();
commit();
PreparedStatement st = prepareStatement(
"select TEST_COL from TEST_TABLE");
ResultSet rs = st.executeQuery();
rs.next();
InputStream is = rs.getBinaryStream(1);
int[][] expected = new int[256][256];
int[][] actual = new int[256][256];
//Build the expected array.
for (int i = 0; i < 256; i++) {
for (int j = 0; j < 256; j++) {
expected[i][j] = j;
}
}
//Read data from the lob and build array.
for (int i = 0; i < 256; i++) {
for (int j = 0; j < 256; j++) {
actual[i][j] = is.read();
}
}
//Assert that the arrays are equal.
for (int i = 0; i < 256; i++) {
for (int j = 0; j < 256; j++) {
assertEquals("Not correct: Line " + i + " pos " + j,
expected[i][j], actual[i][j]);
}
}
is.close();
rs.close();
st.close();
commit();
} catch (SQLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* Build a ByteArrayInputStream of the given length, with values
* from 0 t0 255 so they will fit into a byte.
*/
private static ByteArrayInputStream createOriginalDataInputStream(int length) {
byte[] originalValue = new byte[length];
for (int i = 0; i < originalValue.length; i++) {
originalValue[i] = (byte) (i % 256);
}
return new ByteArrayInputStream(originalValue);
}
}
|