test: update b_stream usage

This commit is contained in:
2025-10-24 12:51:54 +01:00
parent a956e21fc4
commit e499d8631f
12 changed files with 57 additions and 74 deletions

View File

@@ -12,23 +12,19 @@ int main(int argc, const char **argv)
const char *path_cstr = argv[1];
b_path *path = b_path_create_from_cstr(path_cstr);
b_file *file = NULL;
b_result result = b_file_open(NULL, path, B_FILE_READ_ONLY, &file);
b_file *src = NULL;
b_result result = b_file_open(NULL, path, B_FILE_READ_ONLY, &src);
if (b_result_is_error(result)) {
b_throw(result);
return -1;
}
b_stream *src_stream;
b_file_open_stream(file, &src_stream);
b_serial_ctx *ctx;
b_serial_ctx_create(&ctx);
b_object *data;
b_status status = b_serial_ctx_deserialise(
ctx, B_SERIAL_FORMAT_JSON, src_stream, &data, 0);
ctx, B_SERIAL_FORMAT_JSON, src, &data, 0);
if (!B_OK(status)) {
fprintf(stderr, "cannot read data\n");
return -1;
@@ -38,6 +34,7 @@ int main(int argc, const char **argv)
b_stream_write_char(b_stdout, '\n');
b_object_unref(data);
b_object_unref(src);
b_serial_ctx_destroy(ctx);
return 0;