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
|
/*
* Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
*
* 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
*/
#ifndef _WIN32
#include <sstream>
#endif
#include "sqlide/recordset_cdbc_storage.h"
#include "sqlide/recordset_be.h"
#include "connection_helpers.h"
#include "cppdbc.h"
#include "wb_helpers.h"
BEGIN_TEST_DATA_CLASS(recordset)
public:
WBTester wbt;
sql::Dbc_connection_handler::Ref dbc_conn;
END_TEST_DATA_CLASS
TEST_MODULE(recordset, "Recordset");
static void dummy()
{
}
TEST_FUNCTION(1)
{
populate_grt(wbt.grt, wbt);
sql::DriverManager *dbc_drv_man = sql::DriverManager::getDriverManager();
sql::Authentication::Ref auth;
dbc_conn = sql::Dbc_connection_handler::Ref(new sql::Dbc_connection_handler());
dbc_conn->ref = dbc_drv_man->getConnection(wbt.get_connection_properties(), boost::bind(dummy));
ensure("connection", dbc_conn->ref.get() != 0);
}
static base::RecMutexLock getAuxConn(sql::Dbc_connection_handler::Ref &internalConn, sql::Dbc_connection_handler::Ref &conn)
{
base::RecMutex _connLock;
base::RecMutexLock lock(_connLock, false);
conn = internalConn;
return lock;
}
TEST_FUNCTION(2)
{
Recordset_cdbc_storage::Ref data_storage(Recordset_cdbc_storage::create(wbt.wb->get_grt_manager()));
data_storage->setUserConnectionGetter(boost::bind(&getAuxConn, dbc_conn, _1));
Recordset::Ref rs = Recordset::create(wbt.wb->get_grt_manager());
rs->data_storage(data_storage);
boost::shared_ptr<sql::Statement> dbc_statement(dbc_conn->ref->createStatement());
dbc_statement->execute("select convert('', binary), convert(NULL, binary)");
boost::shared_ptr<sql::ResultSet> rset(dbc_statement->getResultSet());
data_storage->dbc_resultset(rset);
rs->reset(true);
ensure("empty blob string is not NULL", !rs->is_field_null(0, 0));
ensure("NULL blob is NULL", rs->is_field_null(0, 1));
}
END_TESTS
|