mirror of
https://github.com/logos-blockchain/logos-blockchain-module.git
synced 2026-07-27 01:13:14 +00:00
Compare commits
No commits in common. "master" and "v0.0.2" have entirely different histories.
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
||||
- os: ubuntu-24.04-arm
|
||||
arch: aarch64-linux
|
||||
- os: macos-14
|
||||
arch: aarch64-macos
|
||||
arch: aarch64-darwin
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
|
||||
@ -9,7 +9,7 @@ endif()
|
||||
|
||||
# Universal module — generated_code/ is picked up automatically by LogosModule.cmake
|
||||
logos_module(
|
||||
NAME blockchain_module
|
||||
NAME liblogos_blockchain_module
|
||||
SOURCES
|
||||
src/logos_blockchain_module.h
|
||||
src/logos_blockchain_module.cpp
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Logos Blockchain Module
|
||||
|
||||
A Logos core module that wraps the [logos-blockchain](https://github.com/logos-blockchain/logos-blockchain) C bindings.
|
||||
A Logos core module that wraps the [logos-blockchain](https://github.com/logos-blockchain/logos-blockchain) C bindings and ships the zk circuit binaries needed at runtime.
|
||||
|
||||
### Build and inspect
|
||||
|
||||
|
||||
8
flake.lock
generated
8
flake.lock
generated
@ -24,16 +24,16 @@
|
||||
"rust-rapidsnark": "rust-rapidsnark"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1783712095,
|
||||
"narHash": "sha256-N5uloPS1FGvG/ClJmga8/K8w+2hxQBJIRP68ide4H58=",
|
||||
"lastModified": 1782212034,
|
||||
"narHash": "sha256-IcU+c3YokqSmv4huTHZsBUhsen8lLs3wGvtaMWfQths=",
|
||||
"owner": "logos-blockchain",
|
||||
"repo": "logos-blockchain",
|
||||
"rev": "ec648fa7239576dccb9aa8b684d4a780c9064797",
|
||||
"rev": "113faae6fd5f68aa70e3cece4fa54f8522c95eec",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "logos-blockchain",
|
||||
"ref": "ec648fa7239576dccb9aa8b684d4a780c9064797",
|
||||
"ref": "113faae6fd5f68aa70e3cece4fa54f8522c95eec",
|
||||
"repo": "logos-blockchain",
|
||||
"type": "github"
|
||||
}
|
||||
|
||||
31
flake.nix
31
flake.nix
@ -3,7 +3,8 @@
|
||||
|
||||
inputs = {
|
||||
logos-module-builder.url = "github:logos-co/logos-module-builder?ref=38ddf92c1f240f4e420d300a1fbabb1609d5db01";
|
||||
logos-blockchain.url = "github:logos-blockchain/logos-blockchain?ref=ec648fa7239576dccb9aa8b684d4a780c9064797";
|
||||
# https://github.com/logos-blockchain/logos-blockchain/commit/113faae6fd5f68aa70e3cece4fa54f8522c95eec
|
||||
logos-blockchain.url = "github:logos-blockchain/logos-blockchain?ref=113faae6fd5f68aa70e3cece4fa54f8522c95eec";
|
||||
};
|
||||
|
||||
outputs = inputs@{ logos-module-builder, ... }:
|
||||
@ -21,7 +22,35 @@
|
||||
mockCLibs = [ "logos_blockchain" ];
|
||||
};
|
||||
|
||||
preConfigure = { externalLibs }:
|
||||
if externalLibs ? logos_blockchain then ''
|
||||
if [ -d "${externalLibs.logos_blockchain}/circuits" ]; then
|
||||
echo "Staging zk circuits from logos-blockchain..."
|
||||
cp -r "${externalLibs.logos_blockchain}/circuits" ./circuits
|
||||
chmod -R u+w ./circuits
|
||||
else
|
||||
echo "WARNING: no circuits/ found in logos-blockchain derivation"
|
||||
fi
|
||||
'' else ''
|
||||
echo "Skipping zk circuits staging (logos_blockchain mocked for tests)"
|
||||
'';
|
||||
|
||||
# Logos Core Edge-case
|
||||
# The current version of Logos Core expects circuits' binaries under `lib/circuits/`.
|
||||
# Until we address this in Logos Core, we use this hook to include to ensure the circuits' binaries
|
||||
# are included in the binary bundle and avoid the circuits being mangled by Nix (which did that when
|
||||
# copying them in a previous phase).
|
||||
postInstall = ''
|
||||
if [ -d "$LOGOS_MODULE_SOURCE_DIR/circuits" ]; then
|
||||
cp -r "$LOGOS_MODULE_SOURCE_DIR/circuits" "$out/lib/circuits"
|
||||
chmod -R u+w "$out/lib/circuits"
|
||||
|
||||
if [ -f "$out/lib/circuits/lib/libgmp.a" ]; then
|
||||
echo "Removing loose static library libgmp.a from staged circuits..."
|
||||
rm "$out/lib/circuits/lib/libgmp.a"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Remove nix references to make the module portable.
|
||||
find "$out" -type f | while read -r binary; do
|
||||
if file "$binary" | grep -E -q "Mach-O|shared library|executable|archive"; then
|
||||
|
||||
2
justfile
2
justfile
@ -7,7 +7,7 @@ configure:
|
||||
cmake -S . -B build -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
||||
|
||||
build: configure
|
||||
cmake --build build --parallel --target blockchain_module_module_plugin
|
||||
cmake --build build --parallel --target liblogos_blockchain_module_module_plugin
|
||||
|
||||
clean:
|
||||
rm -rf build result
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "blockchain_module",
|
||||
"name": "liblogos_blockchain_module",
|
||||
"display_name": "Blockchain Module",
|
||||
"version": "0.0.999",
|
||||
"version": "1.0.0",
|
||||
"description": "Logos blockchain node for logos-core",
|
||||
"author": "Logos Blockchain Team",
|
||||
"type": "core",
|
||||
@ -11,16 +11,17 @@
|
||||
"impl_class": "LogosBlockchainModule"
|
||||
},
|
||||
"category": "blockchain",
|
||||
"main": "blockchain_module_plugin",
|
||||
"main": "liblogos_blockchain_module_plugin",
|
||||
"dependencies": [],
|
||||
"capabilities": [],
|
||||
"include": [
|
||||
"liblogos_blockchain.dylib",
|
||||
"liblogos_blockchain.so",
|
||||
"liblogos_blockchain.dll",
|
||||
"blockchain_module_plugin.dylib",
|
||||
"blockchain_module_plugin.so",
|
||||
"blockchain_module_plugin.dll"
|
||||
"liblogos_blockchain_module_plugin.dylib",
|
||||
"liblogos_blockchain_module_plugin.so",
|
||||
"liblogos_blockchain_module_plugin.dll",
|
||||
"circuits"
|
||||
],
|
||||
|
||||
"nix": {
|
||||
|
||||
@ -17,19 +17,6 @@ using json = nlohmann::json;
|
||||
// Define static member
|
||||
LogosBlockchainModule* LogosBlockchainModule::s_instance = nullptr;
|
||||
|
||||
namespace operation_status {
|
||||
// Takes the Rust-allocated message out of an OperationStatus and frees it.
|
||||
std::string take_message(OperationStatus& status) {
|
||||
std::string message;
|
||||
if (status.message) {
|
||||
message = status.message;
|
||||
(void)free_cstring(status.message);
|
||||
status.message = nullptr;
|
||||
}
|
||||
return message;
|
||||
}
|
||||
} // namespace operation_status
|
||||
|
||||
// Shorthands for building StdLogosResult values.
|
||||
namespace result {
|
||||
StdLogosResult ok() {
|
||||
@ -44,13 +31,6 @@ namespace result {
|
||||
StdLogosResult err(std::string message) {
|
||||
return {false, {}, std::move(message)};
|
||||
}
|
||||
|
||||
StdLogosResult from_operation_status(OperationStatus& status) {
|
||||
if (is_ok(&status)) {
|
||||
return ok();
|
||||
}
|
||||
return err(operation_status::take_message(status));
|
||||
}
|
||||
} // namespace result
|
||||
|
||||
namespace {
|
||||
@ -142,9 +122,7 @@ namespace {
|
||||
std::string http_addr_data;
|
||||
std::string external_address_data;
|
||||
std::string state_path_data;
|
||||
std::string storage_path_data;
|
||||
std::string logs_path_data;
|
||||
bool skip_ibd_val;
|
||||
bool ibd_val;
|
||||
std::string log_filter_data;
|
||||
std::string kms_file_data;
|
||||
|
||||
@ -219,28 +197,12 @@ namespace {
|
||||
ffi_args.state_path = nullptr;
|
||||
}
|
||||
|
||||
// storage_path (string -> const char*) — maps to storage.backend.folder_name
|
||||
if (args.contains("storage_path") && args["storage_path"].is_string()) {
|
||||
storage_path_data = args["storage_path"].get<std::string>();
|
||||
ffi_args.storage_path = storage_path_data.c_str();
|
||||
// ibd (bool -> const bool*)
|
||||
if (args.contains("ibd") && args["ibd"].is_boolean()) {
|
||||
ibd_val = args["ibd"].get<bool>();
|
||||
ffi_args.ibd = &ibd_val;
|
||||
} else {
|
||||
ffi_args.storage_path = nullptr;
|
||||
}
|
||||
|
||||
// logs_path (string -> const char*) — maps to tracing.logger.file.directory
|
||||
if (args.contains("logs_path") && args["logs_path"].is_string()) {
|
||||
logs_path_data = args["logs_path"].get<std::string>();
|
||||
ffi_args.logs_path = logs_path_data.c_str();
|
||||
} else {
|
||||
ffi_args.logs_path = nullptr;
|
||||
}
|
||||
|
||||
// skip_ibd (bool -> const bool*)
|
||||
if (args.contains("skip_ibd") && args["skip_ibd"].is_boolean()) {
|
||||
skip_ibd_val = args["skip_ibd"].get<bool>();
|
||||
ffi_args.skip_ibd = &skip_ibd_val;
|
||||
} else {
|
||||
ffi_args.skip_ibd = nullptr;
|
||||
ffi_args.ibd = nullptr;
|
||||
}
|
||||
|
||||
// log_filter (string -> const char*)
|
||||
@ -262,6 +224,37 @@ namespace {
|
||||
};
|
||||
} // namespace
|
||||
|
||||
namespace environment {
|
||||
constexpr auto LOGOS_BLOCKCHAIN_CIRCUITS = "LOGOS_BLOCKCHAIN_CIRCUITS";
|
||||
|
||||
bool is_circuits_path_valid(const std::string& path) {
|
||||
std::error_code ec;
|
||||
if (!fs::is_directory(path, ec))
|
||||
return false;
|
||||
for (const auto& entry : fs::directory_iterator(path, ec)) { // NOLINT(*-use-anyofallof)
|
||||
if (entry.is_regular_file())
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void setup_circuits_path(const std::string& module_path) {
|
||||
const fs::path circuits_path = fs::path(module_path) / "circuits";
|
||||
const std::string circuits_str = circuits_path.string();
|
||||
|
||||
if (!is_circuits_path_valid(circuits_str)) {
|
||||
fprintf(
|
||||
stderr,
|
||||
"FATAL: The LOGOS_BLOCKCHAIN_CIRCUITS environment variable is not set or does not contain any files.\n"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
setenv("LOGOS_BLOCKCHAIN_CIRCUITS", circuits_str.c_str(), 1);
|
||||
fprintf(stderr, "LOGOS_BLOCKCHAIN_CIRCUITS set to: %s\n", circuits_str.c_str());
|
||||
}
|
||||
} // namespace environment
|
||||
|
||||
void LogosBlockchainModule::on_new_block_callback(const char* block) {
|
||||
if (s_instance) {
|
||||
fprintf(stderr, "Received new block: %s\n", block);
|
||||
@ -289,7 +282,7 @@ LogosBlockchainModule::~LogosBlockchainModule() {
|
||||
|
||||
// Lifecycle
|
||||
|
||||
StdLogosResult LogosBlockchainModule::generate_user_config(const std::string& json_args) const {
|
||||
StdLogosResult LogosBlockchainModule::generate_user_config(const std::string& json_args) {
|
||||
json parsed_args;
|
||||
try {
|
||||
parsed_args = json::parse(json_args);
|
||||
@ -298,82 +291,15 @@ StdLogosResult LogosBlockchainModule::generate_user_config(const std::string& js
|
||||
return result::err(std::string("Failed to parse JSON args: ") + e.what());
|
||||
}
|
||||
|
||||
// The module-context getters are populated by every logos-core host
|
||||
// (logoscore-cli and Basecamp alike), so their mere presence can't tell the
|
||||
// two apart. The bundled app therefore opts in explicitly by passing
|
||||
// "use_persistence_paths": true; only then do we route the node's runtime
|
||||
// directories — state, storage (db) and logs — under the host-owned
|
||||
// per-instance persistence dir, so they all share one writable base. CLI and
|
||||
// standalone callers omit the flag and keep their own paths (or the node
|
||||
// defaults). Any path the caller set explicitly is left untouched.
|
||||
bool use_persistence_paths = false;
|
||||
if (const auto it = parsed_args.find("use_persistence_paths"); it != parsed_args.end() && it->is_boolean()) {
|
||||
use_persistence_paths = it->get<bool>();
|
||||
}
|
||||
parsed_args.erase("use_persistence_paths"); // not an FFI field
|
||||
|
||||
if (use_persistence_paths) {
|
||||
const std::string& persistence = instancePersistencePath();
|
||||
if (!persistence.empty()) {
|
||||
const fs::path base(persistence);
|
||||
// Only fill a path the caller didn't pin (non-empty string wins).
|
||||
const auto set_if_absent = [&parsed_args](const char* key, const std::string& value) {
|
||||
const bool provided = parsed_args.contains(key) && parsed_args[key].is_string() &&
|
||||
!parsed_args[key].get<std::string>().empty();
|
||||
if (!provided)
|
||||
parsed_args[key] = value;
|
||||
};
|
||||
set_if_absent("state_path", (base / "state").string());
|
||||
set_if_absent("storage_path", (base / "db").string());
|
||||
set_if_absent("logs_path", (base / "logs").string());
|
||||
|
||||
// The config file itself is written under the same base, using the
|
||||
// caller's path as the relative part below it ("config/user_config.yaml"
|
||||
// → "<base>/config/user_config.yaml"). Absolute / root-anchored inputs
|
||||
// (e.g. "//user_config.yaml" from QDir::currentPath()=="/") are treated
|
||||
// as relative to the base; a missing output defaults to
|
||||
// "<base>/user_config.yaml".
|
||||
fs::path output_rel = "user_config.yaml";
|
||||
if (parsed_args.contains("output") && parsed_args["output"].is_string() &&
|
||||
!parsed_args["output"].get<std::string>().empty()) {
|
||||
const fs::path given(localPathFromFileUrl(parsed_args["output"].get<std::string>()));
|
||||
const fs::path rel = given.relative_path();
|
||||
output_rel = rel.empty() ? given.filename() : rel;
|
||||
if (output_rel.empty())
|
||||
output_rel = "user_config.yaml";
|
||||
}
|
||||
parsed_args["output"] = (base / output_rel).lexically_normal().string();
|
||||
|
||||
fprintf(
|
||||
stderr,
|
||||
"generate_user_config: routing output/state/storage/logs under instance persistence path: %s\n",
|
||||
persistence.c_str()
|
||||
);
|
||||
} else {
|
||||
fprintf(
|
||||
stderr,
|
||||
"generate_user_config: use_persistence_paths requested but no instance persistence path is set; "
|
||||
"leaving paths unchanged.\n"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// The path the config is actually written to (after any persistence routing).
|
||||
// Returned to the caller so it can hand the exact path to start(). Empty only
|
||||
// when no output was given and no routing applied (the node wrote its own
|
||||
// default relative to the cwd, which the module can't resolve).
|
||||
std::string resolved_output;
|
||||
if (parsed_args.contains("output") && parsed_args["output"].is_string())
|
||||
resolved_output = parsed_args["output"].get<std::string>();
|
||||
|
||||
const OwnedGenerateConfigArgs owned_args(parsed_args);
|
||||
|
||||
OperationStatus status = ::generate_user_config(owned_args.ffi_args);
|
||||
const OperationStatus status = ::generate_user_config(owned_args.ffi_args);
|
||||
if (!is_ok(&status)) {
|
||||
return result::err(operation_status::take_message(status));
|
||||
fprintf(stderr, "Failed to generate user config. Error: %d\n", status);
|
||||
return result::err("Failed to generate user config.");
|
||||
}
|
||||
|
||||
return result::ok(resolved_output);
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::start(const std::string& config_path, const std::string& deployment) {
|
||||
@ -382,6 +308,13 @@ StdLogosResult LogosBlockchainModule::start(const std::string& config_path, cons
|
||||
return result::err("The node is already running.");
|
||||
}
|
||||
|
||||
const char* module_path_env = std::getenv("LOGOS_MODULE_PATH");
|
||||
if (module_path_env && *module_path_env) {
|
||||
environment::setup_circuits_path(module_path_env);
|
||||
} else {
|
||||
fprintf(stderr, "Warning: LOGOS_MODULE_PATH not set, skipping circuits' path setup.\n");
|
||||
}
|
||||
|
||||
std::string effective_config_path = config_path;
|
||||
|
||||
if (effective_config_path.empty()) {
|
||||
@ -402,19 +335,28 @@ StdLogosResult LogosBlockchainModule::start(const std::string& config_path, cons
|
||||
const char* deployment_ptr = deployment_path.empty() ? nullptr : deployment_path.c_str();
|
||||
|
||||
auto [value, error] = start_lb_node(config_path_ptr, deployment_ptr);
|
||||
fprintf(stderr, "Start node returned with value and error.\n");
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to start the node. Error: %d\n", error);
|
||||
return result::err("Failed to start the node.");
|
||||
}
|
||||
|
||||
node = value;
|
||||
fprintf(stderr, "The node was started successfully.\n");
|
||||
|
||||
if (!node) {
|
||||
fprintf(stderr, "Could not subscribe to block events: The node is not running.\n");
|
||||
return result::err("Could not subscribe to block events: the node is not running.");
|
||||
}
|
||||
|
||||
s_instance = this;
|
||||
OperationStatus subscribe_status = subscribe_to_new_blocks(node, on_new_block_callback);
|
||||
return result::from_operation_status(subscribe_status);
|
||||
const OperationStatus subscribe_status = subscribe_to_new_blocks(node, on_new_block_callback);
|
||||
if (!is_ok(&subscribe_status)) {
|
||||
fprintf(stderr, "Failed to subscribe to new blocks. Error: %d\n", subscribe_status);
|
||||
return result::err("Failed to subscribe to new blocks.");
|
||||
}
|
||||
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::stop() {
|
||||
@ -425,9 +367,11 @@ StdLogosResult LogosBlockchainModule::stop() {
|
||||
|
||||
s_instance = nullptr;
|
||||
|
||||
OperationStatus status = shutdown_node(node);
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Could not stop the node: %s\n", operation_status::take_message(status).c_str());
|
||||
const OperationStatus status = stop_node(node);
|
||||
if (is_ok(&status)) {
|
||||
fprintf(stderr, "The node was stopped successfully.\n");
|
||||
} else {
|
||||
fprintf(stderr, "Could not stop the node. Error: %d\n", status);
|
||||
}
|
||||
|
||||
node = nullptr;
|
||||
@ -443,8 +387,12 @@ StdLogosResult LogosBlockchainModule::update_user_config(
|
||||
const std::string config = localPathFromFileUrl(user_config_path);
|
||||
const std::string keystore = localPathFromFileUrl(keystore_path);
|
||||
|
||||
OperationStatus status = ::update_user_config(config.c_str(), keystore.c_str());
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status = ::update_user_config(config.c_str(), keystore.c_str());
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to update user config. Error: %d\n", status);
|
||||
return result::err("Failed to update user config.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::migrate_user_config(
|
||||
@ -454,8 +402,12 @@ StdLogosResult LogosBlockchainModule::migrate_user_config(
|
||||
const std::string output = localPathFromFileUrl(output_path);
|
||||
const std::string keystore = localPathFromFileUrl(keystore_path);
|
||||
|
||||
OperationStatus status = ::migrate_user_config(output.c_str(), keystore.c_str());
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status = ::migrate_user_config(output.c_str(), keystore.c_str());
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to migrate user config. Error: %d\n", status);
|
||||
return result::err("Failed to migrate user config.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::migrate_user_config_0_1_2(
|
||||
@ -467,8 +419,13 @@ StdLogosResult LogosBlockchainModule::migrate_user_config_0_1_2(
|
||||
const std::string old_config = localPathFromFileUrl(old_config_path);
|
||||
const std::string keystore = localPathFromFileUrl(keystore_path);
|
||||
|
||||
OperationStatus status = ::migrate_user_config_0_1_2(new_config.c_str(), old_config.c_str(), keystore.c_str());
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status =
|
||||
::migrate_user_config_0_1_2(new_config.c_str(), old_config.c_str(), keystore.c_str());
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to migrate 0.1.2 config. Error: %d\n", status);
|
||||
return result::err("Failed to migrate 0.1.2 config.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::participate(
|
||||
@ -482,8 +439,13 @@ StdLogosResult LogosBlockchainModule::participate(
|
||||
const std::string output = localPathFromFileUrl(output_dir);
|
||||
const char* external_address_ptr = external_address.empty() ? nullptr : external_address.c_str();
|
||||
|
||||
OperationStatus status = ::participate(config.c_str(), keystore.c_str(), output.c_str(), external_address_ptr);
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status =
|
||||
::participate(config.c_str(), keystore.c_str(), output.c_str(), external_address_ptr);
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to generate participation data. Error: %d\n", status);
|
||||
return result::err("Failed to generate participation data.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
// Keystore
|
||||
@ -505,13 +467,14 @@ StdLogosResult LogosBlockchainModule::generate_key(
|
||||
|
||||
auto [value, error] = ::generate_key(config.c_str(), keystore.c_str(), type, key_title_ptr);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to generate key. Error: %d\n", error);
|
||||
return result::err("Failed to generate key: " + std::to_string(error));
|
||||
}
|
||||
|
||||
const std::string out(value);
|
||||
OperationStatus free_status = free_cstring(value);
|
||||
const OperationStatus free_status = free_cstring(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free key id string: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free key id string. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(out);
|
||||
}
|
||||
@ -533,8 +496,12 @@ StdLogosResult LogosBlockchainModule::add_key(
|
||||
const std::string keystore = localPathFromFileUrl(keystore_path);
|
||||
const char* key_title_ptr = key_title.empty() ? nullptr : key_title.c_str();
|
||||
|
||||
OperationStatus status = ::add_key(config.c_str(), keystore.c_str(), type, key_hex.c_str(), key_title_ptr);
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status = ::add_key(config.c_str(), keystore.c_str(), type, key_hex.c_str(), key_title_ptr);
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to add key. Error: %d\n", status);
|
||||
return result::err("Failed to add key.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
StdLogosResult LogosBlockchainModule::remove_key(
|
||||
@ -545,8 +512,12 @@ StdLogosResult LogosBlockchainModule::remove_key(
|
||||
const std::string config = localPathFromFileUrl(user_config_path);
|
||||
const std::string keystore = localPathFromFileUrl(keystore_path);
|
||||
|
||||
OperationStatus status = ::remove_key(config.c_str(), keystore.c_str(), key_title.c_str());
|
||||
return result::from_operation_status(status);
|
||||
const OperationStatus status = ::remove_key(config.c_str(), keystore.c_str(), key_title.c_str());
|
||||
if (!is_ok(&status)) {
|
||||
fprintf(stderr, "Failed to remove key. Error: %d\n", status);
|
||||
return result::err("Failed to remove key.");
|
||||
}
|
||||
return result::ok();
|
||||
}
|
||||
|
||||
// Identity
|
||||
@ -556,13 +527,14 @@ StdLogosResult LogosBlockchainModule::get_peer_id(const std::string& config_path
|
||||
|
||||
auto [value, error] = ::get_peer_id(config.c_str());
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get peer id. Error: %d\n", error);
|
||||
return result::err("Failed to get peer id: " + std::to_string(error));
|
||||
}
|
||||
|
||||
const std::string out(value);
|
||||
OperationStatus free_status = free_cstring(value);
|
||||
const OperationStatus free_status = free_cstring(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free peer id string: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free peer id string. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(out);
|
||||
}
|
||||
@ -582,7 +554,7 @@ StdLogosResult LogosBlockchainModule::wallet_get_balance(const std::string& addr
|
||||
|
||||
auto [value, error] = get_balance(node, bytes.data(), nullptr);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to get balance: " + std::to_string(error));
|
||||
}
|
||||
|
||||
return result::ok(std::to_string(value));
|
||||
@ -650,7 +622,7 @@ StdLogosResult LogosBlockchainModule::wallet_transfer_funds(
|
||||
|
||||
auto [value, error] = transfer_funds(node, &args);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to transfer funds: " + std::to_string(error));
|
||||
}
|
||||
return result::ok(bytes_to_hex(reinterpret_cast<const uint8_t*>(&value), ADDRESS_BYTES));
|
||||
}
|
||||
@ -662,7 +634,8 @@ StdLogosResult LogosBlockchainModule::wallet_get_known_addresses() const {
|
||||
}
|
||||
auto [value, error] = get_known_addresses(node);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get known addresses. Error: %d\n", error);
|
||||
return result::err("Failed to get known addresses: " + std::to_string(error));
|
||||
}
|
||||
std::vector<std::string> out;
|
||||
for (size_t i = 0; i < value.len; ++i) {
|
||||
@ -672,9 +645,9 @@ StdLogosResult LogosBlockchainModule::wallet_get_known_addresses() const {
|
||||
out.push_back(bytes_to_hex(ptr, ADDRESS_BYTES));
|
||||
}
|
||||
}
|
||||
OperationStatus free_status = free_known_addresses(value);
|
||||
const OperationStatus free_status = free_known_addresses(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free known addresses: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free known addresses. Error: %d\n", free_status);
|
||||
}
|
||||
fprintf(
|
||||
stderr,
|
||||
@ -710,7 +683,7 @@ StdLogosResult LogosBlockchainModule::wallet_get_notes(
|
||||
|
||||
auto [value, error] = get_wallet_notes(node, address_bytes.data(), optional_tip);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to get wallet notes: " + std::to_string(error));
|
||||
}
|
||||
|
||||
json obj;
|
||||
@ -726,9 +699,9 @@ StdLogosResult LogosBlockchainModule::wallet_get_notes(
|
||||
}
|
||||
obj["notes"] = std::move(notes);
|
||||
|
||||
OperationStatus free_status = free_wallet_notes(value);
|
||||
const OperationStatus free_status = free_wallet_notes(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free wallet notes: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free wallet notes. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(obj.dump());
|
||||
}
|
||||
@ -740,7 +713,7 @@ StdLogosResult LogosBlockchainModule::leader_claim() const {
|
||||
|
||||
auto [value, error] = ::leader_claim(node);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to claim leader rewards: " + std::to_string(error));
|
||||
}
|
||||
|
||||
return result::ok(bytes_to_hex(reinterpret_cast<const uint8_t*>(&value), TX_HASH_BYTES));
|
||||
@ -805,7 +778,7 @@ StdLogosResult LogosBlockchainModule::channel_deposit(
|
||||
|
||||
auto [value, error] = ::channel_deposit(node, &args);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to deposit into channel: " + std::to_string(error));
|
||||
}
|
||||
return result::ok(bytes_to_hex(reinterpret_cast<const uint8_t*>(&value), ADDRESS_BYTES));
|
||||
}
|
||||
@ -901,7 +874,7 @@ StdLogosResult LogosBlockchainModule::channel_deposit_with_notes(
|
||||
|
||||
auto [value, error] = ::channel_deposit_with_notes(node, &args);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to deposit into channel: " + std::to_string(error));
|
||||
}
|
||||
return result::ok(bytes_to_hex(reinterpret_cast<const uint8_t*>(&value), ADDRESS_BYTES));
|
||||
}
|
||||
@ -913,7 +886,7 @@ StdLogosResult LogosBlockchainModule::wallet_get_claimable_vouchers() const {
|
||||
|
||||
auto [value, error] = get_claimable_vouchers(node, nullptr);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to get claimable vouchers: " + std::to_string(error));
|
||||
}
|
||||
|
||||
json obj;
|
||||
@ -928,9 +901,9 @@ StdLogosResult LogosBlockchainModule::wallet_get_claimable_vouchers() const {
|
||||
});
|
||||
}
|
||||
|
||||
OperationStatus free_status = free_claimable_vouchers(value);
|
||||
const OperationStatus free_status = free_claimable_vouchers(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free claimable vouchers: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free claimable vouchers. Error: %d\n", free_status);
|
||||
}
|
||||
|
||||
return result::ok(obj.dump());
|
||||
@ -939,15 +912,23 @@ StdLogosResult LogosBlockchainModule::wallet_get_claimable_vouchers() const {
|
||||
// Blend
|
||||
|
||||
StdLogosResult LogosBlockchainModule::blend_join_as_core_node(
|
||||
const std::string& locator,
|
||||
const std::string& locked_note_id_hex
|
||||
const std::string& provider_id_hex,
|
||||
const std::string& zk_id_hex,
|
||||
const std::string& locked_note_id_hex,
|
||||
const std::vector<std::string>& locators
|
||||
) const {
|
||||
if (!node) {
|
||||
return result::err("The node is not running.");
|
||||
}
|
||||
|
||||
if (locator.empty()) {
|
||||
return result::err("Invalid locator (must not be empty).");
|
||||
const std::vector<uint8_t> provider_id_bytes = parse_address_hex(provider_id_hex);
|
||||
if (provider_id_bytes.empty() || static_cast<int>(provider_id_bytes.size()) != ADDRESS_BYTES) {
|
||||
return result::err("Invalid provider_id_hex (64 hex characters required).");
|
||||
}
|
||||
|
||||
const std::vector<uint8_t> zk_id_bytes = parse_address_hex(zk_id_hex);
|
||||
if (zk_id_bytes.empty() || static_cast<int>(zk_id_bytes.size()) != ADDRESS_BYTES) {
|
||||
return result::err("Invalid zk_id_hex (64 hex characters required).");
|
||||
}
|
||||
|
||||
const std::vector<uint8_t> locked_note_id_bytes = parse_address_hex(locked_note_id_hex);
|
||||
@ -955,13 +936,23 @@ StdLogosResult LogosBlockchainModule::blend_join_as_core_node(
|
||||
return result::err("Invalid locked_note_id_hex (64 hex characters required).");
|
||||
}
|
||||
|
||||
// locators_ptrs holds raw pointers into the std::strings (valid as long as `locators` lives).
|
||||
std::vector<const char*> locators_ptrs;
|
||||
locators_ptrs.reserve(locators.size());
|
||||
for (const std::string& locator : locators) {
|
||||
locators_ptrs.push_back(locator.c_str());
|
||||
}
|
||||
|
||||
auto [value, error] = ::blend_join_as_core_node(
|
||||
node,
|
||||
locator.c_str(),
|
||||
locked_note_id_bytes.data()
|
||||
provider_id_bytes.data(),
|
||||
zk_id_bytes.data(),
|
||||
locked_note_id_bytes.data(),
|
||||
locators_ptrs.data(),
|
||||
locators_ptrs.size()
|
||||
);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
return result::err("Failed to join as core node: " + std::to_string(error));
|
||||
}
|
||||
|
||||
std::string declaration_id = bytes_to_hex(reinterpret_cast<const uint8_t*>(&value), sizeof(value));
|
||||
@ -983,13 +974,14 @@ StdLogosResult LogosBlockchainModule::get_block(const std::string& header_id_hex
|
||||
|
||||
auto [value, error] = ::get_block(node, reinterpret_cast<const HeaderId*>(bytes.data()));
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get block. Error: %d\n", error);
|
||||
return result::err("Failed to get block: " + std::to_string(error));
|
||||
}
|
||||
|
||||
std::string out(value);
|
||||
OperationStatus free_status = free_cstring(value);
|
||||
const OperationStatus free_status = free_cstring(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free block string: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free block string. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(std::move(out));
|
||||
}
|
||||
@ -1001,13 +993,14 @@ StdLogosResult LogosBlockchainModule::get_blocks(const uint64_t from_slot, const
|
||||
|
||||
auto [value, error] = ::get_blocks(node, from_slot, to_slot);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get blocks. Error: %d\n", error);
|
||||
return result::err("Failed to get blocks: " + std::to_string(error));
|
||||
}
|
||||
|
||||
std::string out(value);
|
||||
OperationStatus free_status = free_cstring(value);
|
||||
const OperationStatus free_status = free_cstring(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free blocks string: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free blocks string. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(std::move(out));
|
||||
}
|
||||
@ -1024,13 +1017,14 @@ StdLogosResult LogosBlockchainModule::get_transaction(const std::string& tx_hash
|
||||
|
||||
auto [value, error] = ::get_transaction(node, reinterpret_cast<const TxHash*>(bytes.data()));
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get transaction. Error: %d\n", error);
|
||||
return result::err("Failed to get transaction: " + std::to_string(error));
|
||||
}
|
||||
|
||||
std::string out(value);
|
||||
OperationStatus free_status = free_cstring(value);
|
||||
const OperationStatus free_status = free_cstring(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free transaction string: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free transaction string. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(std::move(out));
|
||||
}
|
||||
@ -1044,7 +1038,8 @@ StdLogosResult LogosBlockchainModule::get_cryptarchia_info() const {
|
||||
|
||||
auto [value, error] = ::get_cryptarchia_info(node);
|
||||
if (!is_ok(&error)) {
|
||||
return result::err(operation_status::take_message(error));
|
||||
fprintf(stderr, "Failed to get cryptarchia info. Error: %d\n", error);
|
||||
return result::err("Failed to get cryptarchia info: " + std::to_string(error));
|
||||
}
|
||||
|
||||
json obj;
|
||||
@ -1054,9 +1049,9 @@ StdLogosResult LogosBlockchainModule::get_cryptarchia_info() const {
|
||||
obj["height"] = static_cast<int64_t>(value->height);
|
||||
obj["mode"] = (value->mode == State::Online) ? "Online" : "Bootstrapping";
|
||||
|
||||
OperationStatus free_status = free_cryptarchia_info(value);
|
||||
const OperationStatus free_status = free_cryptarchia_info(value);
|
||||
if (!is_ok(&free_status)) {
|
||||
fprintf(stderr, "Failed to free cryptarchia info: %s\n", operation_status::take_message(free_status).c_str());
|
||||
fprintf(stderr, "Failed to free cryptarchia info. Error: %d\n", free_status);
|
||||
}
|
||||
return result::ok(obj.dump());
|
||||
}
|
||||
|
||||
@ -26,15 +26,7 @@ public:
|
||||
[[nodiscard]] StdLogosResult stop();
|
||||
|
||||
// Config management
|
||||
// Not static: when the JSON args set "use_persistence_paths": true it routes
|
||||
// the node's output/state/storage/logs paths under instancePersistencePath()
|
||||
// (config at <base>/<relative output>; state/db/logs at <base>/state, /db,
|
||||
// /logs), so it needs the instance context. Basecamp opts in via that flag;
|
||||
// logoscore-cli/standalone omit it and keep their own paths. An explicit
|
||||
// state/storage/logs path always wins; output is always re-anchored under the
|
||||
// base when flagged. On success the result value is the path the config was
|
||||
// written to — pass it straight to start().
|
||||
[[nodiscard]] StdLogosResult generate_user_config(const std::string& json_args) const;
|
||||
[[nodiscard]] static StdLogosResult generate_user_config(const std::string& json_args);
|
||||
[[nodiscard]] static StdLogosResult update_user_config(
|
||||
const std::string& user_config_path,
|
||||
const std::string& keystore_path
|
||||
@ -130,8 +122,10 @@ public:
|
||||
|
||||
// Blend
|
||||
[[nodiscard]] StdLogosResult blend_join_as_core_node(
|
||||
const std::string& locator,
|
||||
const std::string& locked_note_id_hex
|
||||
const std::string& provider_id_hex,
|
||||
const std::string& zk_id_hex,
|
||||
const std::string& locked_note_id_hex,
|
||||
const std::vector<std::string>& locators
|
||||
) const;
|
||||
|
||||
// Explorer
|
||||
|
||||
@ -6,15 +6,6 @@
|
||||
#include <logos_blockchain.h>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
#include <string>
|
||||
|
||||
// Captures the paths passed to the most recent generate_user_config call so tests
|
||||
// can assert the module's path routing. A null pointer is recorded as the
|
||||
// sentinel "<null>".
|
||||
std::string g_lastGeneratedOutput;
|
||||
std::string g_lastGeneratedStatePath;
|
||||
std::string g_lastGeneratedStoragePath;
|
||||
std::string g_lastGeneratedLogsPath;
|
||||
|
||||
static char s_fakeNode = 0;
|
||||
static CryptarchiaInfo s_fakeCryptarchiaInfo = {};
|
||||
@ -27,26 +18,15 @@ static uint8_t s_mockAddr3[32];
|
||||
static uint8_t* s_mockAddrs[] = { s_mockAddr0, s_mockAddr1, s_mockAddr2, s_mockAddr3 };
|
||||
static ClaimableVoucher s_mockClaimableVouchers[4];
|
||||
|
||||
static OperationStatus make_status(int code) {
|
||||
OperationStatus s;
|
||||
s.code = static_cast<OperationStatusCode>(code);
|
||||
s.message = code != 0 ? strdup("mock error") : nullptr;
|
||||
return s;
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
|
||||
bool is_ok(const OperationStatus* status) {
|
||||
return status && status->code == OperationStatusCode_Ok;
|
||||
return status && *status == 0;
|
||||
}
|
||||
|
||||
OperationStatus generate_user_config(GenerateConfigArgs args) {
|
||||
LOGOS_CMOCK_RECORD("generate_user_config");
|
||||
g_lastGeneratedOutput = args.output ? args.output : "<null>";
|
||||
g_lastGeneratedStatePath = args.state_path ? args.state_path : "<null>";
|
||||
g_lastGeneratedStoragePath = args.storage_path ? args.storage_path : "<null>";
|
||||
g_lastGeneratedLogsPath = args.logs_path ? args.logs_path : "<null>";
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "generate_user_config"));
|
||||
return LOGOS_CMOCK_RETURN(int, "generate_user_config");
|
||||
}
|
||||
|
||||
NodeResult start_lb_node(const char* config_path, const char* deployment) {
|
||||
@ -54,23 +34,23 @@ NodeResult start_lb_node(const char* config_path, const char* deployment) {
|
||||
int ok = LOGOS_CMOCK_RETURN(int, "start_lb_node");
|
||||
NodeResult result;
|
||||
result.value = ok ? reinterpret_cast<LogosBlockchainNode*>(&s_fakeNode) : nullptr;
|
||||
result.error = make_status(ok ? 0 : 1);
|
||||
result.error = ok ? 0 : 1;
|
||||
return result;
|
||||
}
|
||||
|
||||
OperationStatus shutdown_node(LogosBlockchainNode* node) {
|
||||
LOGOS_CMOCK_RECORD("shutdown_node");
|
||||
return make_status(0);
|
||||
OperationStatus stop_node(LogosBlockchainNode* node) {
|
||||
LOGOS_CMOCK_RECORD("stop_node");
|
||||
return 0;
|
||||
}
|
||||
|
||||
OperationStatus update_user_config(const char* user_config_path, const char* keystore_path) {
|
||||
LOGOS_CMOCK_RECORD("update_user_config");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "update_user_config"));
|
||||
return LOGOS_CMOCK_RETURN(int, "update_user_config");
|
||||
}
|
||||
|
||||
OperationStatus migrate_user_config(const char* output_path, const char* keystore_path) {
|
||||
LOGOS_CMOCK_RECORD("migrate_user_config");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "migrate_user_config"));
|
||||
return LOGOS_CMOCK_RETURN(int, "migrate_user_config");
|
||||
}
|
||||
|
||||
OperationStatus migrate_user_config_0_1_2(
|
||||
@ -79,7 +59,7 @@ OperationStatus migrate_user_config_0_1_2(
|
||||
const char* keystore_path)
|
||||
{
|
||||
LOGOS_CMOCK_RECORD("migrate_user_config_0_1_2");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "migrate_user_config_0_1_2"));
|
||||
return LOGOS_CMOCK_RETURN(int, "migrate_user_config_0_1_2");
|
||||
}
|
||||
|
||||
OperationStatus participate(
|
||||
@ -89,7 +69,7 @@ OperationStatus participate(
|
||||
const char* external_address)
|
||||
{
|
||||
LOGOS_CMOCK_RECORD("participate");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "participate"));
|
||||
return LOGOS_CMOCK_RETURN(int, "participate");
|
||||
}
|
||||
|
||||
StringResult generate_key(
|
||||
@ -102,7 +82,7 @@ StringResult generate_key(
|
||||
StringResult result;
|
||||
const char* id = LOGOS_CMOCK_RETURN_STRING("generate_key");
|
||||
result.value = id ? strdup(id) : nullptr;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "generate_key_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "generate_key_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -114,7 +94,7 @@ OperationStatus add_key(
|
||||
const char* key_title)
|
||||
{
|
||||
LOGOS_CMOCK_RECORD("add_key");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "add_key"));
|
||||
return LOGOS_CMOCK_RETURN(int, "add_key");
|
||||
}
|
||||
|
||||
OperationStatus remove_key(
|
||||
@ -123,7 +103,7 @@ OperationStatus remove_key(
|
||||
const char* key_title)
|
||||
{
|
||||
LOGOS_CMOCK_RECORD("remove_key");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "remove_key"));
|
||||
return LOGOS_CMOCK_RETURN(int, "remove_key");
|
||||
}
|
||||
|
||||
StringResult get_peer_id(const char* config_path) {
|
||||
@ -131,20 +111,20 @@ StringResult get_peer_id(const char* config_path) {
|
||||
StringResult result;
|
||||
const char* id = LOGOS_CMOCK_RETURN_STRING("get_peer_id");
|
||||
result.value = id ? strdup(id) : nullptr;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_peer_id_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_peer_id_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
OperationStatus subscribe_to_new_blocks(LogosBlockchainNode* node, BlockCallback callback) {
|
||||
LOGOS_CMOCK_RECORD("subscribe_to_new_blocks");
|
||||
return make_status(LOGOS_CMOCK_RETURN(int, "subscribe_to_new_blocks"));
|
||||
return LOGOS_CMOCK_RETURN(int, "subscribe_to_new_blocks");
|
||||
}
|
||||
|
||||
BalanceResult get_balance(LogosBlockchainNode* node, const uint8_t* address, const void* reserved) {
|
||||
LOGOS_CMOCK_RECORD("get_balance");
|
||||
BalanceResult result;
|
||||
result.value = static_cast<uint64_t>(LOGOS_CMOCK_RETURN(int, "get_balance_value"));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_balance_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_balance_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -152,7 +132,7 @@ TransferHashResult transfer_funds(LogosBlockchainNode* node, const TransferFunds
|
||||
LOGOS_CMOCK_RECORD("transfer_funds");
|
||||
TransferHashResult result;
|
||||
memset(result.value, 0xAB, sizeof(Hash));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "transfer_funds_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "transfer_funds_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -160,7 +140,7 @@ FfiLeaderClaimResult leader_claim(LogosBlockchainNode* node) {
|
||||
LOGOS_CMOCK_RECORD("leader_claim");
|
||||
FfiLeaderClaimResult result;
|
||||
memset(result.value, 0xEF, sizeof(TxHash));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "leader_claim_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "leader_claim_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -168,7 +148,7 @@ KnownAddressesResult get_known_addresses(LogosBlockchainNode* node) {
|
||||
LOGOS_CMOCK_RECORD("get_known_addresses");
|
||||
KnownAddressesResult result;
|
||||
int err = LOGOS_CMOCK_RETURN(int, "get_known_addresses_error");
|
||||
result.error = make_status(err);
|
||||
result.error = err;
|
||||
if (err == 0) {
|
||||
int count = LOGOS_CMOCK_RETURN(int, "get_known_addresses_count");
|
||||
if (count > 4) count = 4;
|
||||
@ -187,14 +167,14 @@ KnownAddressesResult get_known_addresses(LogosBlockchainNode* node) {
|
||||
|
||||
OperationStatus free_known_addresses(KnownAddresses addrs) {
|
||||
LOGOS_CMOCK_RECORD("free_known_addresses");
|
||||
return make_status(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
FfiClaimableVouchersResult get_claimable_vouchers(LogosBlockchainNode* node, const HeaderId* optional_tip) {
|
||||
LOGOS_CMOCK_RECORD("get_claimable_vouchers");
|
||||
FfiClaimableVouchersResult result;
|
||||
int err = LOGOS_CMOCK_RETURN(int, "get_claimable_vouchers_error");
|
||||
result.error = make_status(err);
|
||||
result.error = err;
|
||||
if (err == 0) {
|
||||
int count = LOGOS_CMOCK_RETURN(int, "get_claimable_vouchers_count");
|
||||
if (count > 4) count = 4;
|
||||
@ -215,7 +195,7 @@ FfiClaimableVouchersResult get_claimable_vouchers(LogosBlockchainNode* node, con
|
||||
|
||||
OperationStatus free_claimable_vouchers(ClaimableVouchers vouchers) {
|
||||
LOGOS_CMOCK_RECORD("free_claimable_vouchers");
|
||||
return make_status(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Wallet-notes mock storage (up to 4 notes)
|
||||
@ -230,7 +210,7 @@ FfiWalletNotesResult get_wallet_notes(
|
||||
FfiWalletNotesResult result;
|
||||
memset(&result.value, 0, sizeof(WalletNotes));
|
||||
int err = LOGOS_CMOCK_RETURN(int, "get_wallet_notes_error");
|
||||
result.error = make_status(err);
|
||||
result.error = err;
|
||||
if (err == 0) {
|
||||
int count = LOGOS_CMOCK_RETURN(int, "get_wallet_notes_count");
|
||||
if (count > 4) count = 4;
|
||||
@ -248,14 +228,14 @@ FfiWalletNotesResult get_wallet_notes(
|
||||
|
||||
OperationStatus free_wallet_notes(WalletNotes notes) {
|
||||
LOGOS_CMOCK_RECORD("free_wallet_notes");
|
||||
return make_status(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
FfiChannelDepositResult channel_deposit(LogosBlockchainNode* node, const ChannelDepositArguments* arguments) {
|
||||
LOGOS_CMOCK_RECORD("channel_deposit");
|
||||
FfiChannelDepositResult result;
|
||||
memset(result.value, 0xBC, sizeof(Hash));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "channel_deposit_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "channel_deposit_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -266,19 +246,22 @@ FfiChannelDepositResult channel_deposit_with_notes(
|
||||
LOGOS_CMOCK_RECORD("channel_deposit_with_notes");
|
||||
FfiChannelDepositResult result;
|
||||
memset(result.value, 0xDE, sizeof(Hash));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "channel_deposit_with_notes_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "channel_deposit_with_notes_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
BlendHashResult blend_join_as_core_node(
|
||||
LogosBlockchainNode* node,
|
||||
const char* locator,
|
||||
const uint8_t* locked_note_id)
|
||||
const uint8_t* provider_id,
|
||||
const uint8_t* zk_id,
|
||||
const uint8_t* locked_note_id,
|
||||
const char** locators,
|
||||
size_t locators_count)
|
||||
{
|
||||
LOGOS_CMOCK_RECORD("blend_join_as_core_node");
|
||||
BlendHashResult result;
|
||||
memset(result.value, 0xCD, sizeof(Hash));
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "blend_join_as_core_node_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "blend_join_as_core_node_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -287,7 +270,7 @@ StringResult get_block(LogosBlockchainNode* node, const HeaderId* header_id) {
|
||||
StringResult result;
|
||||
const char* json = LOGOS_CMOCK_RETURN_STRING("get_block");
|
||||
result.value = json ? strdup(json) : nullptr;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_block_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_block_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -296,7 +279,7 @@ StringResult get_blocks(LogosBlockchainNode* node, uint64_t from_slot, uint64_t
|
||||
StringResult result;
|
||||
const char* json = LOGOS_CMOCK_RETURN_STRING("get_blocks");
|
||||
result.value = json ? strdup(json) : nullptr;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_blocks_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_blocks_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -305,7 +288,7 @@ StringResult get_transaction(LogosBlockchainNode* node, const TxHash* tx_hash) {
|
||||
StringResult result;
|
||||
const char* json = LOGOS_CMOCK_RETURN_STRING("get_transaction");
|
||||
result.value = json ? strdup(json) : nullptr;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_transaction_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_transaction_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -319,19 +302,19 @@ CryptarchiaInfoResult get_cryptarchia_info(LogosBlockchainNode* node) {
|
||||
memset(s_fakeCryptarchiaInfo.lib, 0xEE, 32);
|
||||
memset(s_fakeCryptarchiaInfo.tip, 0xFF, 32);
|
||||
result.value = &s_fakeCryptarchiaInfo;
|
||||
result.error = make_status(LOGOS_CMOCK_RETURN(int, "get_cryptarchia_info_error"));
|
||||
result.error = LOGOS_CMOCK_RETURN(int, "get_cryptarchia_info_error");
|
||||
return result;
|
||||
}
|
||||
|
||||
OperationStatus free_cryptarchia_info(CryptarchiaInfo* info) {
|
||||
LOGOS_CMOCK_RECORD("free_cryptarchia_info");
|
||||
return make_status(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
OperationStatus free_cstring(char* s) {
|
||||
LOGOS_CMOCK_RECORD("free_cstring");
|
||||
free(s);
|
||||
return make_status(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // extern "C"
|
||||
|
||||
@ -21,28 +21,8 @@ typedef Hash NoteId;
|
||||
// Opaque node handle
|
||||
typedef struct LogosBlockchainNode LogosBlockchainNode;
|
||||
|
||||
// Operation status code (0 = OK)
|
||||
typedef enum OperationStatusCode {
|
||||
OperationStatusCode_Ok = 0,
|
||||
OperationStatusCode_NotFound = 1,
|
||||
OperationStatusCode_NullPointer = 2,
|
||||
OperationStatusCode_RelayError = 3,
|
||||
OperationStatusCode_ChannelSendError = 4,
|
||||
OperationStatusCode_ChannelReceiveError = 5,
|
||||
OperationStatusCode_ServiceError = 6,
|
||||
OperationStatusCode_RuntimeError = 7,
|
||||
OperationStatusCode_DynError = 8,
|
||||
OperationStatusCode_InitializationError = 9,
|
||||
OperationStatusCode_StopError = 10,
|
||||
OperationStatusCode_ConfigurationError = 11,
|
||||
OperationStatusCode_ValidationError = 12,
|
||||
} OperationStatusCode;
|
||||
|
||||
// Operation status: code + Rust-allocated error message (free with free_cstring).
|
||||
typedef struct {
|
||||
OperationStatusCode code;
|
||||
char* message;
|
||||
} OperationStatus;
|
||||
// Operation status (0 = OK)
|
||||
typedef int OperationStatus;
|
||||
|
||||
// Consensus state enum
|
||||
typedef enum { Bootstrapping, Online } State;
|
||||
@ -60,9 +40,7 @@ typedef struct {
|
||||
const char* http_addr;
|
||||
const char* external_address;
|
||||
const char* state_path;
|
||||
const char* storage_path;
|
||||
const char* logs_path;
|
||||
const bool* skip_ibd;
|
||||
const bool* ibd;
|
||||
const char* log_filter;
|
||||
const char* kms_file;
|
||||
} GenerateConfigArgs;
|
||||
@ -162,7 +140,7 @@ bool is_ok(const OperationStatus* status);
|
||||
// Lifecycle
|
||||
OperationStatus generate_user_config(GenerateConfigArgs args);
|
||||
NodeResult start_lb_node(const char* config_path, const char* deployment);
|
||||
OperationStatus shutdown_node(LogosBlockchainNode* node);
|
||||
OperationStatus stop_node(LogosBlockchainNode* node);
|
||||
OperationStatus subscribe_to_new_blocks(LogosBlockchainNode* node, BlockCallback callback);
|
||||
|
||||
// Config management
|
||||
@ -221,8 +199,11 @@ OperationStatus free_claimable_vouchers(ClaimableVouchers vouchers);
|
||||
// Blend
|
||||
BlendHashResult blend_join_as_core_node(
|
||||
LogosBlockchainNode* node,
|
||||
const char* locator,
|
||||
const uint8_t* locked_note_id);
|
||||
const uint8_t* provider_id,
|
||||
const uint8_t* zk_id,
|
||||
const uint8_t* locked_note_id,
|
||||
const char** locators,
|
||||
size_t locators_count);
|
||||
|
||||
// Explorer
|
||||
StringResult get_block(LogosBlockchainNode* node, const HeaderId* header_id);
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
|
||||
#include <cstdlib>
|
||||
#include <filesystem>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <unistd.h>
|
||||
#include <vector>
|
||||
@ -39,7 +40,16 @@ struct TempDir {
|
||||
};
|
||||
|
||||
// Helper: create a module with a running (mocked) node.
|
||||
// Sets up circuits directory, LOGOS_MODULE_PATH env, and calls start().
|
||||
static LogosBlockchainModule* createStartedModule(LogosTestContext& t, TempDir& tmpDir) {
|
||||
fs::create_directories(tmpDir.path / "circuits");
|
||||
{
|
||||
std::ofstream f((tmpDir.path / "circuits" / "dummy.bin").string());
|
||||
f << "x";
|
||||
}
|
||||
|
||||
setenv("LOGOS_MODULE_PATH", tmpDir.path.string().c_str(), 1);
|
||||
|
||||
auto* module = new LogosBlockchainModule();
|
||||
|
||||
t.mockCFunction("start_lb_node").returns(1);
|
||||
@ -86,122 +96,6 @@ LOGOS_TEST(generate_user_config_from_json_string) {
|
||||
LOGOS_ASSERT(t.cFunctionCalled("generate_user_config"));
|
||||
}
|
||||
|
||||
// The mock records the paths handed to the FFI (see mock_logos_blockchain.cpp).
|
||||
extern std::string g_lastGeneratedOutput;
|
||||
extern std::string g_lastGeneratedStatePath;
|
||||
extern std::string g_lastGeneratedStoragePath;
|
||||
extern std::string g_lastGeneratedLogsPath;
|
||||
|
||||
static void clearGeneratedPaths() {
|
||||
g_lastGeneratedOutput.clear();
|
||||
g_lastGeneratedStatePath.clear();
|
||||
g_lastGeneratedStoragePath.clear();
|
||||
g_lastGeneratedLogsPath.clear();
|
||||
}
|
||||
|
||||
// Basecamp opts in with the flag: output and state/storage/logs are routed under
|
||||
// the per-instance persistence dir. The output keeps its given path as the
|
||||
// relative part below the base.
|
||||
LOGOS_TEST(generate_user_config_routes_paths_under_persistence_when_flagged) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
module._logosCoreSetContext_("/mod", "id", "/persist/data");
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
StdLogosResult result =
|
||||
module.generate_user_config(R"({"output":"config/user_config.yaml","use_persistence_paths":true})");
|
||||
LOGOS_ASSERT_TRUE(result.success);
|
||||
// The resolved config path is returned for the caller to hand to start().
|
||||
LOGOS_ASSERT_EQ(result.value.get<std::string>(), std::string("/persist/data/config/user_config.yaml"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedOutput, std::string("/persist/data/config/user_config.yaml"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStatePath, std::string("/persist/data/state"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStoragePath, std::string("/persist/data/db"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedLogsPath, std::string("/persist/data/logs"));
|
||||
}
|
||||
|
||||
// A root-anchored output (the UI's "//user_config.yaml" artifact) is treated as
|
||||
// relative to the base, not written to the read-only filesystem root.
|
||||
LOGOS_TEST(generate_user_config_routes_root_anchored_output_under_persistence) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
module._logosCoreSetContext_("/mod", "id", "/persist/data");
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
LOGOS_ASSERT_TRUE(
|
||||
module.generate_user_config(R"({"output":"//user_config.yaml","use_persistence_paths":true})").success);
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedOutput, std::string("/persist/data/user_config.yaml"));
|
||||
}
|
||||
|
||||
// With no output given, the config defaults to <base>/user_config.yaml.
|
||||
LOGOS_TEST(generate_user_config_defaults_output_under_persistence) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
module._logosCoreSetContext_("/mod", "id", "/persist/data");
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
LOGOS_ASSERT_TRUE(module.generate_user_config(R"({"use_persistence_paths":true})").success);
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedOutput, std::string("/persist/data/user_config.yaml"));
|
||||
}
|
||||
|
||||
// A host load WITHOUT the flag (e.g. logoscore-cli) does NOT redirect any path,
|
||||
// even though the persistence path is populated.
|
||||
LOGOS_TEST(generate_user_config_host_without_flag_leaves_paths_unset) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
module._logosCoreSetContext_("/mod", "id", "/persist/data");
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
StdLogosResult result = module.generate_user_config(R"({"output":"/tmp/out.json"})");
|
||||
LOGOS_ASSERT_TRUE(result.success);
|
||||
// Without routing, the caller's output is returned unchanged.
|
||||
LOGOS_ASSERT_EQ(result.value.get<std::string>(), std::string("/tmp/out.json"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedOutput, std::string("/tmp/out.json"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStatePath, std::string("<null>"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStoragePath, std::string("<null>"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedLogsPath, std::string("<null>"));
|
||||
}
|
||||
|
||||
// An explicitly provided path wins over the flag; the others are still routed.
|
||||
LOGOS_TEST(generate_user_config_explicit_path_wins_over_flag) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
module._logosCoreSetContext_("/mod", "id", "/persist/data");
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
LOGOS_ASSERT_TRUE(
|
||||
module.generate_user_config(
|
||||
R"({"output":"/tmp/out.json","state_path":"/tmp/state","use_persistence_paths":true})").success);
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStatePath, std::string("/tmp/state"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStoragePath, std::string("/persist/data/db"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedLogsPath, std::string("/persist/data/logs"));
|
||||
}
|
||||
|
||||
// The flag with no host context (standalone) leaves paths unset.
|
||||
LOGOS_TEST(generate_user_config_flag_without_context_leaves_paths_unset) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
|
||||
t.mockCFunction("generate_user_config").returns(0);
|
||||
clearGeneratedPaths();
|
||||
|
||||
LOGOS_ASSERT_TRUE(
|
||||
module.generate_user_config(R"({"output":"/tmp/out.json","use_persistence_paths":true})").success);
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedOutput, std::string("/tmp/out.json"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStatePath, std::string("<null>"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedStoragePath, std::string("<null>"));
|
||||
LOGOS_ASSERT_EQ(g_lastGeneratedLogsPath, std::string("<null>"));
|
||||
}
|
||||
|
||||
LOGOS_TEST(generate_user_config_with_all_fields) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
@ -292,7 +186,7 @@ LOGOS_TEST(wallet_get_known_addresses_without_node_returns_error) {
|
||||
LOGOS_TEST(blend_join_as_core_node_without_node_returns_error) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
LogosBlockchainModule module;
|
||||
StdLogosResult result = module.blend_join_as_core_node("locator1", VALID_HEX);
|
||||
StdLogosResult result = module.blend_join_as_core_node(VALID_HEX, VALID_HEX, VALID_HEX, {"locator1"});
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "not running"));
|
||||
}
|
||||
@ -354,7 +248,7 @@ LOGOS_TEST(stop_succeeds_with_running_node) {
|
||||
LOGOS_ASSERT_TRUE(module != nullptr);
|
||||
|
||||
LOGOS_ASSERT_TRUE(module->stop().success);
|
||||
LOGOS_ASSERT(t.cFunctionCalled("shutdown_node"));
|
||||
LOGOS_ASSERT(t.cFunctionCalled("stop_node"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -475,15 +369,27 @@ LOGOS_TEST(wallet_transfer_funds_rejects_invalid_optional_tip) {
|
||||
|
||||
// blend_join_as_core_node validation
|
||||
|
||||
LOGOS_TEST(blend_join_rejects_empty_locator) {
|
||||
LOGOS_TEST(blend_join_rejects_invalid_provider_id) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
TempDir tmpDir;
|
||||
auto* module = createStartedModule(t, tmpDir);
|
||||
LOGOS_ASSERT_TRUE(module != nullptr);
|
||||
|
||||
StdLogosResult result = module->blend_join_as_core_node("", VALID_HEX);
|
||||
StdLogosResult result = module->blend_join_as_core_node("short", VALID_HEX, VALID_HEX, {});
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "locator"));
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "provider_id"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
LOGOS_TEST(blend_join_rejects_invalid_zk_id) {
|
||||
auto t = LogosTestContext("blockchain_module");
|
||||
TempDir tmpDir;
|
||||
auto* module = createStartedModule(t, tmpDir);
|
||||
LOGOS_ASSERT_TRUE(module != nullptr);
|
||||
|
||||
StdLogosResult result = module->blend_join_as_core_node(VALID_HEX, "short", VALID_HEX, {});
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "zk_id"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -493,7 +399,7 @@ LOGOS_TEST(blend_join_rejects_invalid_locked_note_id) {
|
||||
auto* module = createStartedModule(t, tmpDir);
|
||||
LOGOS_ASSERT_TRUE(module != nullptr);
|
||||
|
||||
StdLogosResult result = module->blend_join_as_core_node("locator1", "short");
|
||||
StdLogosResult result = module->blend_join_as_core_node(VALID_HEX, VALID_HEX, "short", {});
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "locked_note_id"));
|
||||
delete module;
|
||||
@ -650,6 +556,7 @@ LOGOS_TEST(leader_claim_returns_error_on_ffi_failure) {
|
||||
|
||||
StdLogosResult result = module->leader_claim();
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "Failed to claim leader rewards"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -694,7 +601,7 @@ LOGOS_TEST(channel_deposit_returns_error_on_ffi_failure) {
|
||||
|
||||
StdLogosResult result = module->channel_deposit(VALID_HEX, VALID_HEX, "100", "", "");
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "mock error"));
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "Failed to deposit into channel"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -816,7 +723,7 @@ LOGOS_TEST(wallet_get_notes_returns_error_on_ffi_failure) {
|
||||
|
||||
StdLogosResult result = module->wallet_get_notes(VALID_HEX, "");
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "mock error"));
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "Failed to get wallet notes"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -861,7 +768,7 @@ LOGOS_TEST(channel_deposit_with_notes_returns_error_on_ffi_failure) {
|
||||
StdLogosResult result = module->channel_deposit_with_notes(
|
||||
VALID_HEX, {VALID_HEX}, "", VALID_HEX, {VALID_HEX}, "0", "");
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "mock error"));
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "Failed to deposit into channel"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -1009,7 +916,7 @@ LOGOS_TEST(wallet_get_claimable_vouchers_returns_error_on_ffi_failure) {
|
||||
|
||||
StdLogosResult result = module->wallet_get_claimable_vouchers();
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "mock error"));
|
||||
LOGOS_ASSERT_TRUE(contains(result.error, "Failed to get claimable vouchers"));
|
||||
delete module;
|
||||
}
|
||||
|
||||
@ -1023,7 +930,8 @@ LOGOS_TEST(blend_join_as_core_node_returns_declaration_id) {
|
||||
|
||||
t.mockCFunction("blend_join_as_core_node_error").returns(0);
|
||||
|
||||
StdLogosResult result = module->blend_join_as_core_node("locator1", VALID_HEX);
|
||||
std::vector<std::string> locators = {"locator1", "locator2"};
|
||||
StdLogosResult result = module->blend_join_as_core_node(VALID_HEX, VALID_HEX, VALID_HEX, locators);
|
||||
LOGOS_ASSERT_TRUE(result.success);
|
||||
// Mock fills hash with 0xCD -> hex "cdcd...cd" (64 chars)
|
||||
std::string declarationId = result.value.get<std::string>();
|
||||
@ -1041,7 +949,7 @@ LOGOS_TEST(blend_join_as_core_node_returns_error_on_ffi_failure) {
|
||||
|
||||
t.mockCFunction("blend_join_as_core_node_error").returns(1);
|
||||
|
||||
StdLogosResult result = module->blend_join_as_core_node("locator1", VALID_HEX);
|
||||
StdLogosResult result = module->blend_join_as_core_node(VALID_HEX, VALID_HEX, VALID_HEX, {});
|
||||
LOGOS_ASSERT_FALSE(result.success);
|
||||
delete module;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user