5#if defined(_WIN32) || defined(_WIN64)
9#include "../Lightweight/DataBinder/UnicodeConverter.hpp"
10#include "../Lightweight/SqlConnectInfo.hpp"
11#include "../Lightweight/SqlConnection.hpp"
12#include "../Lightweight/SqlDataBinder.hpp"
13#include "../Lightweight/SqlLogger.hpp"
14#include "../Lightweight/SqlSchema.hpp"
15#include "../Lightweight/SqlStatement.hpp"
16#include "../Lightweight/Utils.hpp"
18#include <catch2/catch_session.hpp>
19#include <catch2/catch_test_macros.hpp>
32#if __has_include(<stacktrace>)
42using WideChar = std::conditional_t<
sizeof(wchar_t) == 2,
wchar_t,
char16_t>;
43using WideString = std::basic_string<WideChar>;
44using WideStringView = std::basic_string_view<WideChar>;
47 #define WTEXT(x) (u##x)
49 #define WTEXT(x) (L##x)
52#define UNSUPPORTED_DATABASE(stmt, dbType) \
53 if ((stmt).Connection().ServerType() == (dbType)) \
55 WARN(std::format("TODO({}): This database is currently unsupported on this test.", dbType)); \
60struct std::formatter<std::u8string>: std::formatter<std::string>
62 auto format(std::u8string
const& value, std::format_context& ctx)
const -> std::format_context::iterator
64 return std::formatter<std::string>::format(std::format(
"{}", (
char const*) value.c_str()), ctx);
74template <
typename W
ideStringT>
75 requires(detail::OneOf<WideStringT,
82ostream&
operator<<(ostream& os, WideStringT
const& str)
84 auto constexpr BitsPerChar =
sizeof(
typename WideStringT::value_type) * 8;
85 auto const u8String =
ToUtf8(str);
86 return os <<
"UTF-" << BitsPerChar <<
'{' <<
"length: " << str.size() <<
", characters: " <<
'"'
87 << string_view((
char const*) u8String.data(), u8String.size()) <<
'"' <<
'}';
90inline ostream& operator<<(ostream& os,
SqlGuid const& guid)
92 return os << format(
"SqlGuid({})", guid);
97template <std::
size_t Precision, std::
size_t Scale>
100 return os << std::format(
"SqlNumeric<{}, {}>({}, {}, {}, {})",
116 .value = std::format(
"DRIVER={};Database={}",
117#
if defined(_WIN32) || defined(_WIN64)
118 "SQLite3 ODBC Driver",
125class TestSuiteSqlLogger:
public SqlLogger::Null
128 std::string m_lastPreparedQuery;
130 template <
typename... Args>
131 void WriteInfo(std::format_string<Args...>
const& fmt, Args&&... args)
133 auto message = std::format(fmt, std::forward<Args>(args)...);
134 message = std::format(
"[{}] {}",
"Lightweight", message);
137 UNSCOPED_INFO(message);
141 std::println(
"{}", message);
145 template <
typename... Args>
146 void WriteWarning(std::format_string<Args...>
const& fmt, Args&&... args)
148 WARN(std::format(fmt, std::forward<Args>(args)...));
152 static TestSuiteSqlLogger& GetLogger() noexcept
154 static TestSuiteSqlLogger theLogger;
158 void OnError(SqlError error, std::source_location sourceLocation)
override
160 WriteWarning(
"SQL Error: {}", error);
161 WriteDetails(sourceLocation);
164 void OnError(
SqlErrorInfo const& errorInfo, std::source_location sourceLocation)
override
166 WriteWarning(
"SQL Error: {}", errorInfo);
167 WriteDetails(sourceLocation);
170 void OnWarning(std::string_view
const& message)
override
172 WriteWarning(
"{}", message);
173 WriteDetails(std::source_location::current());
176 void OnExecuteDirect(std::string_view
const& query)
override
178 WriteInfo(
"ExecuteDirect: {}", query);
181 void OnPrepare(std::string_view
const& query)
override
183 m_lastPreparedQuery = query;
186 void OnExecute(std::string_view
const& query)
override
188 WriteInfo(
"Execute: {}", query);
191 void OnExecuteBatch()
override
193 WriteInfo(
"ExecuteBatch: {}", m_lastPreparedQuery);
196 void OnFetchRow()
override
198 WriteInfo(
"Fetched row");
201 void OnFetchEnd()
override
203 WriteInfo(
"Fetch end");
207 void WriteDetails(std::source_location sourceLocation)
209 WriteInfo(
" Source: {}:{}", sourceLocation.file_name(), sourceLocation.line());
210 if (!m_lastPreparedQuery.empty())
211 WriteInfo(
" Query: {}", m_lastPreparedQuery);
212 WriteInfo(
" Stack trace:");
214#if __has_include(<stacktrace>)
215 auto stackTrace = std::stacktrace::current(1, 25);
216 for (std::size_t
const i: std::views::iota(std::size_t(0), stackTrace.size()))
217 WriteInfo(
" [{:>2}] {}", i, stackTrace[i]);
223class ScopedSqlNullLogger:
public SqlLogger::Null
229 ScopedSqlNullLogger()
234 ~ScopedSqlNullLogger()
override
240template <
typename Getter,
typename Callable>
241constexpr void FixedPointIterate(Getter
const& getter, Callable
const& callable)
258 static inline std::string testDatabaseName =
"LightweightTest";
259 static inline bool odbcTrace =
false;
261 using MainProgramArgs = std::tuple<int, char**>;
263 static std::variant<MainProgramArgs, int> Initialize(
int argc,
char** argv)
267 using namespace std::string_view_literals;
269 for (; i < argc; ++i)
271 if (argv[i] ==
"--trace-sql"sv)
273 else if (argv[i] ==
"--trace-odbc"sv)
275 else if (argv[i] ==
"--help"sv || argv[i] ==
"-h"sv)
277 std::println(
"{} [--trace-sql] [--trace-odbc] [[--] [Catch2 flags ...]]", argv[0]);
278 return { EXIT_SUCCESS };
280 else if (argv[i] ==
"--"sv)
290 argv[i - 1] = argv[0];
293 char* envBuffer =
nullptr;
294 size_t envBufferLen = 0;
295 _dupenv_s(&envBuffer, &envBufferLen,
"ODBC_CONNECTION_STRING");
296 if (
auto const* s = envBuffer; s && *s)
298 if (
auto const* s = std::getenv(
"ODBC_CONNECTION_STRING"); s && *s)
302 std::println(
"Using ODBC connection string: '{}'", SqlConnectionString::SanitizePwd(s));
308 std::println(
"Using default ODBC connection string: '{}'", DefaultTestConnectionString.value);
315 if (!sqlConnection.IsAlive())
317 std::println(
"Failed to connect to the database: {}", sqlConnection.LastError());
321 std::println(
"Running test cases against: {} ({}) (identified as: {})",
322 sqlConnection.ServerName(),
323 sqlConnection.ServerVersion(),
324 sqlConnection.ServerType());
326 return MainProgramArgs { argc - (i - 1), argv + (i - 1) };
333 auto const traceFile = []() -> std::string_view {
334#if !defined(_WIN32) && !defined(_WIN64)
335 return "/dev/stdout";
342 SQLSetConnectAttrA(handle, SQL_ATTR_TRACEFILE, (SQLPOINTER) traceFile.data(), SQL_NTS);
343 SQLSetConnectAttrA(handle, SQL_ATTR_TRACE, (SQLPOINTER) SQL_OPT_TRACE_ON, SQL_IS_UINTEGER);
348 case SqlServerType::SQLITE: {
351 stmt.ExecuteDirect(
"PRAGMA foreign_keys = ON");
354 case SqlServerType::MICROSOFT_SQL:
355 case SqlServerType::POSTGRESQL:
356 case SqlServerType::ORACLE:
357 case SqlServerType::MYSQL:
358 case SqlServerType::UNKNOWN:
366 REQUIRE(stmt.IsAlive());
370 SQLSMALLINT dbNameLen {};
371 SQLGetInfo(stmt.Connection().NativeHandle(), SQL_DATABASE_NAME, dbName,
sizeof(dbName), &dbNameLen);
373 testDatabaseName = dbName;
374 else if (stmt.Connection().ServerType() == SqlServerType::ORACLE)
375 testDatabaseName =
"FREEPDB1";
377 DropAllTablesInDatabase(stmt);
380 virtual ~SqlTestFixture() =
default;
382 static std::string ToString(std::vector<std::string>
const& values, std::string_view separator)
384 auto result = std::string {};
385 for (
auto const& value: values)
394 static void DropTableRecursively(
SqlStatement& stmt, SqlSchema::FullyQualifiedTableName
const& table)
396 auto const dependantTables = SqlSchema::AllForeignKeysTo(stmt, table);
397 for (
auto const& dependantTable: dependantTables)
398 DropTableRecursively(stmt, dependantTable.foreignKey.table);
399 stmt.
ExecuteDirect(std::format(
"DROP TABLE IF EXISTS \"{}\"", table.table));
406 case SqlServerType::MICROSOFT_SQL:
407 case SqlServerType::MYSQL:
408 stmt.
ExecuteDirect(std::format(
"USE \"{}\"", testDatabaseName));
410 case SqlServerType::SQLITE:
411 case SqlServerType::ORACLE:
412 case SqlServerType::UNKNOWN: {
413 auto const tableNames = GetAllTableNames(stmt);
414 for (
auto const& tableName: tableNames)
415 DropTableRecursively(stmt,
416 SqlSchema::FullyQualifiedTableName {
423 case SqlServerType::POSTGRESQL:
424 if (m_createdTables.empty())
425 m_createdTables = GetAllTableNames(stmt);
426 for (
auto& createdTable: std::views::reverse(m_createdTables))
427 stmt.ExecuteDirect(std::format(
"DROP TABLE IF EXISTS \"{}\" CASCADE", createdTable));
430 m_createdTables.clear();
434 static std::vector<std::string> GetAllTableNamesForOracle(
SqlStatement& stmt)
436 auto result = std::vector<std::string> {};
437 stmt.
Prepare(R
"SQL(SELECT table_name
439 WHERE table_name NOT LIKE '%$%'
440 AND table_name NOT IN ('SCHEDULER_JOB_ARGS_TBL', 'SCHEDULER_PROGRAM_ARGS_TBL', 'SQLPLUS_PRODUCT_PROFILE')
441 ORDER BY table_name)SQL");
445 result.emplace_back(stmt.
GetColumn<std::string>(1));
450 static std::vector<std::string> GetAllTableNames(
SqlStatement& stmt)
453 return GetAllTableNamesForOracle(stmt);
455 using namespace std::string_literals;
456 auto result = std::vector<std::string>();
457 auto const schemaName = [&] {
460 case SqlServerType::MICROSOFT_SQL:
467 (SQLCHAR*) testDatabaseName.data(),
468 (SQLSMALLINT) testDatabaseName.size(),
469 (SQLCHAR*) schemaName.data(),
470 (SQLSMALLINT) schemaName.size(),
475 if (SQL_SUCCEEDED(sqlResult))
479 result.emplace_back(stmt.
GetColumn<std::string>(3));
485 static inline std::vector<std::string> m_createdTables;
489inline std::ostream& operator<<(std::ostream& os,
SqlText const& value)
491 return os << std::format(
"SqlText({})", value.value);
494inline std::ostream& operator<<(std::ostream& os,
SqlDate const& date)
496 auto const ymd = date.
value();
497 return os << std::format(
"SqlDate {{ {}-{}-{} }}", ymd.year(), ymd.month(), ymd.day());
500inline std::ostream& operator<<(std::ostream& os,
SqlTime const& time)
502 auto const value = time.value();
503 return os << std::format(
"SqlTime {{ {:02}:{:02}:{:02}.{:06} }}",
504 value.hours().count(),
505 value.minutes().count(),
506 value.seconds().count(),
507 value.subseconds().count());
510inline std::ostream& operator<<(std::ostream& os,
SqlDateTime const& datetime)
512 auto const value = datetime.
value();
513 auto const totalDays = std::chrono::floor<std::chrono::days>(value);
514 auto const ymd = std::chrono::year_month_day { totalDays };
515 auto const hms = std::chrono::hh_mm_ss<std::chrono::nanoseconds> { std::chrono::floor<std::chrono::nanoseconds>(
516 value - totalDays) };
517 return os << std::format(
"SqlDateTime {{ {:04}-{:02}-{:02} {:02}:{:02}:{:02}.{:09} }}",
519 (
unsigned) ymd.month(),
520 (
unsigned) ymd.day(),
522 hms.minutes().count(),
523 hms.seconds().count(),
524 hms.subseconds().count());
527template <std::
size_t N,
typename T, SqlFixedStringMode Mode>
530 if constexpr (Mode == SqlFixedStringMode::FIXED_SIZE)
531 return os << std::format(
"SqlFixedString<{}> {{ size: {}, data: '{}' }}", N, value.
size(), value.data());
532 else if constexpr (Mode == SqlFixedStringMode::FIXED_SIZE_RIGHT_TRIMMED)
533 return os << std::format(
"SqlTrimmedFixedString<{}> {{ '{}' }}", N, value.data());
534 else if constexpr (Mode == SqlFixedStringMode::VARIABLE_SIZE)
536 if constexpr (std::same_as<T, char>)
537 return os << std::format(
"SqlVariableString<{}> {{ size: {}, '{}' }}", N, value.
size(), value.data());
540 auto u8String =
ToUtf8(std::basic_string_view<T>(value.data(), value.
size()));
541 return os << std::format(
"SqlVariableString<{}, {}> {{ size: {}, '{}' }}",
543 Reflection::TypeNameOf<T>,
545 (
char const*) u8String.c_str());
549 return os << std::format(
"SqlFixedString<{}> {{ size: {}, data: '{}' }}", N, value.
size(), value.data());
552template <std::
size_t N,
typename T>
555 if constexpr (std::same_as<T, char>)
556 return os << std::format(
"SqlDynamicString<{}> {{ size: {}, '{}' }}", N, value.
size(), value.
data());
559 auto u8String =
ToUtf8(std::basic_string_view<T>(value.
data(), value.
size()));
560 return os << std::format(
"SqlDynamicString<{}, {}> {{ size: {}, '{}' }}",
562 Reflection::TypeNameOf<T>,
564 (
char const*) u8String.c_str());
568[[nodiscard]]
inline std::string NormalizeText(std::string_view
const& text)
570 auto result = std::string(text);
574 std::unique(result.begin(), result.end(), [](
char a,
char b) { return std::isspace(a) && std::isspace(b); }),
578 while (!result.empty() && std::isspace(result.front()))
579 result.erase(result.begin());
581 while (!result.empty() && std::isspace(result.back()))
587[[nodiscard]]
inline std::string NormalizeText(std::vector<std::string>
const& texts)
589 auto result = std::string {};
590 for (
auto const& text: texts)
594 result += NormalizeText(text);
601inline void CreateEmployeesTable(
SqlStatement& stmt, std::source_location location = std::source_location::current())
606 .PrimaryKeyWithAutoIncrement(
"EmployeeID")
607 .RequiredColumn(
"FirstName", SqlColumnTypeDefinitions::Varchar { 50 })
608 .Column(
"LastName", SqlColumnTypeDefinitions::Varchar { 50 })
609 .RequiredColumn(
"Salary", SqlColumnTypeDefinitions::Integer {});
618 for (
char c =
'A'; c <=
'Z'; ++c)
620 table.
Column(std::string(1, c), SqlColumnTypeDefinitions::Varchar { 50 });
629 .Set(
"FirstName", SqlWildcard)
630 .Set(
"LastName", SqlWildcard)
631 .Set(
"Salary", SqlWildcard));
632 stmt.
Execute(
"Alice",
"Smith", 50'000);
633 stmt.
Execute(
"Bob",
"Johnson", 60'000);
634 stmt.
Execute(
"Charlie",
"Brown", 70'000);
637template <
typename T =
char>
638inline auto MakeLargeText(
size_t size)
640 auto text = std::basic_string<T>(size, {});
641 std::ranges::generate(text, [i = 0]()
mutable {
return static_cast<T
>(
'A' + (i++ % 26)); });
Represents a connection to a SQL database.
SqlServerType ServerType() const noexcept
Retrieves the type of the server.
SQLHDBC NativeHandle() const noexcept
Retrieves the native handle.
static void SetDefaultConnectionString(SqlConnectionString const &connectionString) noexcept
static void SetPostConnectedHook(std::function< void(SqlConnection &)> hook)
Sets a callback to be called after each connection being established.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Column(SqlColumnDeclaration column)
Adds a new column to the table.
LIGHTWEIGHT_FORCE_INLINE T const * data() const noexcept
Retrieves the string's inner value (as T const*).
LIGHTWEIGHT_FORCE_INLINE std::size_t size() const noexcept
Retrieves the string's size.
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t size() const noexcept
Returns the size of the string.
Represents a logger for SQL operations.
static void SetLogger(SqlLogger &logger)
static SqlLogger & GetLogger()
Retrieves the currently configured logger.
static SqlLogger & TraceLogger()
Retrieves a logger that logs to the trace logger.
Query builder for building SQL migration queries.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder CreateTable(std::string_view tableName)
Creates a new table.
LIGHTWEIGHT_API SqlInsertQueryBuilder Insert(std::vector< SqlVariant > *boundInputs=nullptr) noexcept
High level API for (prepared) raw SQL statements.
LIGHTWEIGHT_API SqlConnection & Connection() noexcept
Retrieves the connection associated with this statement.
LIGHTWEIGHT_API SQLHSTMT NativeHandle() const noexcept
Retrieves the native handle of the statement.
void Execute(Args const &... args)
Binds the given arguments to the prepared statement and executes it.
LIGHTWEIGHT_API void ExecuteDirect(std::string_view const &query, std::source_location location=std::source_location::current())
Executes the given query directly.
void MigrateDirect(Callable const &callable, std::source_location location=std::source_location::current())
Executes an SQL migration query, as created b the callback.
LIGHTWEIGHT_API bool FetchRow()
LIGHTWEIGHT_API void Prepare(std::string_view query) &
bool GetColumn(SQLUSMALLINT column, T *result) const
LIGHTWEIGHT_API SqlQueryBuilder Query(std::string_view const &table={}) const
Creates a new query builder for the given table, compatible with the SQL server being connected.
LIGHTWEIGHT_API std::u8string ToUtf8(std::u32string_view u32InputString)
Represents an ODBC connection string.
constexpr LIGHTWEIGHT_FORCE_INLINE native_type value() const noexcept
Returns the current date and time.
LIGHTWEIGHT_FORCE_INLINE constexpr std::chrono::year_month_day value() const noexcept
Returns the current date.
Represents an ODBC SQL error.
constexpr LIGHTWEIGHT_FORCE_INLINE auto ToUnscaledValue() const noexcept
Converts the numeric to an unscaled integer value.
SQL_NUMERIC_STRUCT sqlValue
The value is stored as a string to avoid floating point precision issues.