ovni/test/unit/bay.c

76 lines
1.4 KiB
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
2023-01-12 19:16:52 +01:00
#include "emu/bay.h"
#include "common.h"
2023-01-11 13:15:53 +01:00
static void
test_duplicate(struct bay *bay)
{
struct chan chan;
chan_init(&chan, CHAN_SINGLE, "dup");
if (bay_register(bay, &chan) != 0)
die("bay_register failed\n");
if (bay_register(bay, &chan) == 0)
die("bay_register didn't fail\n");
}
2023-01-12 19:16:52 +01:00
static int
callback(struct chan *chan, void *ptr)
{
struct value value;
if (chan_read(chan, &value) != 0)
die("callback: chan_read failed\n");
if (value.type != VALUE_INT64)
die("callback: unexpected value type\n");
int64_t *ival = ptr;
*ival = value.i;
return 0;
}
2023-01-11 13:15:53 +01:00
static void
test_callback(struct bay *bay)
2023-01-12 19:16:52 +01:00
{
struct chan chan;
chan_init(&chan, CHAN_SINGLE, "testchan");
2023-01-11 13:15:53 +01:00
if (bay_register(bay, &chan) != 0)
die("bay_register failed\n");
2023-01-12 19:16:52 +01:00
int64_t data = 0;
2023-02-17 17:26:49 +01:00
if (bay_add_cb(bay, BAY_CB_DIRTY, &chan, callback, &data, 1) == NULL)
2023-01-11 13:15:53 +01:00
die("bay_add_cb failed\n");
2023-01-12 19:16:52 +01:00
if (data != 0)
die("data changed after bay_chan_append_cb\n");
2023-01-11 13:15:53 +01:00
if (chan_set(&chan, value_int64(1)) != 0)
2023-01-12 19:16:52 +01:00
die("chan_set failed\n");
if (data != 0)
die("data changed after chan_set\n");
/* Now the callback should modify 'data' */
2023-01-11 13:15:53 +01:00
if (bay_propagate(bay) != 0)
2023-01-12 19:16:52 +01:00
die("bay_propagate failed\n");
if (data != 1)
die("data didn't change after bay_propagate\n");
2023-01-11 13:15:53 +01:00
}
int main(void)
{
struct bay bay;
bay_init(&bay);
test_duplicate(&bay);
test_callback(&bay);
2023-01-12 19:16:52 +01:00
return 0;
}