-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add more test cases of failing to start graph (#529)
- Loading branch information
Showing
21 changed files
with
298 additions
and
24 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
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
102 changes: 102 additions & 0 deletions
102
tests/ten_runtime/smoke/predefined_graph/predefined_graph_incorrect_1.cc
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,102 @@ | ||
// | ||
// Copyright © 2025 Agora | ||
// This file is part of TEN Framework, an open source project. | ||
// Licensed under the Apache License, Version 2.0, with certain conditions. | ||
// Refer to the "LICENSE" file in the root directory for more information. | ||
// | ||
#include "gtest/gtest.h" | ||
#include "include_internal/ten_runtime/binding/cpp/ten.h" | ||
#include "tests/common/client/cpp/msgpack_tcp.h" | ||
#include "tests/ten_runtime/smoke/util/binding/cpp/check.h" | ||
|
||
namespace { | ||
|
||
class test_predefined_graph : public ten::extension_t { | ||
public: | ||
explicit test_predefined_graph(const char *name) : ten::extension_t(name) {} | ||
|
||
void on_cmd(ten::ten_env_t &ten_env, | ||
std::unique_ptr<ten::cmd_t> cmd) override { | ||
nlohmann::json const detail = {{"id", 1}, {"name", "a"}}; | ||
|
||
auto cmd_result = ten::cmd_result_t::create(TEN_STATUS_CODE_OK); | ||
cmd_result->set_property_from_json("detail", detail.dump().c_str()); | ||
ten_env.return_result(std::move(cmd_result), std::move(cmd)); | ||
} | ||
}; | ||
|
||
class test_app : public ten::app_t { | ||
public: | ||
void on_configure(ten::ten_env_t &ten_env) override { | ||
bool rc = ten::ten_env_internal_accessor_t::init_manifest_from_json( | ||
ten_env, | ||
// clang-format off | ||
R"({ | ||
"type": "app", | ||
"name": "test_app", | ||
"version": "0.1.0" | ||
})" | ||
// clang-format on | ||
); | ||
ASSERT_EQ(rc, true); | ||
|
||
rc = ten_env.init_property_from_json( | ||
// clang-format off | ||
R"###({ | ||
"_ten": { | ||
"uri": "msgpack://127.0.0.1:8001/", | ||
"log_level": 2, | ||
"predefined_graphs": [{ | ||
"name": "default", | ||
"auto_start": true, | ||
"singleton": true, | ||
"nodes": [{ | ||
"type": "extension", | ||
"name": "predefined_graph", | ||
"addon": "predefined_graph_incorrect_1__predefined_graph", | ||
"extension_group": "predefined_graph_group" | ||
}] | ||
}] | ||
} | ||
})###" | ||
// clang-format on | ||
); | ||
ASSERT_EQ(rc, true); | ||
|
||
ten_env.on_configure_done(); | ||
} | ||
}; | ||
|
||
void *app_thread_main(TEN_UNUSED void *args) { | ||
auto *app = new test_app(); | ||
app->run(); | ||
delete app; | ||
|
||
return nullptr; | ||
} | ||
|
||
TEN_CPP_REGISTER_ADDON_AS_EXTENSION( | ||
predefined_graph_incorrect_1__predefined_graph, test_predefined_graph); | ||
|
||
} // namespace | ||
|
||
TEST(PredefinedGraphTest, PredefinedGraphIncorrect1) { // NOLINT | ||
auto *app_thread = ten_thread_create("app thread", app_thread_main, nullptr); | ||
|
||
// Create a client and connect to the app. | ||
auto *client = new ten::msgpack_tcp_client_t("msgpack://127.0.0.1:8001/"); | ||
|
||
// Do not need to send 'start_graph' command first. | ||
// The 'graph_id' MUST be "default" if we want to send the request to | ||
// predefined graph. | ||
auto test_cmd = ten::cmd_t::create("test"); | ||
test_cmd->set_dest("msgpack://127.0.0.1:8001/", "default", | ||
"predefined_graph_group", "predefined_graph"); | ||
auto cmd_result = client->send_cmd_and_recv_result(std::move(test_cmd)); | ||
ten_test::check_status_code(cmd_result, TEN_STATUS_CODE_OK); | ||
ten_test::check_detail_with_json(cmd_result, R"({"id": 1, "name": "a"})"); | ||
|
||
delete client; | ||
|
||
ten_thread_join(app_thread, -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 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
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
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
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
Oops, something went wrong.