Asterisk - The Open Source Telephony Project
18.5.0
|
Test infrastructure for dealing with Stasis. More...
Go to the source code of this file.
Data Structures | |
struct | stasis_message_sink |
Structure that collects messages from a topic. More... | |
Macros | |
#define | STASIS_SINK_DEFAULT_WAIT 5000 |
Typedefs | |
typedef int(* | stasis_wait_cb) (struct stasis_message *msg, const void *data) |
Functions | |
stasis_subscription_cb | stasis_message_sink_cb (void) |
Topic callback to receive messages. More... | |
struct stasis_message_sink * | stasis_message_sink_create (void) |
Create a message sink. More... | |
int | stasis_message_sink_should_stay (struct stasis_message_sink *sink, int num_messages, int timeout_millis) |
Ensures that no new messages are received. More... | |
int | stasis_message_sink_wait_for (struct stasis_message_sink *sink, int start, stasis_wait_cb cmp_cb, const void *data, int timeout_millis) |
Wait for a message that matches the given criteria. More... | |
int | stasis_message_sink_wait_for_count (struct stasis_message_sink *sink, int num_messages, int timeout_millis) |
Wait for a sink's num_messages field to reach a certain level. More... | |
struct stasis_message * | stasis_test_message_create (void) |
Creates a test message. More... | |
struct stasis_message_type * | stasis_test_message_type (void) |
Gets the type of messages created by stasis_test_message_create(). More... | |
Test infrastructure for dealing with Stasis.
This file contains some helpful utilities for testing Stasis related topics and messages. The stasis_message_sink is something you can subscribe to a topic which will receive all of the messages from the topic. This messages are accumulated in its messages
field.
There are a set of wait functions (stasis_message_sink_wait_for_count(), stasis_message_sink_wait_for(), etc.) which will block waiting for conditions to be met in the stasis_message_sink.
Definition in file stasis_test.h.
#define STASIS_SINK_DEFAULT_WAIT 5000 |
Definition at line 41 of file stasis_test.h.
Referenced by AST_TEST_DEFINE().
typedef int(* stasis_wait_cb) (struct stasis_message *msg, const void *data) |
Definition at line 95 of file stasis_test.h.
stasis_subscription_cb stasis_message_sink_cb | ( | void | ) |
Topic callback to receive messages.
We return a function pointer instead of simply exposing the function because of the vagaries of dlopen(), RTLD_LAZY
, and function pointers. See the comment on the implementation for details why.
Definition at line 143 of file res_stasis_test.c.
References message_sink_cb().
Referenced by AST_TEST_DEFINE().
struct stasis_message_sink* stasis_message_sink_create | ( | void | ) |
Create a message sink.
This is an AO2 managed object, which you ao2_cleanup() when done. The destructor waits for an unsubscribe message to be received, to ensure the object isn't disposed of before the topic is finished.
Definition at line 79 of file res_stasis_test.c.
References ao2_alloc, ao2_cleanup, ao2_ref, ast_cond_init, ast_malloc, ast_mutex_init, NULL, RAII_VAR, and stasis_message_sink_dtor().
Referenced by AST_TEST_DEFINE().
int stasis_message_sink_should_stay | ( | struct stasis_message_sink * | sink, |
int | num_messages, | ||
int | timeout_millis | ||
) |
Ensures that no new messages are received.
The optional timeout prevents complete deadlock in a test.
sink | Sink to wait on. |
num_messages | expecte sink->num_messages. |
timeout_millis | Number of milliseconds to wait for. |
Definition at line 170 of file res_stasis_test.c.
References ast_cond_timedwait, ast_log, stasis_message_sink::cond, stasis_message_sink::lock, lock, LOG_ERROR, make_deadline(), stasis_message_sink::num_messages, and SCOPED_MUTEX.
int stasis_message_sink_wait_for | ( | struct stasis_message_sink * | sink, |
int | start, | ||
stasis_wait_cb | cmp_cb, | ||
const void * | data, | ||
int | timeout_millis | ||
) |
Wait for a message that matches the given criteria.
sink | Sink to wait on. |
start | Index of message to start with. |
cmp_cb | comparison function. This returns true (non-zero) on match and false (zero) on match. |
timeout_millis | Number of milliseconds to wait. |
Definition at line 191 of file res_stasis_test.c.
References ast_cond_timedwait, ast_log, stasis_message_sink::cond, stasis_message_sink::lock, lock, LOG_ERROR, make_deadline(), stasis_message_sink::messages, stasis_message_sink::num_messages, and SCOPED_MUTEX.
Referenced by AST_TEST_DEFINE().
int stasis_message_sink_wait_for_count | ( | struct stasis_message_sink * | sink, |
int | num_messages, | ||
int | timeout_millis | ||
) |
Wait for a sink's num_messages field to reach a certain level.
The optional timeout prevents complete deadlock in a test.
sink | Sink to wait on. |
num_messages | sink->num_messages value to wait for. |
timeout_millis | Number of milliseconds to wait. -1 to wait forever. |
Definition at line 149 of file res_stasis_test.c.
References ast_cond_timedwait, ast_log, stasis_message_sink::cond, stasis_message_sink::lock, lock, LOG_ERROR, make_deadline(), stasis_message_sink::num_messages, and SCOPED_MUTEX.
Referenced by AST_TEST_DEFINE().