feat add custom test
Some checks failed
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Waiting to run
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Waiting to run
linux-x64-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x64-gcc / linux-gcc (Release) (push) Waiting to run
linux-x86-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x86-gcc / linux-gcc (Release) (push) Waiting to run
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 1m24s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 1m45s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 1m39s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 1m38s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 2m19s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Has been cancelled
Some checks failed
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Waiting to run
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Waiting to run
linux-x64-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x64-gcc / linux-gcc (Release) (push) Waiting to run
linux-x86-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x86-gcc / linux-gcc (Release) (push) Waiting to run
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 1m24s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 1m45s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 1m39s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 1m38s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 2m19s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Has been cancelled
This commit is contained in:
parent
2b69c377f7
commit
2780b81406
@ -348,6 +348,7 @@ tile_add_test(fiber_detail_scheduler_test "tile/fiber/detail/scheduler_test.cc")
|
||||
tile_add_test(base_internal_logging_test "tile/base/internal/logging_test.cc")
|
||||
tile_add_test(base_chrono_test "tile/base/chrono_test.cc")
|
||||
tile_add_test(init_override_flag_test "tile/init/override_flag_test.cc")
|
||||
# tile_add_test("custom_http_client_test" "tests/http_client_test.cc")
|
||||
# tile_add_test(base_internal_time_keeper_test
|
||||
# "tile/base/internal/time_keeper_test.cc")
|
||||
endif(TILE_BUILD_TESTS)
|
||||
|
47
tests/http_client_test.cc
Normal file
47
tests/http_client_test.cc
Normal file
@ -0,0 +1,47 @@
|
||||
#include "tile/net/http/http_client.h"
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
const std::string url = "http://127.0.0.1:8000/";
|
||||
|
||||
TEST(HttpClient, Request) {
|
||||
tile::HttpClient client;
|
||||
std::vector<tile::Future<
|
||||
std::expected<tile::HttpResponse, tile::HttpClient::ErrorCode>>>
|
||||
v;
|
||||
tile::HttpClient::RequestOptions options;
|
||||
options.timeout = std::chrono::seconds(20);
|
||||
|
||||
std::atomic<int> count{0};
|
||||
|
||||
for (int i = 0; i != 1000; ++i) {
|
||||
for (auto code : tile::AllHttpStatus) {
|
||||
if (static_cast<int>(code) < 200) {
|
||||
continue;
|
||||
}
|
||||
|
||||
v.emplace_back(
|
||||
client.AsyncGet(url + std::to_string(static_cast<int>(code)), options)
|
||||
.Then([&](std::expected<tile::HttpResponse,
|
||||
tile::HttpClient::ErrorCode> &&res) {
|
||||
int cnt = count.fetch_add(1) + 1;
|
||||
TILE_LOG_INFO_EVERY_SECOND("complete {}", cnt);
|
||||
return res;
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
int j = 0;
|
||||
for (int i = 0; i != 1000; ++i) {
|
||||
for (auto &code : tile::AllHttpStatus) {
|
||||
if (static_cast<int>(code) < 200) {
|
||||
continue;
|
||||
}
|
||||
|
||||
auto resp = tile::future::BlockingGet(std::move(v[j++]));
|
||||
|
||||
EXPECT_TRUE(resp) << tile::HttpClient::ErrorCodeToString(resp.error());
|
||||
EXPECT_EQ(resp->status(), code);
|
||||
}
|
||||
}
|
||||
}
|
24
tests/http_server.py
Normal file
24
tests/http_server.py
Normal file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python3
|
||||
import http.server
|
||||
import socket
|
||||
import socketserver
|
||||
from http.server import HTTPServer, BaseHTTPRequestHandler
|
||||
|
||||
PORT = 8000
|
||||
|
||||
class Request(BaseHTTPRequestHandler):
|
||||
def do_GET(self):
|
||||
code = int(self.path.split("/")[1])
|
||||
|
||||
self.send_response(code)
|
||||
self.send_header('Content-type', 'text/plain')
|
||||
self.end_headers()
|
||||
|
||||
class HTTPServer(socketserver.TCPServer):
|
||||
def server_bind(self):
|
||||
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
self.socket.bind(self.server_address)
|
||||
|
||||
Handler = http.server.SimpleHTTPRequestHandler
|
||||
with HTTPServer(("", PORT), Request) as httpd:
|
||||
httpd.serve_forever()
|
19
tile/init.cc
19
tile/init.cc
@ -53,31 +53,18 @@ int Start(int argc, char **argv, std::function<int(int, char **)> cb,
|
||||
google::InstallFailureSignalHandler();
|
||||
}
|
||||
|
||||
// Init gflags
|
||||
gflags::SetVersionString("0.1.0");
|
||||
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
||||
detail::ApplyFlagOverrider();
|
||||
auto gflags_handler = tile::make_unique_with_deleter<uint32_t>(
|
||||
[](void *) { gflags::ShutDownCommandLineFlags(); });
|
||||
|
||||
// Init Glog
|
||||
google::InitGoogleLogging(argv[0]);
|
||||
auto glog_handler = tile::make_unique_with_deleter<uint32_t>(
|
||||
[](void *) { google::ShutdownGoogleLogging(); });
|
||||
|
||||
TILE_LOG_INFO("Tile started.");
|
||||
|
||||
TILE_PCHECK(signal(SIGPIPE, SIG_IGN) != SIG_ERR);
|
||||
|
||||
// Init BasicRuntime
|
||||
InitializeBasicRuntime();
|
||||
auto basic_runtime_handler = tile::make_unique_with_deleter<uint32_t>(
|
||||
[](void *) { TerminateBasicRuntime(); });
|
||||
|
||||
// Run all initializers
|
||||
detail::RunAllInitializers();
|
||||
auto initializers_handler = tile::make_unique_with_deleter<uint32_t>(
|
||||
[](void *) { detail::RunAllInitializers(); });
|
||||
|
||||
int rc = 0;
|
||||
|
||||
@ -100,9 +87,9 @@ int Start(int argc, char **argv, std::function<int(int, char **)> cb,
|
||||
worker.join();
|
||||
}
|
||||
|
||||
// detail::RunAllFinalizers();
|
||||
// TerminateBasicRuntime();
|
||||
// gflags::ShutDownCommandLineFlags();
|
||||
detail::RunAllFinalizers();
|
||||
TerminateBasicRuntime();
|
||||
gflags::ShutDownCommandLineFlags();
|
||||
TILE_LOG_INFO("Exited");
|
||||
|
||||
return rc;
|
||||
|
@ -83,6 +83,7 @@ void RegisterOnInitCallback(std::int32_t priority, std::function<void()> init,
|
||||
!registry_prepared.load(std::memory_order_relaxed),
|
||||
"Callbacks may only be registered before `tile::Start()` is called");
|
||||
auto &®istry = *GetStagingRegistry();
|
||||
TILE_CHECK(init != nullptr, "Initializer must be provided");
|
||||
registry[priority].push_back({std::move(init), std::move(fini)});
|
||||
}
|
||||
|
||||
|
@ -49,11 +49,16 @@ HttpClient::ErrorCode GetErrorCodeFromCurlCode(int c) {
|
||||
return HttpClient::ERROR_IO;
|
||||
case CURLE_TOO_MANY_REDIRECTS:
|
||||
return HttpClient::ERROR_TOO_MANY_REDIRECTS;
|
||||
default:
|
||||
TILE_LOG_WARNING_EVERY_SECOND("ERROR_UNKNOWN CURLcode {}", c);
|
||||
case CURLE_GOT_NOTHING:
|
||||
return HttpClient::ERROR_GET_NOTHING;
|
||||
|
||||
default: {
|
||||
TILE_LOG_WARNING_EVERY_SECOND("ERROR_UNKNOWN CURLcode {}, curl msg: ", c,
|
||||
curl_easy_strerror(static_cast<CURLcode>(c)));
|
||||
return HttpClient::ERROR_UNKNOWN;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
long TileHttpVersionToCurlHttpVersion(HttpVersion v,
|
||||
bool no_automatic_upgrade) {
|
||||
@ -446,6 +451,8 @@ const char *HttpClient::ErrorCodeToString(int error_code) {
|
||||
return "ERROR_INTERNAL_ERROR";
|
||||
case ERROR_DRY_RUN:
|
||||
return "ERROR_DRY_RUN";
|
||||
case ERROR_GET_NOTHING:
|
||||
return "ERROR_GET_NOTHING";
|
||||
case ERROR_UNKNOWN:
|
||||
return "<Unknown>";
|
||||
}
|
||||
|
@ -11,6 +11,8 @@
|
||||
|
||||
#include "gflags/gflags_declare.h"
|
||||
|
||||
#include <ostream>
|
||||
|
||||
DECLARE_int32(tile_http_client_default_timeout_ms);
|
||||
|
||||
namespace tile {
|
||||
@ -45,6 +47,7 @@ public:
|
||||
ERROR_IO,
|
||||
ERROR_INTERNAL_ERROR,
|
||||
ERROR_DRY_RUN,
|
||||
ERROR_GET_NOTHING,
|
||||
ERROR_UNKNOWN = 100,
|
||||
};
|
||||
|
||||
|
@ -79,6 +79,28 @@ enum class HttpStatus { // `HttpStatusCode`?
|
||||
NetworkAuthenticationRequired = 511
|
||||
};
|
||||
|
||||
// AllHttpStatus for for_each
|
||||
static HttpStatus AllHttpStatus[] = {
|
||||
HttpStatus::Continue,
|
||||
HttpStatus::SwitchingProtocols,
|
||||
HttpStatus::EarlyHints,
|
||||
HttpStatus::OK,
|
||||
HttpStatus::Created,
|
||||
HttpStatus::Accepted,
|
||||
HttpStatus::NonAuthoritativeInformation,
|
||||
HttpStatus::NoContent,
|
||||
HttpStatus::ResetContent,
|
||||
HttpStatus::PartialContent,
|
||||
HttpStatus::MultipleChoices,
|
||||
HttpStatus::MovedPermanently,
|
||||
HttpStatus::Found,
|
||||
HttpStatus::SeeOther,
|
||||
HttpStatus::NotModified,
|
||||
HttpStatus::TemporaryRedirect,
|
||||
HttpStatus::PermanentRedirect,
|
||||
HttpStatus::BadRequest,
|
||||
};
|
||||
|
||||
Slice ToSlice(HttpVersion method) noexcept;
|
||||
Slice ToSlice(HttpMethod) noexcept;
|
||||
Slice ToSlice(HttpStatus status) noexcept;
|
||||
|
Loading…
Reference in New Issue
Block a user