0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 12:51:13 +08:00
sqlpp11/tests/core/usage/Interpret.cpp

180 lines
6.9 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2013-2016, Roland Bock
* All rights reserved.
2015-08-05 20:43:21 +08:00
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
2015-08-05 20:43:21 +08:00
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
2015-08-05 20:43:21 +08:00
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
2015-08-05 20:43:21 +08:00
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "MockDb.h"
#include "Sample.h"
2014-08-13 00:48:50 +08:00
#include <sqlpp11/sqlpp11.h>
#include "../../include/test_helpers.h"
int Interpret(int, char* [])
{
MockDb db = {};
MockDb::_serializer_context_t printer = {};
const auto f = test::TabFoo{};
const auto t = test::TabBar{};
select(t.id.as(t.textN));
2024-07-26 18:40:40 +08:00
serialize(printer, insert_into(t).columns(t.textN, t.boolNn)).str();
{
auto i = insert_into(t).columns(t.boolNn, t.textN);
i.add_values(t.boolNn = true, t.textN = "cheesecake");
2024-07-26 18:40:40 +08:00
serialize(printer, i).str();
i.add_values(t.boolNn = false, t.textN = ::sqlpp::nullopt);
2024-07-26 18:40:40 +08:00
serialize(printer, i).str();
}
2024-07-26 18:40:40 +08:00
serialize(printer, t.id).str();
serialize(printer, -t.id).str();
serialize(printer, -(t.id + 7)).str();
serialize(printer, t.id = 0).str();
serialize(printer, t.id == 0).str();
serialize(printer, t.id != 0).str();
serialize(printer, t.id == 7).str();
serialize(printer, t.textN + "kaesekuchen").str();
serialize(printer, sqlpp::select()).str();
serialize(printer, sqlpp::select().flags(sqlpp::distinct)).str();
serialize(printer, select(t.id, t.textN).flags(sqlpp::distinct)).str();
serialize(printer, select(t.id, t.textN)).str();
serialize(printer, select(t.id, t.textN).from(t)).str();
serialize(printer, select(t.id, t.textN).from(t).where(t.id == 3)).str();
serialize(printer, select(t.id, t.textN).from(t).where(t.id == 3).group_by(t.boolNn)).str();
serialize(printer, select(t.id, t.textN).from(t).where(t.id == 3).group_by(t.boolNn).having(t.textN.like("%kuchen")))
.str();
2024-07-26 18:40:40 +08:00
serialize(printer, select(t.id, t.textN)
.from(t)
.where(t.id == 3)
.group_by(t.boolNn)
.having(t.textN.like("%kuchen"))
2024-07-26 18:40:40 +08:00
.order_by(t.textN.asc()))
.str();
2024-07-26 18:40:40 +08:00
serialize(printer, select(t.id, t.textN)
.from(t)
.where(t.id == 3)
.group_by(t.boolNn)
.having(t.textN.like("%kuchen"))
.order_by(t.textN.asc())
.limit(17u)
2024-07-26 18:40:40 +08:00
.offset(3u))
.str();
2024-07-26 18:40:40 +08:00
serialize(printer, parameter(sqlpp::integral(), t.id)).str();
serialize(printer, parameter(t.id)).str();
serialize(printer, t.id == parameter(t.id)).str();
serialize(printer, t.id == parameter(t.id) and (t.textN + "gimmick").like(parameter(t.textN))).str();
2024-07-26 18:40:40 +08:00
serialize(printer, insert_into(t)).str();
serialize(printer, insert_into(f).default_values()).str();
serialize(printer, insert_into(t).set(t.boolNn = true)).str();
2024-07-26 18:40:40 +08:00
serialize(printer, update(t)).str();
serialize(printer, update(t).set(t.boolNn = true)).str();
serialize(printer, update(t).set(t.boolNn = true).where(t.textN.in("kaesekuchen", "cheesecake"))).str();
2024-07-26 18:40:40 +08:00
serialize(printer, remove_from(t)).str();
serialize(printer, remove_from(t).using_(t)).str();
// functions
2024-07-26 18:40:40 +08:00
serialize(printer, sqlpp::value(7)).str();
serialize(printer, sqlpp::verbatim<sqlpp::integral>("something integral")).str();
serialize(printer, t.id.in(std::vector<int>({1, 2, 3, 4, 5, 6, 8}))).str();
serialize(printer, sqlpp::in(t.id, std::vector<int>({1, 2, 3, 4, 5, 6, 8}))).str();
serialize(printer, exists(select(t.id).from(t))).str();
serialize(printer, any(select(t.id).from(t))).str();
serialize(printer, count(t.id)).str();
serialize(printer, min(t.id)).str();
serialize(printer, max(t.id)).str();
serialize(printer, avg(t.id)).str();
serialize(printer, sum(t.id)).str();
serialize(printer, sqlpp::verbatim_table("whatever")).str();
// alias
2024-07-26 18:40:40 +08:00
serialize(printer, t.as(t.id)).str();
serialize(printer, t.as(t.id).textN).str();
// select alias
2024-07-26 18:40:40 +08:00
serialize(printer, select(t.id).from(t).where(t.textN > "kaesekuchen").as(t.boolNn)).str();
2024-04-13 14:56:57 +08:00
// Comparison to null
2024-07-26 18:40:40 +08:00
static_assert(not sqlpp::can_be_null<decltype(t.id)>::value, "expected id cannot be null");
static_assert(not sqlpp::can_be_null<decltype(f.textNnD)>::value, "expected intN cannot be null");
serialize(printer, t.id.is_null()).str();
serialize(printer, f.textNnD.is_null()).str();
// join
2024-07-26 18:40:40 +08:00
serialize(printer, t.inner_join(t.as(t.id)).on(t.textN == t.as(t.id).textN)).str();
{
auto inner = t.inner_join(t.as(t.id)).on(t.textN == t.as(t.id).textN);
2024-07-26 18:40:40 +08:00
serialize(printer, select(t.id).from(inner)).str();
}
// distinct aggregate
2024-07-26 18:40:40 +08:00
serialize(printer, count(sqlpp::distinct, t.id % 7)).str();
serialize(printer, avg(sqlpp::distinct, t.id - 7)).str();
serialize(printer, sum(sqlpp::distinct, t.id + 7)).str();
2024-07-26 18:40:40 +08:00
serialize(printer, select(all_of(t)).from(t).unconditionally()).str();
for (const auto& row : db(select(all_of(t)).from(t).unconditionally()))
{
2024-07-26 18:40:40 +08:00
serialize(printer, t.id == row.id);
serialize(printer, t.textN == row.textN.value());
serialize(printer, t.boolNn == row.boolNn);
}
get_sql_name(t);
get_sql_name(t.id);
flatten(t.id == 7, db);
printer.reset();
2024-07-26 18:40:40 +08:00
std::cerr << serialize(printer, select(all_of(t)).from(t).where(t.id.in(select(f.intN).from(f).unconditionally())))
.str()
<< std::endl;
printer.reset();
2024-07-26 18:40:40 +08:00
std::cerr << serialize(printer, select(all_of(t)).from(t).where(t.id.in(7))).str() << std::endl;
printer.reset();
2024-07-26 18:40:40 +08:00
std::cerr << serialize(printer, select(all_of(t)).from(t).where(t.id.not_in(7))).str() << std::endl;
2024-07-26 18:40:40 +08:00
#warning: reactivate test
/*
auto schema = db.attach("lorem");
auto s = schema_qualified_table(schema, t).as(sqlpp::alias::x);
printer.reset();
2024-07-26 18:40:40 +08:00
std::cerr << serialize(printer, select(all_of(s)).from(s).unconditionally()).str() << std::endl;
*/
2015-12-23 18:50:40 +08:00
printer.reset();
2024-07-26 18:40:40 +08:00
std::cerr << serialize(printer, sqlpp::case_when(true).then(t.id).else_(t.id + 1).as(t.textN)).str()
2015-12-23 18:50:40 +08:00
<< std::endl;
return 0;
}