drogon/orm_lib/tests/db_test.cc

153 lines
5.1 KiB
C++
Raw Normal View History

2018-11-27 17:37:41 +08:00
/**
*
* db_test.cc
* An Tao
*
* Copyright 2018, An Tao. All rights reserved.
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
* Drogon
2019-05-17 22:49:09 +08:00
*
2018-11-27 17:37:41 +08:00
* Drogon database test program
2019-05-17 22:49:09 +08:00
*
2018-11-27 17:37:41 +08:00
*/
#include "Users.h"
#include <drogon/orm/DbClient.h>
#include <iostream>
2019-05-17 22:49:09 +08:00
#include <trantor/utils/Logger.h>
2018-11-27 17:37:41 +08:00
#include <unistd.h>
using namespace drogon::orm;
#define RESET "\033[0m"
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
void testOutput(bool isGood, const std::string &testMessage)
{
if (isGood)
{
std::cout << GREEN << testMessage << "\t\tOK\n";
std::cout << RESET;
}
else
{
std::cout << RED << testMessage << "\t\tBAD\n";
std::cout << RESET;
exit(-1);
}
}
int main()
{
trantor::Logger::setLogLevel(trantor::Logger::DEBUG);
2018-12-03 18:12:19 +08:00
#if USE_POSTGRESQL
2019-05-18 20:39:57 +08:00
auto clientPtr = DbClient::newPgClient(
"host=127.0.0.1 port=5432 dbname=postgres user=antao", 1);
2018-12-03 18:12:19 +08:00
#elif USE_MYSQL
2019-05-18 20:39:57 +08:00
auto clientPtr = DbClient::newMysqlClient(
"host=127.0.0.1 port=3306 dbname=test user=root", 1);
2018-12-03 18:12:19 +08:00
#else
DbClientPtr clientPtr;
return -1;
#endif
2018-11-27 17:37:41 +08:00
LOG_DEBUG << "start!";
sleep(1);
2019-05-17 22:49:09 +08:00
// Prepare the test environment
*clientPtr << "DROP TABLE IF EXISTS USERS" >> [](const Result &r) {
testOutput(true, "Prepare the test environment(0)");
} >> [](const DrogonDbException &e) {
std::cerr << e.base().what() << std::endl;
testOutput(false, "Prepare the test environment(0)");
};
2018-11-27 17:37:41 +08:00
*clientPtr << "CREATE TABLE users \
(\
user_id character varying(32),\
user_name character varying(64),\
password character varying(64),\
org_name character varying(20),\
signature character varying(50),\
avatar_id character varying(32),\
id serial PRIMARY KEY,\
salt character varying(20),\
admin boolean DEFAULT false,\
CONSTRAINT user_id_org UNIQUE(user_id, org_name)\
)" >>
[](const Result &r) {
testOutput(true, "Prepare the test environment(1)");
} >>
[](const DrogonDbException &e) {
2018-11-27 17:37:41 +08:00
std::cerr << e.base().what() << std::endl;
testOutput(false, "Prepare the test environment(1)");
};
/// Test1:DbClient streaming-type interface
/// 1.1 insert,non-blocking
*clientPtr << "insert into users \
(user_id,user_name,password,org_name) \
values($1,$2,$3,$4) returning *"
<< "pg"
<< "postgresql"
<< "123"
<< "default" >>
[](const Result &r) {
2019-05-17 22:49:09 +08:00
// std::cout << "id=" << r[0]["id"].as<int64_t>() << std::endl;
testOutput(r[0]["id"].as<int64_t>() == 1,
"DbClient streaming-type interface(0)");
2018-11-27 17:37:41 +08:00
} >>
[](const DrogonDbException &e) {
std::cerr << e.base().what() << std::endl;
testOutput(false, "DbClient streaming-type interface(0)");
2018-11-27 17:37:41 +08:00
};
2019-05-17 22:49:09 +08:00
/// 1.2 insert,blocking
2018-11-27 17:37:41 +08:00
*clientPtr << "insert into users \
(user_id,user_name,password,org_name) \
values($1,$2,$3,$4) returning *"
<< "pg1"
<< "postgresql1"
<< "123"
2019-05-17 22:49:09 +08:00
<< "default" << Mode::Blocking >>
2018-11-27 17:37:41 +08:00
[](const Result &r) {
2019-05-17 22:49:09 +08:00
// std::cout << "id=" << r[0]["id"].as<int64_t>() << std::endl;
testOutput(r[0]["id"].as<int64_t>() == 2,
"DbClient streaming-type interface(1)");
2018-11-27 17:37:41 +08:00
} >>
[](const DrogonDbException &e) {
std::cerr << e.base().what() << std::endl;
testOutput(false, "DbClient streaming-type interface(1)");
2018-11-27 17:37:41 +08:00
};
2019-05-17 22:49:09 +08:00
/// 1.3 query,no-blocking
*clientPtr << "select * from users where 1 = 1" << Mode::NonBlocking >>
[](const Result &r) {
for (Result::size_type i = 0; i < r.size(); ++i)
{
std::cout << r[i]["id"].as<int64_t>() << " "
<< r[i]["user_id"].as<std::string>() << " "
<< r[i]["user_name"].as<std::string>() << std::endl;
}
testOutput(true, "DbClient streaming-type interface(0)");
} >>
[](const DrogonDbException &e) {
std::cerr << e.base().what() << std::endl;
testOutput(false, "DbClient streaming-type interface(0)");
};
2019-05-17 22:49:09 +08:00
/// 1.4 query,blocking
*clientPtr << "select * from users where 1 = 1" << Mode::Blocking >>
[](const Result &r) {
for (const auto &item : r)
{
std::cout << item["id"].as<int64_t>() << " "
<< item["user_id"].as<std::string>() << " "
<< item["user_name"].as<std::string>() << std::endl;
}
testOutput(true, "DbClient streaming-type interface(1)");
} >>
[](const DrogonDbException &e) {
std::cerr << e.base().what() << std::endl;
testOutput(false, "DbClient streaming-type interface(1)");
};
2018-11-27 17:37:41 +08:00
/// 2 DbClient execSqlAsync()...
///
/// Model and Mapper....
getchar();
2018-12-03 18:12:19 +08:00
}