Madeorsk
46b6f24432
+ Create ksrarrays. + Create ksrbuffers. + Create ksrpromises. + Create ksregex. + Create strings and files helper functions. + Define some logging constants. + Setup basic unit tests and code coverage.
70 lines
2.1 KiB
C
70 lines
2.1 KiB
C
#include <assert.h>
|
|
#include <ksr/promises.h>
|
|
#include <ksr/string.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
|
|
void promise_execution_ok(ksrpromise *promise, void *data)
|
|
{
|
|
// checking that user data has been properly transfered.
|
|
assert(data == NULL);
|
|
|
|
sleep(1);
|
|
// try to resolve the promise.
|
|
ksrpromise_resolve(promise, "OK");
|
|
}
|
|
|
|
void promise_execution_sigint(/*ksrpromise *promise, void *data*/)
|
|
{
|
|
// raise a signal to interrupt await.
|
|
raise(SIGINT);
|
|
}
|
|
|
|
void promise_execution_error(ksrpromise *promise, void *data)
|
|
{
|
|
// try to read the error details from user data ; the content will be checked in the catch callback.
|
|
const char* error = data;
|
|
sleep(1);
|
|
// try to reject the promise with an error.
|
|
ksrpromise_reject(promise, 124, error);
|
|
}
|
|
|
|
void on_promise_ok(void *result, void *userdata)
|
|
{
|
|
// checking that result and user data have been properly transfered.
|
|
assert(str_equals("OK", result));
|
|
assert(userdata == NULL);
|
|
}
|
|
|
|
void on_promise_failed(int error_code, const char *error_message, void *userdata)
|
|
{
|
|
// checking that error details and user data have been properly transfered.
|
|
assert(error_code == 124);
|
|
assert(str_equals("hello", error_message));
|
|
assert(str_equals("blabla", userdata));
|
|
}
|
|
|
|
int main(/*int argc, char *argv[]*/)
|
|
{
|
|
// try to create a promise.
|
|
ksrpromise *promise = ksrpromise_new(promise_execution_ok, NULL);
|
|
// checking that then is properly launched.
|
|
ksrpromise_then(promise, on_promise_ok, NULL);
|
|
// checking that await is working properly on a successful promise.
|
|
assert(str_equals("OK", ksrpromise_await(promise)));
|
|
|
|
// try to create a promise which fails.
|
|
ksrpromise *promise_fail = ksrpromise_new(promise_execution_error, "hello");
|
|
// checking that catch is properly launched.
|
|
ksrpromise_catch(promise_fail, on_promise_failed, "blabla");
|
|
// checking that await is working properly on a promise which fails.
|
|
assert(ksrpromise_await(promise_fail) == NULL);
|
|
|
|
// try to create a promise that will be interrupted.
|
|
ksrpromise *interrupted_promise = ksrpromise_new(promise_execution_sigint, NULL);
|
|
// checking that interruption is handled properly in an await.
|
|
assert(NULL == ksrpromise_await(interrupted_promise));
|
|
|
|
return 0;
|
|
}
|