gstreamer/tests/check/gst/mountpoints.c
Wim Taymans df08a2dd9e mount-points: improve mount point searching
Use a GSequence to keep track of the mount points.
Match a URL to the longest matching registered mount point. This should be the
URL to perform aggreagate control and the remainder is the stream specific
control part.
Add some unit tests for this.
2013-07-03 10:45:51 +02:00

133 lines
4 KiB
C

/* GStreamer
* Copyright (C) 2012 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <gst/check/gstcheck.h>
#include <rtsp-mount-points.h>
GST_START_TEST (test_create)
{
GstRTSPMountPoints *mounts;
GstRTSPUrl *url, *url2;
GstRTSPMediaFactory *factory;
mounts = gst_rtsp_mount_points_new ();
fail_unless (gst_rtsp_url_parse ("rtsp://localhost:8554/test",
&url) == GST_RTSP_OK);
fail_unless (gst_rtsp_url_parse ("rtsp://localhost:8554/test2",
&url2) == GST_RTSP_OK);
fail_unless (gst_rtsp_mount_points_find_factory (mounts, url) == NULL);
factory = gst_rtsp_media_factory_new ();
gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
fail_unless (gst_rtsp_mount_points_find_factory (mounts, url) == factory);
g_object_unref (factory);
fail_unless (gst_rtsp_mount_points_find_factory (mounts, url2) == NULL);
gst_rtsp_mount_points_remove_factory (mounts, "/test");
fail_unless (gst_rtsp_mount_points_find_factory (mounts, url) == NULL);
fail_unless (gst_rtsp_mount_points_find_factory (mounts, url2) == NULL);
gst_rtsp_url_free (url);
gst_rtsp_url_free (url2);
g_object_unref (mounts);
}
GST_END_TEST;
static const gchar *paths[] = {
"/test",
"/booz/fooz",
"/booz/foo/zoop",
"/tark/bar",
"/tark/bar/baz",
"/tark/bar/baz/t",
"/boozop",
};
GST_START_TEST (test_match)
{
GstRTSPMountPoints *mounts;
GstRTSPMediaFactory *f[G_N_ELEMENTS (paths)], *tmp;
gint i, matched;
mounts = gst_rtsp_mount_points_new ();
for (i = 0; i < G_N_ELEMENTS (paths); i++) {
f[i] = gst_rtsp_media_factory_new ();
gst_rtsp_mount_points_add_factory (mounts, paths[i], f[i]);
}
tmp = gst_rtsp_mount_points_match (mounts, "/test", &matched);
fail_unless (tmp == f[0]);
fail_unless (matched == 5);
tmp = gst_rtsp_mount_points_match (mounts, "/test/stream=1", &matched);
fail_unless (tmp == f[0]);
fail_unless (matched == 5);
tmp = gst_rtsp_mount_points_match (mounts, "/booz", &matched);
fail_unless (tmp == NULL);
tmp = gst_rtsp_mount_points_match (mounts, "/booz/foo", &matched);
fail_unless (tmp == NULL);
tmp = gst_rtsp_mount_points_match (mounts, "/booz/fooz", &matched);
fail_unless (tmp == f[1]);
fail_unless (matched == 10);
tmp = gst_rtsp_mount_points_match (mounts, "/booz/fooz/zoo", &matched);
fail_unless (tmp == f[1]);
fail_unless (matched == 10);
tmp = gst_rtsp_mount_points_match (mounts, "/booz/foo/zoop", &matched);
fail_unless (tmp == f[2]);
fail_unless (matched == 14);
tmp = gst_rtsp_mount_points_match (mounts, "/tark/bar", &matched);
fail_unless (tmp == f[3]);
fail_unless (matched == 9);
tmp = gst_rtsp_mount_points_match (mounts, "/tark/bar/boo", &matched);
fail_unless (tmp == f[3]);
fail_unless (matched == 9);
tmp = gst_rtsp_mount_points_match (mounts, "/tark/bar/ba", &matched);
fail_unless (tmp == f[3]);
fail_unless (matched == 9);
tmp = gst_rtsp_mount_points_match (mounts, "/tark/bar/baz", &matched);
fail_unless (tmp == f[4]);
fail_unless (matched == 13);
g_object_unref (mounts);
}
GST_END_TEST;
static Suite *
rtspmountpoints_suite (void)
{
Suite *s = suite_create ("rtspmountpoints");
TCase *tc = tcase_create ("general");
suite_add_tcase (s, tc);
tcase_set_timeout (tc, 20);
tcase_add_test (tc, test_create);
tcase_add_test (tc, test_match);
return s;
}
GST_CHECK_MAIN (rtspmountpoints);