Skip to content
Snippets Groups Projects
Commit 5c8c3353 authored by Steven Murray's avatar Steven Murray
Browse files

Added unit-test insert_with_bindString_invalid_bool_value in order to verify...

Added unit-test insert_with_bindString_invalid_bool_value in order to verify check constraints are working
parent e19d0c86
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "common/exception/DatabaseConstraintError.hpp"
#include "common/exception/Exception.hpp" #include "common/exception/Exception.hpp"
#include "common/make_unique.hpp" #include "common/make_unique.hpp"
#include "common/utils/utils.hpp" #include "common/utils/utils.hpp"
...@@ -60,11 +61,12 @@ std::string cta_rdbms_StmtTest::getCreateStmtTestTableSql() { ...@@ -60,11 +61,12 @@ std::string cta_rdbms_StmtTest::getCreateStmtTestTableSql() {
try { try {
std::string sql = std::string sql =
"CREATE TABLE STMT_TEST(" "CREATE TABLE STMT_TEST(" "\n"
"DOUBLE_COL FLOAT," " DOUBLE_COL FLOAT," "\n"
"UINT64_COL UINT64TYPE," " UINT64_COL UINT64TYPE," "\n"
"STRING_COL VARCHAR(100)," " STRING_COL VARCHAR(100)," "\n"
"BOOL_COL CHAR(1)" " BOOL_COL CHAR(1) DEFAULT '0'," "\n"
" CONSTRAINT BOOL_COL_BOOL_CK CHECK(BOOL_COL IN ('0', '1'))" "\n"
")"; ")";
switch(m_login.dbType) { switch(m_login.dbType) {
...@@ -383,4 +385,22 @@ TEST_P(cta_rdbms_StmtTest, insert_with_bindBool_false) { ...@@ -383,4 +385,22 @@ TEST_P(cta_rdbms_StmtTest, insert_with_bindBool_false) {
} }
} }
TEST_P(cta_rdbms_StmtTest, insert_with_bindString_invalid_bool_value) {
using namespace cta::rdbms;
const std::string insertValue = "2"; // null, "0" and "1" are valid values
// Insert a row into the test table
{
const char *const sql =
"INSERT INTO STMT_TEST("
"BOOL_COL) "
"VALUES("
":BOOL_COL)";
auto stmt = m_conn.createStmt(sql);
stmt.bindString(":BOOL_COL", insertValue);
ASSERT_THROW(stmt.executeNonQuery(), cta::exception::DatabaseConstraintError);
}
}
} // namespace unitTests } // namespace unitTests
...@@ -382,6 +382,9 @@ void MysqlStmt::executeNonQuery() { ...@@ -382,6 +382,9 @@ void MysqlStmt::executeNonQuery() {
case ER_DUP_ENTRY: case ER_DUP_ENTRY:
throw exception::DatabasePrimaryKeyError(std::string(__FUNCTION__) + " " + msg); throw exception::DatabasePrimaryKeyError(std::string(__FUNCTION__) + " " + msg);
break; break;
case 4025: // Newer MariaDB versions have ER_CONSTRAINT_FAILED = 4025
throw exception::DatabaseConstraintError(std::string(__FUNCTION__) + " " + msg);
break;
} }
throw exception::Exception(std::string(__FUNCTION__) + " " + msg); throw exception::Exception(std::string(__FUNCTION__) + " " + msg);
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "common/exception/DatabaseConstraintError.hpp"
#include "common/exception/Exception.hpp" #include "common/exception/Exception.hpp"
#include "common/exception/LostDatabaseConnection.hpp" #include "common/exception/LostDatabaseConnection.hpp"
#include "common/make_unique.hpp" #include "common/make_unique.hpp"
...@@ -267,7 +268,11 @@ void OcciStmt::executeNonQuery() { ...@@ -267,7 +268,11 @@ void OcciStmt::executeNonQuery() {
} }
throw exception::LostDatabaseConnection(msg.str()); throw exception::LostDatabaseConnection(msg.str());
} }
throw exception::Exception(msg.str()); if(2290 == ex.getErrorCode()) {
throw exception::DatabaseConstraintError(msg.str());
} else {
throw exception::Exception(msg.str());
}
} }
} }
......
...@@ -18,11 +18,14 @@ ...@@ -18,11 +18,14 @@
#pragma once #pragma once
#include "common/exception/DatabaseConstraintError.hpp"
#include "common/exception/Exception.hpp" #include "common/exception/Exception.hpp"
#include "common/exception/LostDatabaseConnection.hpp" #include "common/exception/LostDatabaseConnection.hpp"
#include <algorithm>
#include <cstring>
#include <libpq-fe.h> #include <libpq-fe.h>
#include <string> #include <string>
#include <algorithm>
namespace cta { namespace cta {
namespace rdbms { namespace rdbms {
...@@ -47,10 +50,12 @@ public: ...@@ -47,10 +50,12 @@ public:
pgstr.erase(std::remove(pgstr.begin(), pgstr.end(), '\n'), pgstr.end()); pgstr.erase(std::remove(pgstr.begin(), pgstr.end(), '\n'), pgstr.end());
} }
std::string resstr; std::string resstr;
bool checkViolation = false;
if (nullptr != res) { if (nullptr != res) {
resstr = "DB Result Status:" + std::to_string(PQresultStatus(res)); resstr = "DB Result Status:" + std::to_string(PQresultStatus(res));
const char *const e = PQresultErrorField(res, PG_DIAG_SQLSTATE); const char *const e = PQresultErrorField(res, PG_DIAG_SQLSTATE);
if (nullptr != e && '\0' != *e) { if (nullptr != e && '\0' != *e) {
checkViolation = 0 == std::strcmp("23514", e);
resstr += " SQLState:" + std::string(e); resstr += " SQLState:" + std::string(e);
} }
} }
...@@ -85,6 +90,9 @@ public: ...@@ -85,6 +90,9 @@ public:
if (badconn) { if (badconn) {
throw exception::LostDatabaseConnection(dbmsg); throw exception::LostDatabaseConnection(dbmsg);
} }
if (checkViolation) {
throw exception::DatabaseConstraintError(dbmsg);
}
throw exception::Exception(dbmsg); throw exception::Exception(dbmsg);
} }
......
...@@ -28,10 +28,11 @@ ...@@ -28,10 +28,11 @@
#include "rdbms/wrapper/PostgresRset.hpp" #include "rdbms/wrapper/PostgresRset.hpp"
#include "rdbms/wrapper/PostgresStmt.hpp" #include "rdbms/wrapper/PostgresStmt.hpp"
#include <algorithm>
#include <exception> #include <exception>
#include <pgsql/server/utils/errcodes.h>
#include <sstream> #include <sstream>
#include <utility> #include <utility>
#include <algorithm>
namespace cta { namespace cta {
namespace rdbms { namespace rdbms {
...@@ -355,8 +356,9 @@ void PostgresStmt::executeNonQuery() { ...@@ -355,8 +356,9 @@ void PostgresStmt::executeNonQuery() {
throw exception::LostDatabaseConnection(std::string(__FUNCTION__) + throw exception::LostDatabaseConnection(std::string(__FUNCTION__) +
" detected lost connection for SQL statement " + getSqlForException() + ": " + ex.getMessage().str()); " detected lost connection for SQL statement " + getSqlForException() + ": " + ex.getMessage().str());
} catch(exception::Exception &ex) { } catch(exception::Exception &ex) {
throw exception::Exception(std::string(__FUNCTION__) + " failed for SQL statement " + ex.getMessage().str(std::string(__FUNCTION__) + " failed for SQL statement " + getSqlForException() + ": " +
getSqlForException() + ": " + ex.getMessage().str()); ex.getMessage().str());
throw;
} }
} }
......
...@@ -25,10 +25,10 @@ ...@@ -25,10 +25,10 @@
#include "rdbms/wrapper/PostgresConn.hpp" #include "rdbms/wrapper/PostgresConn.hpp"
#include "rdbms/wrapper/PostgresColumn.hpp" #include "rdbms/wrapper/PostgresColumn.hpp"
#include <vector>
#include <string>
#include <memory>
#include <cstdint> #include <cstdint>
#include <memory>
#include <string>
#include <vector>
namespace cta { namespace cta {
namespace rdbms { namespace rdbms {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment