From c702f1d255f8295c64b5ca6631a4f4b41b34942b Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 31 May 2021 17:35:33 +0100 Subject: Read test DB connection details from env --- test/test-mysql.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'test/test-mysql.cpp') diff --git a/test/test-mysql.cpp b/test/test-mysql.cpp index 6baf029..8710c8b 100644 --- a/test/test-mysql.cpp +++ b/test/test-mysql.cpp @@ -4,9 +4,11 @@ #include #include #include +#include #include #include #include +#include #include #include #include @@ -14,13 +16,18 @@ #include #include +const auto SERVER {MyGrate::getenv("MYGRATE_MYSQL_SERVER", "localhost")}; +const auto USER {MyGrate::getenv("MYGRATE_MYSQL_USER", getenv("LOGNAME"))}; +const auto PASSWORD {getenv("MYGRATE_MYSQL_PASSWORD")}; +const auto PORT {(unsigned short)std::atoi(MyGrate::getenv("MYGRATE_MYSQL_PORT", "3306"))}; + BOOST_AUTO_TEST_CASE(simple) { BOOST_CHECK_THROW(([]() { - MyGrate::Input::MySQLConn {"192.168.1.38", "repl", "repl", 3306}; + MyGrate::Input::MySQLConn {SERVER, USER, "badpass", PORT}; }()), std::runtime_error); - MyGrate::Input::MySQLConn c {"192.168.1.38", "repl", "r3pl", 3306}; + MyGrate::Input::MySQLConn c {SERVER, USER, PASSWORD, PORT}; BOOST_CHECK_NO_THROW(c.query("SET @var = ''")); BOOST_CHECK_NO_THROW(c.query("SET @var = 'something'")); BOOST_CHECK_THROW(c.query("SET @var = "), std::runtime_error); @@ -45,7 +52,7 @@ static_assert(SomeUpdate::paramCount == 2); BOOST_AUTO_TEST_CASE(stmt) { - MyGrate::Input::MySQLConn c {"192.168.1.38", "repl", "r3pl", 3306}; + MyGrate::Input::MySQLConn c {SERVER, USER, PASSWORD, PORT}; const auto rs {SomeShow::execute(&c)}; BOOST_REQUIRE(rs); BOOST_REQUIRE_EQUAL(rs->rows(), 1); -- cgit v1.2.3