Skip to content
Snippets Groups Projects
Commit 64347e67 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

tests: si-standard-link: test that endpoint-link properties are set

parent d8a42d2e
No related branches found
Tags apertis/0.4.2-3+apertis2
No related merge requests found
......@@ -214,6 +214,16 @@ test_si_standard_link_main (TestFixture * f, gconstpointer user_data)
g_assert_cmpuint (in_stream, ==, wp_proxy_get_bound_id (WP_PROXY (sink_stream)));
}
{
g_autoptr (WpProperties) p = wp_proxy_get_properties (WP_PROXY (ep_link));
g_assert_nonnull (p);
g_assert_nonnull (wp_properties_get (p, "endpoint-link.input.endpoint"));
g_assert_nonnull (wp_properties_get (p, "endpoint-link.input.stream"));
g_assert_nonnull (wp_properties_get (p, "endpoint-link.output.endpoint"));
g_assert_nonnull (wp_properties_get (p, "endpoint-link.output.stream"));
}
{
const gchar *error = NULL;
g_assert_cmpuint (wp_endpoint_link_get_state (ep_link, &error), ==,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment