2020-04-27 13:07:11 -04:00
|
|
|
/* WirePlumber
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2020 Collabora Ltd.
|
|
|
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "../common/base-test-fixture.h"
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
WpBaseTestFixture base;
|
|
|
|
|
} TestFixture;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
test_si_audio_softdsp_endpoint_setup (TestFixture * f, gconstpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
wp_base_test_fixture_setup (&f->base, 0);
|
|
|
|
|
|
|
|
|
|
/* load modules */
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpTestServerLocker) lock =
|
|
|
|
|
wp_test_server_locker_new (&f->base.server);
|
|
|
|
|
|
|
|
|
|
g_assert_cmpint (pw_context_add_spa_lib (f->base.server.context,
|
|
|
|
|
"fake*", "test/libspa-test"), ==, 0);
|
|
|
|
|
g_assert_cmpint (pw_context_add_spa_lib (f->base.server.context,
|
|
|
|
|
"audiotestsrc", "audiotestsrc/libspa-audiotestsrc"), ==, 0);
|
|
|
|
|
g_assert_nonnull (pw_context_load_module (f->base.server.context,
|
|
|
|
|
"libpipewire-module-spa-node-factory", NULL, NULL));
|
|
|
|
|
g_assert_nonnull (pw_context_load_module (f->base.server.context,
|
|
|
|
|
"libpipewire-module-adapter", NULL, NULL));
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
|
WpModule *module = wp_module_load (f->base.core, "C",
|
|
|
|
|
"libwireplumber-module-si-adapter", NULL, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_assert_nonnull (module);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
|
WpModule *module = wp_module_load (f->base.core, "C",
|
|
|
|
|
"libwireplumber-module-si-convert", NULL, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_assert_nonnull (module);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
|
WpModule *module = wp_module_load (f->base.core, "C",
|
|
|
|
|
"libwireplumber-module-si-audio-softdsp-endpoint", NULL, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_assert_nonnull (module);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
test_si_audio_softdsp_endpoint_teardown (TestFixture * f, gconstpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
wp_base_test_fixture_teardown (&f->base);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
test_si_audio_softdsp_endpoint_configure_activate (TestFixture * f,
|
|
|
|
|
gconstpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpNode) node = NULL;
|
|
|
|
|
g_autoptr (WpSessionItem) adapter = NULL;
|
|
|
|
|
g_autoptr (WpSessionItem) endpoint = NULL;
|
|
|
|
|
|
|
|
|
|
/* create audiotestsrc adapter node */
|
|
|
|
|
node = wp_node_new_from_factory (f->base.core,
|
|
|
|
|
"adapter",
|
|
|
|
|
wp_properties_new (
|
|
|
|
|
"factory.name", "audiotestsrc",
|
|
|
|
|
"node.name", "audiotestsrc.adapter",
|
|
|
|
|
NULL));
|
|
|
|
|
g_assert_nonnull (node);
|
|
|
|
|
wp_proxy_augment (WP_PROXY (node), WP_PROXY_FEATURES_STANDARD, NULL,
|
|
|
|
|
(GAsyncReadyCallback) test_proxy_augment_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
|
|
|
|
|
/* create adapter */
|
|
|
|
|
adapter = wp_session_item_make (f->base.core, "si-adapter");
|
|
|
|
|
g_assert_nonnull (adapter);
|
|
|
|
|
g_assert_true (WP_IS_SI_ENDPOINT (adapter));
|
|
|
|
|
|
|
|
|
|
/* configure adapter */
|
|
|
|
|
{
|
|
|
|
|
g_auto (GVariantBuilder) b =
|
|
|
|
|
G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_VARDICT);
|
|
|
|
|
g_variant_builder_add (&b, "{sv}", "node",
|
|
|
|
|
g_variant_new_uint64 ((guint64) node));
|
|
|
|
|
g_assert_true (
|
|
|
|
|
wp_session_item_configure (adapter, g_variant_builder_end (&b)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GVariant) v = wp_session_item_get_configuration (adapter);
|
|
|
|
|
guint64 node_i;
|
|
|
|
|
const gchar *str;
|
|
|
|
|
guchar dir;
|
|
|
|
|
guint32 prio;
|
|
|
|
|
guint32 channels;
|
|
|
|
|
g_assert_nonnull (v);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "node", "t", &node_i));
|
|
|
|
|
g_assert_cmpuint (node_i, ==, (guint64) node);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "name", "&s", &str));
|
|
|
|
|
g_assert_cmpstr (str, ==, "audiotestsrc.adapter");
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "media-class", "&s", &str));
|
|
|
|
|
g_assert_cmpstr (str, ==, "Audio/Source");
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "direction", "y", &dir));
|
|
|
|
|
g_assert_cmpuint (dir, ==, WP_DIRECTION_OUTPUT);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "priority", "u", &prio));
|
|
|
|
|
g_assert_cmpuint (prio, ==, 0);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "channels", "u", &channels));
|
|
|
|
|
g_assert_cmpuint (channels, ==, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* create audio softdsp endpoint */
|
|
|
|
|
endpoint = wp_session_item_make (f->base.core, "si-audio-softdsp-endpoint");
|
|
|
|
|
g_assert_nonnull (endpoint);
|
|
|
|
|
g_assert_true (WP_IS_SI_ENDPOINT (endpoint));
|
|
|
|
|
|
|
|
|
|
/* configure audio softdsp endpoint */
|
|
|
|
|
{
|
|
|
|
|
g_auto (GVariantBuilder) b =
|
|
|
|
|
G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_VARDICT);
|
|
|
|
|
g_variant_builder_add (&b, "{sv}", "adapter",
|
|
|
|
|
g_variant_new_uint64 ((guint64) adapter));
|
|
|
|
|
g_assert_true (
|
|
|
|
|
wp_session_item_configure (endpoint, g_variant_builder_end (&b)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_assert_cmphex (wp_session_item_get_flags (endpoint), ==,
|
|
|
|
|
WP_SI_FLAG_CONFIGURED);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GVariant) v = wp_session_item_get_configuration (endpoint);
|
|
|
|
|
guint64 adapter_i;
|
|
|
|
|
g_assert_nonnull (v);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "adapter", "t", &adapter_i));
|
|
|
|
|
g_assert_cmpuint (adapter_i, ==, (guint64) adapter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* activate audio softdsp endpoint */
|
|
|
|
|
{
|
|
|
|
|
wp_session_item_activate (endpoint,
|
|
|
|
|
(GAsyncReadyCallback) test_si_activate_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_assert_cmphex (wp_session_item_get_flags (endpoint), ==,
|
|
|
|
|
WP_SI_FLAG_CONFIGURED | WP_SI_FLAG_ACTIVE);
|
2020-05-04 16:04:37 +03:00
|
|
|
g_assert_cmphex (wp_session_item_get_flags (adapter), ==,
|
|
|
|
|
WP_SI_FLAG_CONFIGURED | WP_SI_FLAG_ACTIVE);
|
2020-04-27 13:07:11 -04:00
|
|
|
|
|
|
|
|
/* deactivate - configuration should not be altered */
|
|
|
|
|
|
|
|
|
|
wp_session_item_deactivate (endpoint);
|
|
|
|
|
|
|
|
|
|
g_assert_cmphex (wp_session_item_get_flags (endpoint), ==,
|
|
|
|
|
WP_SI_FLAG_CONFIGURED);
|
2020-05-04 16:04:37 +03:00
|
|
|
g_assert_cmphex (wp_session_item_get_flags (adapter), ==, 0);
|
2020-04-27 13:07:11 -04:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (GVariant) v = wp_session_item_get_configuration (endpoint);
|
|
|
|
|
guint64 adapter_i;
|
|
|
|
|
g_assert_nonnull (v);
|
|
|
|
|
g_assert_true (g_variant_lookup (v, "adapter", "t", &adapter_i));
|
|
|
|
|
g_assert_cmpuint (adapter_i, ==, (guint64) adapter);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-28 11:30:11 -04:00
|
|
|
static void
|
|
|
|
|
test_si_audio_softdsp_endpoint_export (TestFixture * f, gconstpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpNode) node = NULL;
|
|
|
|
|
g_autoptr (WpSession) session = NULL;
|
|
|
|
|
g_autoptr (WpSessionItem) item = NULL;
|
|
|
|
|
g_autoptr (WpSessionItem) adapter = NULL;
|
|
|
|
|
g_autoptr (WpObjectManager) clients_om = NULL;
|
|
|
|
|
g_autoptr (WpClient) self_client = NULL;
|
|
|
|
|
|
|
|
|
|
/* find self_client, to be used for verifying endpoint.client.id */
|
|
|
|
|
|
|
|
|
|
clients_om = wp_object_manager_new ();
|
|
|
|
|
wp_object_manager_add_interest (clients_om, WP_TYPE_CLIENT, NULL,
|
|
|
|
|
WP_PROXY_FEATURE_BOUND);
|
|
|
|
|
g_signal_connect_swapped (clients_om, "objects-changed",
|
|
|
|
|
G_CALLBACK (g_main_loop_quit), f->base.loop);
|
|
|
|
|
wp_core_install_object_manager (f->base.core, clients_om);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpIterator) it = wp_object_manager_iterate (clients_om);
|
|
|
|
|
g_auto (GValue) val = G_VALUE_INIT;
|
|
|
|
|
g_assert_true (wp_iterator_next (it, &val));
|
|
|
|
|
g_assert_nonnull (self_client = g_value_dup_object (&val));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* create item */
|
|
|
|
|
|
|
|
|
|
node = wp_node_new_from_factory (f->base.core,
|
|
|
|
|
"adapter",
|
|
|
|
|
wp_properties_new (
|
|
|
|
|
"factory.name", "audiotestsrc",
|
|
|
|
|
"node.name", "audiotestsrc.adapter",
|
|
|
|
|
NULL));
|
|
|
|
|
g_assert_nonnull (node);
|
|
|
|
|
wp_proxy_augment (WP_PROXY (node), WP_PROXY_FEATURES_STANDARD, NULL,
|
|
|
|
|
(GAsyncReadyCallback) test_proxy_augment_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
adapter = wp_session_item_make (f->base.core, "si-adapter");
|
|
|
|
|
g_assert_nonnull (adapter);
|
|
|
|
|
g_assert_true (WP_IS_SI_ENDPOINT (adapter));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_auto (GVariantBuilder) b =
|
|
|
|
|
G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_VARDICT);
|
|
|
|
|
g_variant_builder_add (&b, "{sv}", "node",
|
|
|
|
|
g_variant_new_uint64 ((guint64) node));
|
|
|
|
|
g_assert_true (
|
|
|
|
|
wp_session_item_configure (adapter, g_variant_builder_end (&b)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
item = wp_session_item_make (f->base.core, "si-audio-softdsp-endpoint");
|
|
|
|
|
g_assert_nonnull (item);
|
|
|
|
|
g_assert_true (WP_IS_SI_ENDPOINT (item));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_auto (GVariantBuilder) b =
|
|
|
|
|
G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_VARDICT);
|
|
|
|
|
g_variant_builder_add (&b, "{sv}", "adapter",
|
|
|
|
|
g_variant_new_uint64 ((guint64) adapter));
|
|
|
|
|
g_assert_true (
|
|
|
|
|
wp_session_item_configure (item, g_variant_builder_end (&b)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* activate */
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
wp_session_item_activate (item,
|
|
|
|
|
(GAsyncReadyCallback) test_si_activate_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* create session */
|
|
|
|
|
|
|
|
|
|
session = WP_SESSION (wp_impl_session_new (f->base.core));
|
|
|
|
|
g_assert_nonnull (session);
|
|
|
|
|
|
|
|
|
|
wp_proxy_augment (WP_PROXY (session), WP_SESSION_FEATURES_STANDARD, NULL,
|
|
|
|
|
(GAsyncReadyCallback) test_proxy_augment_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
|
|
|
|
|
/* export */
|
|
|
|
|
|
|
|
|
|
wp_session_item_export (item, session,
|
|
|
|
|
(GAsyncReadyCallback) test_si_export_finish_cb, f);
|
|
|
|
|
g_main_loop_run (f->base.loop);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
g_autoptr (WpEndpoint) ep = NULL;
|
|
|
|
|
g_autoptr (WpProperties) props = NULL;
|
|
|
|
|
gchar *tmp;
|
|
|
|
|
|
|
|
|
|
g_assert_nonnull (
|
|
|
|
|
ep = wp_session_item_get_associated_proxy (item, WP_TYPE_ENDPOINT));
|
|
|
|
|
g_assert_nonnull (props = wp_proxy_get_properties (WP_PROXY (ep)));
|
|
|
|
|
|
|
|
|
|
g_assert_cmpstr (wp_endpoint_get_name (ep), ==, "audiotestsrc.adapter");
|
|
|
|
|
g_assert_cmpstr (wp_endpoint_get_media_class (ep), ==,
|
|
|
|
|
"Audio/Source");
|
|
|
|
|
g_assert_cmpint (wp_endpoint_get_direction (ep), ==, WP_DIRECTION_OUTPUT);
|
|
|
|
|
g_assert_cmpstr (wp_properties_get (props, "endpoint.name"), ==,
|
|
|
|
|
"audiotestsrc.adapter");
|
|
|
|
|
g_assert_cmpstr (wp_properties_get (props, "media.class"), ==,
|
|
|
|
|
"Audio/Source");
|
|
|
|
|
|
|
|
|
|
tmp = g_strdup_printf ("%d", wp_proxy_get_bound_id (WP_PROXY (session)));
|
|
|
|
|
g_assert_cmpstr (wp_properties_get (props, "session.id"), ==, tmp);
|
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
|
|
tmp = g_strdup_printf ("%d", wp_proxy_get_bound_id (WP_PROXY (node)));
|
|
|
|
|
g_assert_cmpstr (wp_properties_get (props, "node.id"), ==, tmp);
|
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
|
|
tmp = g_strdup_printf ("%d", wp_proxy_get_bound_id (WP_PROXY (self_client)));
|
|
|
|
|
g_assert_cmpstr (wp_properties_get (props, "endpoint.client.id"), ==, tmp);
|
|
|
|
|
g_free (tmp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-27 13:07:11 -04:00
|
|
|
gint
|
|
|
|
|
main (gint argc, gchar *argv[])
|
|
|
|
|
{
|
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
|
pw_init (NULL, NULL);
|
|
|
|
|
g_log_set_writer_func (wp_log_writer_default, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
/* configure-activate */
|
|
|
|
|
|
|
|
|
|
g_test_add ("/modules/si-audio-softdsp-endpoint/configure-activate",
|
|
|
|
|
TestFixture, NULL,
|
|
|
|
|
test_si_audio_softdsp_endpoint_setup,
|
|
|
|
|
test_si_audio_softdsp_endpoint_configure_activate,
|
|
|
|
|
test_si_audio_softdsp_endpoint_teardown);
|
|
|
|
|
|
2020-04-28 11:30:11 -04:00
|
|
|
/* export */
|
|
|
|
|
|
|
|
|
|
g_test_add ("/modules/si-audio-softdsp-endpoint/export",
|
|
|
|
|
TestFixture, NULL,
|
|
|
|
|
test_si_audio_softdsp_endpoint_setup,
|
|
|
|
|
test_si_audio_softdsp_endpoint_export,
|
|
|
|
|
test_si_audio_softdsp_endpoint_teardown);
|
|
|
|
|
|
2020-04-27 13:07:11 -04:00
|
|
|
return g_test_run ();
|
|
|
|
|
}
|