ZeroTierOne/ext/libpqxx-7.7.3/test/unit/test_stateless_cursor.cxx

86 lines
3.1 KiB
C++
Raw Normal View History

#include <pqxx/cursor>
#include <pqxx/transaction>
#include "../test_helpers.hxx"
namespace
{
void test_stateless_cursor()
{
pqxx::connection conn;
pqxx::work tx{conn};
pqxx::stateless_cursor<
pqxx::cursor_base::read_only, pqxx::cursor_base::owned>
empty(tx, "SELECT generate_series(0, -1)", "empty", false);
auto rows{empty.retrieve(0, 0)};
PQXX_CHECK_EQUAL(std::empty(rows), true, "Empty result not empty");
rows = empty.retrieve(0, 1);
PQXX_CHECK_EQUAL(std::size(rows), 0, "Empty result returned rows");
PQXX_CHECK_EQUAL(empty.size(), 0, "Empty cursor not empty");
PQXX_CHECK_THROWS(
empty.retrieve(1, 0), std::out_of_range, "Empty cursor tries to retrieve");
pqxx::stateless_cursor<
pqxx::cursor_base::read_only, pqxx::cursor_base::owned>
stateless(tx, "SELECT generate_series(0, 9)", "stateless", false);
PQXX_CHECK_EQUAL(stateless.size(), 10, "stateless_cursor::size() mismatch");
// Retrieve nothing.
rows = stateless.retrieve(1, 1);
PQXX_CHECK_EQUAL(std::size(rows), 0, "1-to-1 retrieval not empty");
// Retrieve two rows.
rows = stateless.retrieve(1, 3);
PQXX_CHECK_EQUAL(std::size(rows), 2, "Retrieved wrong number of rows");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 1, "Data/position mismatch");
PQXX_CHECK_EQUAL(rows[1][0].as<int>(), 2, "Data/position mismatch");
// Retrieve same rows in reverse.
rows = stateless.retrieve(2, 0);
PQXX_CHECK_EQUAL(std::size(rows), 2, "Retrieved wrong number of rows");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 2, "Data/position mismatch");
PQXX_CHECK_EQUAL(rows[1][0].as<int>(), 1, "Data/position mismatch");
// Retrieve beyond end.
rows = stateless.retrieve(9, 13);
PQXX_CHECK_EQUAL(std::size(rows), 1, "Row count wrong at end");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 9, "Data/pos mismatch at end");
// Retrieve beyond beginning.
rows = stateless.retrieve(0, -4);
PQXX_CHECK_EQUAL(std::size(rows), 1, "Row count wrong at beginning");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 0, "Data/pos mismatch at beginning");
// Retrieve entire result set backwards.
rows = stateless.retrieve(10, -15);
PQXX_CHECK_EQUAL(
std::size(rows), 10, "Reverse complete retrieval is broken");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 9, "Data mismatch");
PQXX_CHECK_EQUAL(rows[9][0].as<int>(), 0, "Data mismatch");
// Normal usage pattern: step through result set, 4 rows at a time.
rows = stateless.retrieve(0, 4);
PQXX_CHECK_EQUAL(std::size(rows), 4, "Wrong batch size");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 0, "Batch in wrong place");
PQXX_CHECK_EQUAL(rows[3][0].as<int>(), 3, "Batch in wrong place");
rows = stateless.retrieve(4, 8);
PQXX_CHECK_EQUAL(std::size(rows), 4, "Wrong batch size");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 4, "Batch in wrong place");
PQXX_CHECK_EQUAL(rows[3][0].as<int>(), 7, "Batch in wrong place");
rows = stateless.retrieve(8, 12);
PQXX_CHECK_EQUAL(std::size(rows), 2, "Wrong batch size");
PQXX_CHECK_EQUAL(rows[0][0].as<int>(), 8, "Batch in wrong place");
PQXX_CHECK_EQUAL(rows[1][0].as<int>(), 9, "Batch in wrong place");
}
PQXX_REGISTER_TEST(test_stateless_cursor);
} // namespace