summaryrefslogtreecommitdiff
path: root/test/test-postgresql.cpp
blob: 727e08ce40aec5d0ca36f0572c733deadbf2bce6 (plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#define BOOST_TEST_MODULE PostgreSQL
#include <boost/mpl/list.hpp>
#include <boost/test/data/test_case.hpp>
#include <boost/test/unit_test.hpp>

#include "helpers.h"
#include "testdb-postgresql.h"
#include <cstddef>
#include <dbConn.h>
#include <dbRecordSet.h>
#include <dbStmt.h>
#include <dbTypes.h>
#include <fixedString.h>
#include <helpers.h>
#include <memory>
#include <output/pq/pqConn.h>
#include <output/pq/writePqCopyStrm.h>
#include <stdexcept>
#include <string_view>
#include <type_traits>
#include <variant>

const auto CONNSTR {MyGrate::getenv("MYGRATE_POSTGRESQL_CONNSTR", "user=postgres")};

BOOST_AUTO_TEST_CASE(simple)
{
	BOOST_CHECK_THROW(([]() {
		MyGrate::Output::Pq::PqConn {"nonsense"};
	}()),
			MyGrate::Output::Pq::PqErr);
	MyGrate::Output::Pq::PqConn c {CONNSTR};
	BOOST_CHECK_NO_THROW(c.query("SET application_name = ''"));
	BOOST_CHECK_NO_THROW(c.query("SET application_name = 'something'"));
	BOOST_CHECK_THROW(c.query("SET application_name = "), MyGrate::Output::Pq::PqErr);
	// BOOST_CHECK_THROW(c.query("SET application_name = $1", {}), std::logic_error);
	BOOST_CHECK_NO_THROW(c.query("SET application_name = 'something'", {}));
}

using SomeUpdate = MyGrate::DbStmt<"UPDATE foo SET blah = $2 WHERE bar = $1">;
using SomeUpdateRtn = MyGrate::DbStmt<"UPDATE foo SET blah = $2 WHERE bar = $1 RETURNING x">;
using SomeShow = MyGrate::DbStmt<"SHOW all">;
using SomeIns = MyGrate::DbStmt<"INSERT INTO foo VALUES(..., $87)">;

static_assert(SomeUpdate::paramCount(MyGrate::ParamMode::DollarNum) == 2);
static_assert(std::is_same_v<SomeUpdate::Return, std::size_t>);
static_assert(SomeUpdateRtn::paramCount(MyGrate::ParamMode::DollarNum) == 2);
static_assert(std::is_same_v<SomeUpdateRtn::Return, MyGrate::RecordSetPtr>);
static_assert(SomeShow::paramCount(MyGrate::ParamMode::DollarNum) == 0);
static_assert(SomeIns::paramCount(MyGrate::ParamMode::DollarNum) == 87);
static_assert(std::is_same_v<SomeIns::Return, std::size_t>);

BOOST_AUTO_TEST_CASE(stmt)
{
	MyGrate::Output::Pq::PqConn c {CONNSTR};
	const auto rs {SomeShow::execute(&c)};
	BOOST_REQUIRE(rs);
	BOOST_REQUIRE_EQUAL(rs->columns(), 3);
	BOOST_REQUIRE_GT(rs->rows(), 1);
	BOOST_CHECK_EQUAL(std::get<std::string_view>(rs->at(0, 0)), "allow_system_table_mods");
	BOOST_CHECK_EQUAL(std::get<std::string_view>(rs->at(0, 1)), "off");
}

BOOST_AUTO_TEST_CASE(stmt_reuse)
{
	MyGrate::Output::Pq::PqConn c {CONNSTR};
	for (int x = 0; x < 10; x++) {
		const auto rs {SomeShow::execute(&c)};
		BOOST_REQUIRE(rs);
		BOOST_CHECK_EQUAL(rs->columns(), 3);
		BOOST_CHECK_GT(rs->rows(), 1);
	}
}

BOOST_AUTO_TEST_CASE(mock)
{
	MyGrate::Testing::PqConnDB db;
	auto mdb = db.mock();
	auto rs = MyGrate::DbStmt<"SELECT CURRENT_DATABASE()">::execute(&mdb);
	BOOST_CHECK_EQUAL(rs->at(0, 0).get<std::string_view>().substr(0, 13), "mygrate_test_");

	mdb.query("CREATE TABLE test(c text)");
	BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {1}));
	BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {"string_view"}));
	BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {nullptr}));
	BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {1.2}));
	BOOST_CHECK_THROW(mdb.query("INSERT INTO test VALUES($1)", {timespec {}}), std::logic_error);
	auto rscount = MyGrate::DbStmt<"SELECT COUNT(*) FROM test">::execute(&mdb);
	BOOST_CHECK_EQUAL(rscount->at(0, 0).operator unsigned int(), 4);
}

BOOST_AUTO_TEST_CASE(mock_schema)
{
	MyGrate::Testing::PqConnDB db {ROOT "/db/schema.sql"};
	auto mdb = db.mock();
	auto rs = MyGrate::DbStmt<"SELECT COUNT(*) FROM mygrate.source">::execute(&mdb);
	BOOST_CHECK_EQUAL(rs->at(0, 0).operator unsigned int(), 0);
}

BOOST_FIXTURE_TEST_SUITE(ms, MemStream);

BOOST_DATA_TEST_CASE(write_strings,
		boost::unit_test::data::make({
				std::make_tuple("", ""),
				{"simple", "simple"},
				{"simple with spaces", "simple with spaces"},
				{"simple\twith\ttabs", "simple\\011with\\011tabs"},
				{"\ttab start", "\\011tab start"},
				{"tab end\t", "tab end\\011"},
				{"tab\t\t\t\tmany", "tab\\011\\011\\011\\011many"},
		}),
		in, exp)
{
	MyGrate::Output::Pq::WritePqCopyStream c {s};
	c(in);
	flush();

	BOOST_REQUIRE(out);
	BOOST_CHECK_EQUAL(out, exp);
}

using IntTypes = boost::mpl::list<int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t>;
BOOST_AUTO_TEST_CASE_TEMPLATE(write_ints, T, IntTypes)
{
	MyGrate::Output::Pq::WritePqCopyStream c {s};
	c(T {1});
	flush();

	BOOST_REQUIRE(out);
	BOOST_CHECK_EQUAL(len, 1);
	BOOST_CHECK_EQUAL(out, "1");
}

using FloatTypes = boost::mpl::list<float, double>;
BOOST_AUTO_TEST_CASE_TEMPLATE(write_floats, T, FloatTypes)
{
	MyGrate::Output::Pq::WritePqCopyStream c {s};
	c(T {1.1});
	flush();

	BOOST_REQUIRE(out);
	BOOST_CHECK_EQUAL(len, 3);
	BOOST_CHECK_EQUAL(out, "1.1");
}

BOOST_AUTO_TEST_CASE(write_blob)
{
	MyGrate::Output::Pq::WritePqCopyStream c {s};
	std::array<std::byte, 10> b {0x00_b, 0x10_b, 0x12_b, 0x30_b, 0x90_b, 0xaa_b, 0xff_b};
	c(b);
	flush();

	BOOST_REQUIRE(out);
	BOOST_CHECK_EQUAL(len, 23);
	BOOST_CHECK_EQUAL(out, R"B(\\x0010123090AAFF000000)B");
}

BOOST_AUTO_TEST_SUITE_END();