mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 02:53:10 +01:00
* fix(Data::AbstracSessionImpl): protect autocommit feature handlers #4261 * chore(CI): re-enable mysql * MySQL SessionImpl: make sure autocommit mode is on when session is openend or reset. * PostgreSQL SessionImpl: reuse autocommit flag of AbstractSessionImpl. * Github workflow: re-activated linux-gcc-make-postgres * Fixed indentation in ci.yml * Fix for DataTest SQLExecutor: use connector * Data::Session: when parser is not used and autocommit mode is off, assume any SQL statement begins a transaction. * PostgreSQL: don't use SQL parser (it currently cannot handle placeholders). * PostgreSQL: added test sessionTransactionNoAutoCommit * PostgreSQL test suite: removed reference to generic SQLExecutor * PostgreSQL: fixes for sessionTransactionNoAutoCommit. * MySQL: added test sessionPoolAndUnicode (from #2801) * Fixed #define in sql-parser * Data generic testsuite: support numbered placeholders * PostgreSQL test suite: added missing include directory to Makefile. * Attempt to fix PostgreSQL Makefiles * PostgreSQL testsuite: added include path to Makefile * PostgreSQL testsuite: added PocoDataTest library to Makefile * DataTest SQLExecutor::formatSQL: don't use string_view * PostgreSQL test suite: delegated most tests to Poco::Data::Test * Makefile: added dependencies on Data-Tests * Weaken assumptions about async in generic transaction tests * Makefile: added dependency for Prometheus samples * Fix deadlock in DataTest SQLExecutor * PostgreSQL tests SQLExecutor: cleanup * feat(Data::AbstractSessionImpl): add autoCommit property and tests #4261 * Brought MySQL backend in line with _autoCommit flag of AbstractSessionImpl. --------- Co-authored-by: Friedrich Wilckens <frwilckens@gmail.com> Co-authored-by: Friedrich Wilckens <friedrich.wilckens@ingramcontent.com>
160 lines
3.7 KiB
C++
160 lines
3.7 KiB
C++
//
|
|
// PostgreSQLTest.h
|
|
//
|
|
// Definition of the PostgreSQLTest class.
|
|
//
|
|
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef PostgreSQLTest_INCLUDED
|
|
#define PostgreSQLTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/PostgreSQL/PostgreSQL.h"
|
|
#include "Poco/Data/Session.h"
|
|
#include "Poco/SharedPtr.h"
|
|
#include "CppUnit/TestCase.h"
|
|
#include "SQLExecutor.h"
|
|
|
|
|
|
class PostgreSQLTest: public CppUnit::TestCase
|
|
/// PostgreSQL test class
|
|
/// Tested:
|
|
///
|
|
/// Driver | DB | OS
|
|
/// ----------------+---------------------------+------------------------------------------
|
|
/// 03.51.12.00 | PostgreSQL 9.3.1.0(18) | Mac OSX 10.9.1
|
|
/// | PostgreSQL 15.3 | Ubuntu 16.04
|
|
|
|
{
|
|
public:
|
|
PostgreSQLTest(const std::string& name);
|
|
~PostgreSQLTest();
|
|
|
|
void testConnectNoDB();
|
|
void testFailedConnect();
|
|
void testPostgreSQLOIDs();
|
|
void testBarebonePostgreSQL();
|
|
|
|
void testSimpleAccess();
|
|
void testComplexType();
|
|
void testSimpleAccessVector();
|
|
void testComplexTypeVector();
|
|
void testInsertVector();
|
|
void testInsertEmptyVector();
|
|
|
|
void testInsertSingleBulk();
|
|
void testInsertSingleBulkVec();
|
|
|
|
void testLimit();
|
|
void testLimitOnce();
|
|
void testLimitPrepare();
|
|
void testLimitZero();
|
|
void testPrepare();
|
|
|
|
void testSetSimple();
|
|
void testSetComplex();
|
|
void testSetComplexUnique();
|
|
void testMultiSetSimple();
|
|
void testMultiSetComplex();
|
|
void testMapComplex();
|
|
void testMapComplexUnique();
|
|
void testMultiMapComplex();
|
|
void testSelectIntoSingle();
|
|
void testSelectIntoSingleStep();
|
|
void testSelectIntoSingleFail();
|
|
void testLowerLimitOk();
|
|
void testLowerLimitFail();
|
|
void testCombinedLimits();
|
|
void testCombinedIllegalLimits();
|
|
void testRange();
|
|
void testIllegalRange();
|
|
void testSingleSelect();
|
|
void testEmptyDB();
|
|
void testDateTime();
|
|
void testBLOB();
|
|
void testBLOBStmt();
|
|
void testCLOBStmt();
|
|
|
|
void testUnsignedInts();
|
|
void testFloat();
|
|
void testDouble();
|
|
void testUUID();
|
|
|
|
void testTuple();
|
|
void testTupleVector();
|
|
|
|
void testInternalExtraction();
|
|
|
|
void testNull();
|
|
void testNullVector();
|
|
|
|
void testNullableInt();
|
|
void testNullableString();
|
|
void testTupleWithNullable();
|
|
|
|
void testBinarySimpleAccess();
|
|
void testBinaryComplexType();
|
|
void testBinarySimpleAccessVector();
|
|
void testBinaryComplexTypeVector();
|
|
void testBinaryInts();
|
|
void testBinaryFloat();
|
|
void testBinaryDouble();
|
|
void testBinaryUUID();
|
|
void testBinaryDateTime();
|
|
void testBinaryBLOBStmt();
|
|
void testBinaryCLOBStmt();
|
|
|
|
void testSessionTransaction();
|
|
void testSessionTransactionNoAutoCommit();
|
|
void testTransaction();
|
|
void testReconnect();
|
|
|
|
void testSqlState();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
|
|
void dropTable(const std::string& tableName);
|
|
void recreatePersonTable();
|
|
void recreatePersonBLOBTable();
|
|
void recreatePersonCLOBTable();
|
|
void recreatePersonDateTimeTable();
|
|
void recreatePersonDateTable();
|
|
void recreatePersonTimeTable();
|
|
void recreateStringsTable();
|
|
void recreateIntsTable();
|
|
void recreateUnsignedIntsTable();
|
|
void recreateFloatsTable();
|
|
void recreateDoublesTable();
|
|
void recreateUUIDsTable();
|
|
void recreateTuplesTable();
|
|
void recreateVectorsTable();
|
|
void recreateNullableIntTable();
|
|
void recreateNullableStringTable();
|
|
|
|
static void dbInfo(Poco::Data::Session& session);
|
|
|
|
static std::string getHost();
|
|
static std::string getPort();
|
|
static std::string getBase();
|
|
static std::string getUser();
|
|
static std::string getPass();
|
|
|
|
static std::string _dbConnString;
|
|
static Poco::SharedPtr<Poco::Data::Session> _pSession;
|
|
static Poco::SharedPtr<SQLExecutor> _pExecutor;
|
|
static const bool bindValues[8];
|
|
};
|
|
|
|
|
|
#endif // PostgreSQLTest_INCLUDED
|