-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
Showing
433 changed files
with
63,441 additions
and
2,707 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
vendorpull https://github.com/sourcemeta/vendorpull 70342aaf458e6cb80baeb5b718901075fc42ede6 | ||
noa https://github.com/sourcemeta/noa caad2e1ceedf9fd1a18686a6a6d1e2b9757ead75 | ||
jsontoolkit https://github.com/sourcemeta/jsontoolkit 93a921d0f1e99bfdfe14bfd4d2acf5981294080b | ||
noa https://github.com/sourcemeta/noa a8d36453236abc365f08a76a486f92c84f976fd9 | ||
jsontoolkit https://github.com/sourcemeta/jsontoolkit 60a3862ad0d9642c97685f94aeaed96ab3509690 | ||
bearssl https://www.bearssl.org/git/BearSSL 8ef7680081c61b486622f2d983c0d3d21e83caad | ||
zlib https://github.com/madler/zlib 51b7f2abdade71cd9bb0e7a373ef2610ec6f9daf | ||
uwebsockets https://github.com/uNetworking/uWebSockets v20.71.0 | ||
googletest https://github.com/google/googletest 987e225614755fec7253aa95bf959c09e0d380d7 | ||
curl https://github.com/curl/curl curl-8_11_1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if(NOT Noa_FOUND) | ||
if(HYDRA_INSTALL) | ||
set(NOA_INSTALL ON CACHE BOOL "enable Noa installation") | ||
else() | ||
set(NOA_INSTALL OFF CACHE BOOL "disable Noa installation") | ||
endif() | ||
|
||
set(NOA_GOOGLETEST ${HYDRA_TESTS} CACHE BOOL "GoogleTest") | ||
set(NOA_GOOGLEBENCHMARK OFF CACHE BOOL "GoogleBenchmark") | ||
add_subdirectory("${PROJECT_SOURCE_DIR}/vendor/noa") | ||
set(Noa_FOUND ON) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
add_executable(sourcemeta_hydra_bucket_e2e | ||
environment.h fetch_json_test.cc | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME bucket_e2e | ||
FOLDER "Hydra/Bucket" | ||
SOURCES environment.h fetch_json_test.cc | ||
fetch_or_upsert_test.cc upsert_json_test.cc) | ||
|
||
noa_add_default_options(PRIVATE sourcemeta_hydra_bucket_e2e) | ||
target_link_libraries(sourcemeta_hydra_bucket_e2e | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
target_link_libraries(sourcemeta_hydra_bucket_e2e | ||
target_link_libraries(sourcemeta_hydra_bucket_e2e_unit | ||
PRIVATE sourcemeta::hydra::bucket) | ||
target_link_libraries(sourcemeta_hydra_bucket_e2e | ||
target_link_libraries(sourcemeta_hydra_bucket_e2e_unit | ||
PRIVATE sourcemeta::jsontoolkit::json) | ||
set_target_properties(sourcemeta_hydra_bucket_e2e | ||
PROPERTIES FOLDER "Hydra/Bucket") | ||
gtest_discover_tests(sourcemeta_hydra_bucket_e2e) | ||
|
||
if(NOA_COMPILER_MSVC) | ||
target_compile_definitions(sourcemeta_hydra_bucket_e2e | ||
target_compile_definitions(sourcemeta_hydra_bucket_e2e_unit | ||
PRIVATE _CRT_SECURE_NO_WARNINGS) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
add_executable(sourcemeta_hydra_httpclient_e2e | ||
environment.h request_1_1_test.cc stream_1_1_test.cc) | ||
noa_add_default_options(PRIVATE sourcemeta_hydra_httpclient_e2e) | ||
target_link_libraries(sourcemeta_hydra_httpclient_e2e | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
target_link_libraries(sourcemeta_hydra_httpclient_e2e | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME httpclient_e2e | ||
FOLDER "Hydra/HTTP Client" | ||
SOURCES environment.h request_1_1_test.cc stream_1_1_test.cc) | ||
|
||
target_link_libraries(sourcemeta_hydra_httpclient_e2e_unit | ||
PRIVATE sourcemeta::hydra::httpclient) | ||
set_target_properties(sourcemeta_hydra_httpclient_e2e | ||
PROPERTIES FOLDER "Hydra/HTTP Client") | ||
gtest_discover_tests(sourcemeta_hydra_httpclient_e2e) | ||
|
||
if(NOA_COMPILER_MSVC) | ||
target_compile_definitions(sourcemeta_hydra_httpclient_e2e | ||
target_compile_definitions(sourcemeta_hydra_httpclient_e2e_unit | ||
PRIVATE _CRT_SECURE_NO_WARNINGS) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
add_executable(sourcemeta_hydra_bucket_unit | ||
cache_test.cc datastamp_test.cc iso8601_test.cc aws_sigv4_test.cc) | ||
noa_add_default_options(PRIVATE sourcemeta_hydra_bucket_unit) | ||
target_link_libraries(sourcemeta_hydra_bucket_unit | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME bucket | ||
FOLDER "Hydra/Bucket" | ||
SOURCES cache_test.cc datastamp_test.cc iso8601_test.cc aws_sigv4_test.cc) | ||
|
||
target_link_libraries(sourcemeta_hydra_bucket_unit | ||
PRIVATE sourcemeta::hydra::bucket) | ||
target_link_libraries(sourcemeta_hydra_bucket_unit | ||
PRIVATE sourcemeta::hydra::crypto) | ||
set_target_properties(sourcemeta_hydra_bucket_unit | ||
PROPERTIES FOLDER "Hydra/Bucket") | ||
gtest_discover_tests(sourcemeta_hydra_bucket_unit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
add_executable(sourcemeta_hydra_crypto_unit | ||
uuid_test.cc base64_test.cc | ||
md5_test.cc sha256_test.cc hmac_sha256_test.cc) | ||
noa_add_default_options(PRIVATE sourcemeta_hydra_crypto_unit) | ||
target_link_libraries(sourcemeta_hydra_crypto_unit | ||
PRIVATE GTest::gtest GTest::gmock GTest::gtest_main) | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME crypto | ||
FOLDER "Hydra/Crypto" | ||
SOURCES uuid_test.cc base64_test.cc | ||
md5_test.cc sha256_test.cc hmac_sha256_test.cc) | ||
|
||
target_link_libraries(sourcemeta_hydra_crypto_unit | ||
PRIVATE sourcemeta::hydra::crypto) | ||
set_target_properties(sourcemeta_hydra_crypto_unit | ||
PROPERTIES FOLDER "Hydra/Crypto") | ||
gtest_discover_tests(sourcemeta_hydra_crypto_unit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
add_executable(sourcemeta_hydra_http_unit | ||
time_test.cc status_test.cc method_test.cc | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME http | ||
FOLDER "Hydra/HTTP" | ||
SOURCES time_test.cc status_test.cc method_test.cc | ||
header_test.cc mime_test.cc) | ||
noa_add_default_options(PRIVATE sourcemeta_hydra_http_unit) | ||
target_link_libraries(sourcemeta_hydra_http_unit | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
|
||
target_link_libraries(sourcemeta_hydra_http_unit | ||
PRIVATE sourcemeta::hydra::http) | ||
set_target_properties(sourcemeta_hydra_http_unit | ||
PROPERTIES FOLDER "Hydra/HTTP") | ||
gtest_discover_tests(sourcemeta_hydra_http_unit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
add_executable(sourcemeta_hydra_httpserver_unit logger_test.cc) | ||
noa_add_default_options(PRIVATE sourcemeta_hydra_httpserver_unit) | ||
target_link_libraries(sourcemeta_hydra_httpserver_unit | ||
PRIVATE GTest::gtest GTest::gmock GTest::gtest_main) | ||
noa_googletest(NAMESPACE sourcemeta PROJECT hydra NAME httpserver | ||
FOLDER "Hydra/HTTP Server" | ||
SOURCES logger_test.cc) | ||
|
||
target_link_libraries(sourcemeta_hydra_httpserver_unit | ||
PRIVATE sourcemeta::hydra::httpserver) | ||
set_target_properties(sourcemeta_hydra_httpserver_unit | ||
PROPERTIES FOLDER "Hydra/HTTP Server") | ||
gtest_discover_tests(sourcemeta_hydra_httpserver_unit) |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.