From: Jan Schmidt Date: Mon, 16 Nov 2015 14:12:28 +0000 (+1100) Subject: test-auth: Use an 'anonymous' user for unauthenticated default X-Git-Tag: 1.19.3~495^2~587 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a062b9c562edd7d3456b1be1f00be50b0b27085e;p=platform%2Fupstream%2Fgstreamer.git test-auth: Use an 'anonymous' user for unauthenticated default There's a comment on one of the resources that 'user' and 'admin' shouldn't even be able to see it, but they can if the default token is 'admin2', since that gives them access anyway. --- diff --git a/examples/test-auth.c b/examples/test-auth.c index eff3c74..0087d8a 100644 --- a/examples/test-auth.c +++ b/examples/test-auth.c @@ -102,6 +102,10 @@ main (int argc, char *argv[]) gst_rtsp_media_factory_add_role (factory, "admin2", GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE, GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, FALSE, NULL); + /* Anonymous user can do the same things as admin2 on this resource */ + gst_rtsp_media_factory_add_role (factory, "anonymous", + GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE, + GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, FALSE, NULL); /* make another factory */ factory = gst_rtsp_media_factory_new (); @@ -124,10 +128,10 @@ main (int argc, char *argv[]) /* make a new authentication manager */ auth = gst_rtsp_auth_new (); - /* make default token, it has the same permissions as admin2 */ + /* make default token, it has no permissions */ token = gst_rtsp_token_new (GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE, G_TYPE_STRING, - "admin2", NULL); + "anonymous", NULL); gst_rtsp_auth_set_default_token (auth, token); gst_rtsp_token_unref (token);