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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/*
Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/C++ is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
MySQL Connectors. There are special exceptions to the terms and
conditions of the GPLv2 as it is applied to this software, see the
FLOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "BlobRegressionTest.h"
#include "../../common/file.h"
#include <sstream>
namespace testsuite
{
namespace regression
{
/**
* Dunno how this test should look like in C++
*
* @throws Exception
* ...
*/
/*
void BlobRegressionTest::testBug2670()
{
if (!isRunningOnJdk131()) {
try {
char blobData[32];
for (int i = 0; i < blobData.length; i++) {
blobData[i] = 1;
}
stmt->executeUpdate("DROP TABLE IF EXISTS testBug2670");
stmt->executeUpdate("CREATE TABLE testBug2670(blobField LONGBLOB)");
PreparedStatement pstmt-> conn->prepareStatement("INSERT INTO testBug2670 (blobField) VALUES (?)");
pstmt->setBytes(1, blobData);
pstmt->executeUpdate();
rs = stmt->executeQuery("SELECT blobField FROM testBug2670");
rs->next();
Blob blob = rs->getBlob(1);
blob.setBytes(4, new char { 2, 2, 2, 2 });
char newBlobData = blob.getBytes(1L, (int) blob.length());
assertTrue("Blob changed length",
blob.length() == blobData.length);
assertTrue(
"New data inserted wrongly",
((newBlobData[3] == 2) && (newBlobData[4] == 2)
&& (newBlobData[5] == 2) && (newBlobData[6] == 2)));
blob.setBytes(32, new char { 2, 2, 2, 2 });
assertTrue("Blob length should be 3 larger",
blob.length() == (blobData.length + 3));
} {
stmt->executeUpdate("DROP TABLE IF EXISTS testUpdateLongBlob");
}
}
}*/
/**
* @throws Exception
* ...
*/
void BlobRegressionTest::testUpdateLongBlobGT16M()
{
if ( this->versionMeetsMinimum(4, 0) )
{
int size18M= 18 * 1024 * 1024;
String blobData; // 18M blob
blobData.append( size18M, 'a' );
stmt->executeUpdate("DROP TABLE IF EXISTS testUpdateLongBlob");
stmt->executeUpdate("CREATE TABLE testUpdateLongBlob(blobField LONGBLOB)");
stmt->executeUpdate("INSERT INTO testUpdateLongBlob (blobField) VALUES (NULL)");
pstmt.reset( conn->prepareStatement("UPDATE testUpdateLongBlob SET blobField=?") );
pstmt->setString(1, blobData );
pstmt->execute();
stmt->executeUpdate("DROP TABLE IF EXISTS testUpdateLongBlob");
}
}
/**
*
* @throws Exception
*/
/* throws Exception */
/*
void BlobRegressionTest::testUpdatableBlobsWithCharsets()
{
char smallBlob[32];
for (char i = 0; i < sizeof(smallBlob); ++i)
{
smallBlob[i] = i;
}
stmt->executeUpdate("DROP TABLE IF EXISTS testUpdatableBlobsWithCharsets");
stmt->executeUpdate("CREATE TABLE testUpdatableBlobsWithCharsets(pk INT NOT NULL PRIMARY KEY, field1 BLOB)");
std::istringstream str( smallBlob );
PreparedStatement pstmt( conn->prepareStatement("INSERT INTO testUpdatableBlobsWithCharsets (pk, field1) VALUES (1, ?)") );
pstmt->setBlob( 1, & str );
pstmt->executeUpdate();
Statement updstmt( conn->createStatement() );
rs.reset( updstmt->executeQuery("SELECT pk, field1 FROM testUpdatableBlobsWithCharsets") );
rs->next();
MESSAGE( rs->getString(1) + "->" + rs->getString(2) );
for (char i = 0; i < sizeof( smallBlob ); ++i)
{
smallBlob[i] = i + 32;
}
//we don't support that yet. so the whole test doesn't make sense either
/ *
rs->setBlob(2, std::istringstream(smallBlob), sizeof(smallBlob) );
rs->updateRow();* /
ResultSet newRs( stmt->executeQuery("SELECT field1 FROM testUpdatableBlobsWithCharsets") );
newRs->next();
String updatedBlob( newRs->getString(1) );
for (byte i = 0; i < sizeof(smallBlob); i++) {
char origValue = smallBlob[i];
char newValue = updatedBlob[i];
assertTrue(String( "Original byte at position " ) + i + ", " + origValue
+ " != new value, " + newValue, origValue == newValue);
}
stmt->executeUpdate("DROP TABLE IF EXISTS testUpdatableBlobsWithCharsets");
}*/
/* throws Exception */
void BlobRegressionTest::testBug5490()
{
stmt->executeUpdate("DROP TABLE IF EXISTS testBug5490");
stmt->executeUpdate("CREATE TABLE testBug5490"\
"(pk INT NOT NULL PRIMARY KEY, blobField BLOB)");
String sql = "insert into testBug5490 values(?,?)";
int blobFileSize = 871;
FileUtils::ccppFile blobFile("Bug5490");
if( ! blobFile.exists() || blobFile.getSize() != blobFileSize )
{
blobFile.deleteFile();
std::fstream & fos= blobFile.getStream();
fos.seekp( blobFileSize - 1, std::ios_base::beg );
fos << 'a';
fos.flush();
blobFile.close();
}
pstmt.reset( conn->prepareStatement(sql) );
pstmt->setInt(1, 2);
pstmt->setBlob(2, & blobFile.getStream() );
pstmt->execute();
blobFile.close();
rs.reset( stmt->executeQuery("SELECT blobField FROM testBug5490") );
rs->next();
String returned = rs->getString( 1 );
ASSERT_EQUALS( blobFileSize, static_cast<int>(returned.length()) );
stmt->executeUpdate("DROP TABLE IF EXISTS testBug5490");
if ( blobFile.exists() )
blobFile.deleteFile();
}
/**
* Tests BUG#8096 where emulated locators corrupt binary data when using
* server-side prepared statements.
*
* @throws Exception
* if the test fails.
*/
/* looks like doesn't make much sense here either */
void BlobRegressionTest::testBug8096()
{
const int dataSize = 256;
Properties props ;
props["emulateLocators"]= "true";
Connection locatorConn( getConnectionWithProps(props) );
stmt.reset( locatorConn->createStatement() );
selectDb( stmt );
String createTable( "CREATE TABLE testBug8096 (ID VARCHAR(10) "\
"PRIMARY KEY, DATA LONGBLOB)" );
String select( "SELECT ID, 'DATA' AS BLOB_DATA FROM testBug8096 "\
"WHERE ID = ?" );
String insert( "INSERT INTO testBug8096 (ID, DATA) VALUES (?, '')" );
String id( "1" );
char testData[dataSize];
for ( unsigned int i= 0; i < sizeof( testData ); ++i)
{
testData[i]= static_cast<char>( i & 0xff );
}
stmt->executeUpdate("DROP TABLE IF EXISTS testBug8096");
stmt->executeUpdate(createTable);
pstmt.reset( locatorConn->prepareStatement( insert ) );
pstmt->setString(1, id);
pstmt->execute();
pstmt.reset( locatorConn->prepareStatement(select) );
pstmt->setString(1, id);
rs.reset( pstmt->executeQuery() );
if ( rs->next() )
{
std::istream * b = rs->getBlob("BLOB_DATA");
(void) b; // void is to trick the compiler into generating no warnings
//b.setBytes(1, testData);
}
pstmt.reset( locatorConn->prepareStatement(select) );
pstmt->setString(1, id);
rs.reset(pstmt->executeQuery());
String result;
if ( rs->next() )
{
result = rs->getString(1);
}
ASSERT( result.length() > 0 );
for (unsigned i = 0; i < result.length() && i < sizeof(testData); ++i)
{
if (result[i] != testData[i])
{
std::ostringstream s;
s << "At position "<< i << " test data: " << static_cast<int>(testData[i])
<< " result " << static_cast<int>(result[i]);
ASSERT_MESSAGE( testData[i] == result[i], s.str().c_str() );
}
}
stmt->executeUpdate("DROP TABLE IF EXISTS testBug8096");
}
/**
* Tests fix for BUG#9040 - PreparedStatement.addBatch() doesn't work with
* server-side prepared statements and streaming BINARY data.
*
* @throws Exception
* if the test fails.
*/
/* not relevant at the moment - no batches */
/*
void BlobRegressionTest::testBug9040()
{
stmt->executeUpdate("DROP TABLE IF EXISTS testBug9040");
stmt->executeUpdate("create table if not exists testBug9040 "
+ "(primary_key int not NULL primary key, "
+ "data mediumblob)");
pstmt-> conn->prepareStatement("replace into testBug9040 (primary_key, data) values(?,?)");
int primaryKey = 1;
char data[] = "First Row";
pstmt->setInt(1, primaryKey);
pstmt->setBinaryStream(2, new ByteArrayInputStream(data),
data.length);
pstmt->addBatch();
primaryKey = 2;
data = "Second Row".getBytes();
pstmt->setInt(1, primaryKey);
pstmt->setBinaryStream(2, new ByteArrayInputStream(data),
data.length);
pstmt->addBatch();
pstmt->executeBatch();
stmt->executeUpdate("DROP TABLE IF EXISTS testBug9040");
}
}*/
/* throws Exception */
void BlobRegressionTest::testBug10850()
{
String tableName = "testBug10850";
createTable(tableName, "(field1 TEXT)");
pstmt.reset( conn->prepareStatement(String( "INSERT INTO " ) +
tableName + " VALUES (?)") );
std::istringstream str("");
pstmt->setBlob(1, & str);
pstmt->executeUpdate();
ASSERT( getSingleIndexedValueWithQuery(1,
String( "SELECT LENGTH(field1) FROM " ) + tableName).toString() == "0");
stmt->executeUpdate(String( "TRUNCATE TABLE " ) + tableName);
pstmt->clearParameters();
std::istringstream str2;
pstmt->setBlob( 1, &str );
pstmt->executeUpdate();
ASSERT( getSingleIndexedValueWithQuery(1,
String( "SELECT LENGTH(field1) FROM " ) + tableName).toString() == "0" );
stmt->executeUpdate(String( "TRUNCATE TABLE " ) + tableName);
}
/* throws Exception */
/** Doesn't make much sense. As well as i'm not sure it's equivalenly translated*/
void BlobRegressionTest::testBug34677()
{
SKIP( "The test is wrong" );
createTable("testBug34677", "(field1 BLOB)");
stmt->executeUpdate("INSERT INTO testBug34677 VALUES ('abc')");
rs.reset( stmt->executeQuery("SELECT field1 FROM testBug34677") );
rs->next();
MESSAGE( rs->getString( 1 ) + "<- field1 in testBug34677" );
std::istream * blob = rs->getBlob(1);
blob->width(0L);
ASSERT_EQUALS(0, (int)blob->width());
char tmp;
if ( ! blob->read(&tmp,1).fail() )
{
TestsListener::errorsLog() << "read: " << tmp << static_cast<int>(tmp)
<< std::endl;
FAIL( "But probably that's ok - bad test likely" );
}
}
}
}
|