userver: postgresql/functional_tests/basic_chaos/postgres_service.cpp
Loading...
Searching...
No Matches
postgresql/functional_tests/basic_chaos/postgres_service.cpp
namespace chaos {
constexpr std::string_view kSelectSmallTimeout = "select-small-timeout";
constexpr std::string_view kPortalSmallTimeout = "portal-small-timeout";
const storages::postgres::Query kSelectMany{
"SELECT generate_series(1, 100)",
storages::postgres::Query::Name{"chaos_select_many"},
};
constexpr int kPortalChunkSize = 4;
const storages::postgres::Query kPortalQuery{
"SELECT generate_series(1, 10)",
};
class PostgresHandler final : public server::handlers::HttpHandlerBase {
public:
static constexpr std::string_view kName = "handler-chaos-postgres";
PostgresHandler(const components::ComponentConfig& config,
std::string HandleRequestThrow(
const server::http::HttpRequest& request,
private:
};
PostgresHandler::PostgresHandler(const components::ComponentConfig& config,
: HttpHandlerBase(config, context),
pg_cluster_(
context.FindComponent<components::Postgres>("key-value-database")
.GetCluster()) {}
std::string PostgresHandler::HandleRequestThrow(
const server::http::HttpRequest& request,
const auto& type = request.GetArg("type");
if (type.empty()) {
server::handlers::ExternalBody{"No 'type' query argument"});
}
const auto& sleep_ms = request.GetArg("sleep_ms");
if (!sleep_ms.empty()) {
LOG_DEBUG() << "Sleep for " << sleep_ms << "ms";
const std::chrono::milliseconds ms{utils::FromString<int>(sleep_ms)};
}
if (type == "select" || type == kSelectSmallTimeout) {
const std::chrono::milliseconds timeout{
type == kSelectSmallTimeout ? 800 : 30000};
storages::postgres::CommandControl cc{timeout, timeout};
TESTPOINT("before_trx_begin", {});
auto transaction =
TESTPOINT("after_trx_begin", {});
// Disk on CI could be overloaded, so we use a lightweight query.
//
// pgsql in testsuite works with sockets synchronously.
// We use non writing queries to avoid following deadlocks:
// 1) python test finished, connection is broken, postgres table is
// write locked
// 2) pgsql starts the tables cleanup and hangs on a poll (because of a
// write lock from 1)
// 3) C++ driver does an async cleanup and closes the connection
// 4) chaos proxy does not get a time slice (because of 2), the socket is
// not closed by postgres, 2) hangs
transaction.Execute(cc, kSelectMany);
TESTPOINT("before_trx_commit", {});
transaction.Commit();
TESTPOINT("after_trx_commit", {});
return "OK!";
} else if (type == "portal" || type == kPortalSmallTimeout) {
const std::chrono::seconds timeout{type == kPortalSmallTimeout ? 3 : 25};
storages::postgres::CommandControl cc{timeout, timeout};
auto transaction =
auto portal = transaction.MakePortal(cc, kPortalQuery);
TESTPOINT("after_make_portal", {});
std::vector<int> result;
while (portal) {
auto res = portal.Fetch(kPortalChunkSize);
TESTPOINT("after_fetch", {});
auto vec = res.AsContainer<std::vector<int>>();
result.insert(result.end(), vec.begin(), vec.end());
}
transaction.Commit();
return fmt::format("[{}]", fmt::join(result, ", "));
} else {
UINVARIANT(false,
fmt::format("Unknown chaos test request type '{}'", type));
}
}
} // namespace chaos
int main(int argc, char* argv[]) {
const auto component_list =
.Append<components::DynamicConfigClientUpdater>()
.Append<chaos::PostgresHandler>()
.Append<components::HttpClient>()
.Append<components::Postgres>("key-value-database")
.Append<components::TestsuiteSupport>()
.Append<clients::dns::Component>();
return utils::DaemonMain(argc, argv, component_list);
}