1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
/*
* Copyright (C) 2012 Nokia Corporation.
* Copyright (C) 2012 Intel Corporation.
*
* Author: Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
* Rygel is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Rygel 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
public const string DIDL_ITEM = """<?xml version="1.0" encoding="UTF-8"?>
<DIDL-Lite
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/"
xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/
http://www.upnp.org/schemas/av/didl-lite-v2-20060531.xsd
urn:schemas-upnp-org:metadata-1-0/upnp/
http://www.upnp.org/schemas/av/upnp-v2-20060531.xsd">
<item id="" parentID="0" restricted="0">
<dc:title>New Song</dc:title>
<upnp:class>object.item.audioItem</upnp:class>
<res protocolInfo="*:*:*:*" />
</item>
</DIDL-Lite>""";
public class Rygel.ServiceAction : GLib.Object {
public int error_code;
public string error_message;
public string id;
public string elements;
public ServiceAction (string? container_id,
string? elements) {
this.id = container_id;
this.elements = elements;
}
public void return_success() {}
public void return_error (int code, string message) {
this.error_code = code;
this.error_message = message;
}
public new void @get (string arg1_name,
Type arg1_type,
out string arg1_val,
string arg2_name,
Type arg2_type,
out string arg2_val) {
assert (arg1_name == "ContainerID");
assert (arg1_type == typeof (string));
arg1_val = id;
assert (arg2_name == "Elements");
assert (arg2_type == typeof (string));
arg2_val = elements;
}
public new void @set (string arg1_name,
Type arg1_type,
string arg1_val,
string arg2_name,
Type arg2_type,
string arg2_val) {
assert (arg1_name == "ObjectID");
assert (arg1_type == typeof (string));
assert (arg2_name == "Result");
assert (arg2_type == typeof (string));
}
}
public class Rygel.HTTPServer : GLib.Object {
}
public class Rygel.ObjectRemovalQueue : GLib.Object {
public static ObjectRemovalQueue get_default () {
return new ObjectRemovalQueue ();
}
public void queue (MediaObject object, Cancellable? cancellable) {
}
}
public class Rygel.MediaServerPlugin : GLib.Object {
public GLib.List<DLNAProfile> upload_profiles = new GLib.List<DLNAProfile>
();
}
public class Rygel.MediaObject : GLib.Object {
public string id {get; set; }
public string ref_id;
public unowned MediaContainer parent { get; set; }
public string upnp_class;
public string title { get; set; }
public GUPnP.OCMFlags ocm_flags;
public Gee.ArrayList<string> uris;
public uint object_update_id;
public void add_uri (string uri) {
this.uris.add (uri);
}
public Gee.ArrayList<string> get_uris () { return this.uris; }
public string get_primary_uri () { return this.uris[0]; }
internal void serialize (Rygel.Serializer serializer, HTTPServer server) {
}
public void apply_didl_lite (GUPnP.DIDLLiteObject object) {
}
public virtual async MediaObjects? get_children
(uint offset,
uint max_count,
string sort_criteria,
Cancellable? cancellable)
throws Error {
return null;
}
public virtual async MediaObject? find_object (string id,
Cancellable? cancellable)
throws Error {
return null;
}
}
public interface Rygel.TrackableContainer : Rygel.MediaContainer {
}
public interface Rygel.TrackableItem : Rygel.MediaItem {
}
public class Rygel.MediaItem : Rygel.MediaObject {
}
public class Rygel.MediaFileItem : Rygel.MediaItem {
public string dlna_profile;
public string mime_type;
public long size;
public bool place_holder;
public string date;
public MediaFileItem (string id, MediaContainer parent, string title) {
this.id = id;
this.parent = parent;
this.title = title;
}
}
public class Rygel.MusicItem : Rygel.AudioItem {
public new const string UPNP_CLASS = "object.item.audioItem.musicTrack";
public MusicItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.AudioItem : Rygel.MediaFileItem {
public const string UPNP_CLASS = "object.item.audioItem";
public string artist;
public string album;
public AudioItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.ImageItem : Rygel.MediaFileItem {
public new const string UPNP_CLASS = "object.item.imageItem";
public ImageItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.VideoItem : Rygel.MediaFileItem {
public const string UPNP_CLASS = "object.item.videoItem";
public VideoItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.PhotoItem : Rygel.MediaFileItem {
public const string UPNP_CLASS = "object.item.imageItem.photo";
public string creator;
public PhotoItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.PlaylistItem : Rygel.MediaFileItem {
public const string UPNP_CLASS = "object.item.playlistItem";
public PlaylistItem (string id, MediaContainer parent, string title) {
base (id, parent, title);
}
}
public class Rygel.RootDevice : GLib.Object {
public MediaServerPlugin resource_factory;
public RootDevice () {
this.resource_factory = new MediaServerPlugin ();
}
}
public class Rygel.ContentDirectory : GLib.Object {
public Cancellable cancellable;
public MediaContainer root_container;
public HTTPServer http_server;
public RootDevice root_device;
public ContentDirectory () {
this.root_device = new RootDevice ();
}
}
public class Rygel.MediaContainer : Rygel.MediaObject {
public Gee.ArrayList<string> create_classes = new Gee.ArrayList<string> ();
public int child_count { get; set; }
public string sort_criteria = "+dc:title";
public const string ANY = "DLNA.ORG_AnyContainer";
public const string UPNP_CLASS = "object.container";
public const string STORAGE_FOLDER = "object.container.storageFolder";
public const string PLAYLIST = "object.container.playlistContainer";
public uint update_id;
// mockable elements
public MediaObject found_object = null;
public override async MediaObject? find_object (string id,
Cancellable? cancellable = null)
throws Error {
Idle.add (() => { find_object.callback (); return false; });
yield;
return found_object;
}
public signal void container_updated (MediaContainer container);
}
public class Rygel.MediaObjects : Gee.ArrayList<MediaObject> {
}
public class Rygel.WritableContainer : Rygel.MediaContainer {
public bool can_create (string upnp_class) {
return this.create_classes.contains (upnp_class);
}
public async File? get_writable (Cancellable? cancellable = null) {
return File.new_for_commandline_arg ("/tmp");
}
public async void add_item (MediaItem item,
Cancellable? cancellable = null) {
}
public async void add_container (MediaContainer container, Cancellable?
cancellable = null) { }
}
public class Rygel.SearchableContainer : Rygel.MediaContainer {
public MediaObjects result = new MediaObjects ();
public async MediaObjects search (SearchExpression expression,
int offset,
int count,
string soer_criteria,
Cancellable? cancellable,
out int total_matches) {
total_matches = 0;
Idle.add (() => { search.callback (); return false; });
yield;
return result;
}
}
public errordomain Rygel.ContentDirectoryError {
BAD_METADATA,
NO_SUCH_OBJECT,
NO_SUCH_CONTAINER,
INVALID_ARGS,
RESTRICTED_PARENT,
ERROR
}
public class Rygel.Transcoder {
}
public static void log_func (string? domain,
LogLevelFlags flags,
string message) {
// Ignore critical of gee 0.6 and recent glib
if (message.has_prefix ("Read-only property 'read-only-view' on class")) {
Log.default_handler (domain, flags, message);
return;
}
if (LogLevelFlags.LEVEL_CRITICAL in flags ||
LogLevelFlags.LEVEL_ERROR in flags ||
LogLevelFlags.FLAG_FATAL in flags) {
print ("======> FAILED: %s: %s\n", domain ?? "", message);
assert_not_reached ();
}
}
public class Rygel.HTTPObjectCreatorTest : GLib.Object {
public static int main (string[] args) {
Log.set_default_handler (log_func);
var test = new HTTPObjectCreatorTest ();
test.test_parse_args ();
test.test_didl_parsing ();
test.test_fetch_container ();
/* This is just here to avoid warnings about unused methods: */
var serializer = new Serializer (SerializerType.GENERIC_DIDL);
serializer.add_item ();
serializer.add_container ();
serializer.filter ("something");
return 0;
}
// expected errors
Error no_such_object;
Error no_such_container;
Error restricted_parent;
Error bad_metadata;
Error invalid_args;
public HTTPObjectCreatorTest () {
this.no_such_object = new ContentDirectoryError.NO_SUCH_OBJECT("");
this.no_such_container = new ContentDirectoryError.NO_SUCH_CONTAINER("");
this.restricted_parent = new ContentDirectoryError.RESTRICTED_PARENT("");
this.bad_metadata = new ContentDirectoryError.BAD_METADATA("");
this.invalid_args = new ContentDirectoryError.INVALID_ARGS("");
}
private void test_parse_args () {
// check null container id
var content_directory = new ContentDirectory ();
var action = new ServiceAction (null, "");
var creator = new ObjectCreator (content_directory, action);
creator.run.begin ();
assert (action.error_code == invalid_args.code);
// check elements containing a comment
action = new ServiceAction ("0", "<!-- This is an XML comment -->");
creator = new ObjectCreator (content_directory, action);
creator.run.begin ();
assert (action.error_code == bad_metadata.code);
// check null elements
action = new ServiceAction ("0", null);
creator = new ObjectCreator (content_directory, action);
creator.run.begin ();
assert (action.error_code == bad_metadata.code);
}
private void test_didl_parsing_step (Xml.Doc *doc, int expected_code) {
string xml;
doc->dump_memory_enc (out xml);
var action = new ServiceAction ("0", xml);
var content_directory = new ContentDirectory ();
var creator = new ObjectCreator (content_directory, action);
creator.run.begin ();
assert (action.error_code == expected_code);
}
private void test_didl_parsing () {
var xml = Xml.Parser.read_memory (DIDL_ITEM,
DIDL_ITEM.length,
null,
null,
Xml.ParserOption.RECOVER |
Xml.ParserOption.NOBLANKS);
var didl_node = xml->children;
var item_node = didl_node->children;
var content_directory = new ContentDirectory ();
// test no DIDL
var action = new ServiceAction ("0", "");
var creator = new ObjectCreator (content_directory, action);
creator.run.begin ();
assert (action.error_code == bad_metadata.code);
assert (action.error_message == "Bad metadata");
// test empty DIDL
item_node->unlink ();
didl_node->set_content (" ");
this.test_didl_parsing_step (xml, bad_metadata.code);
// test item node with missing restricted attribute
var tmp = item_node->copy (1);
tmp->unset_prop ("restricted");
didl_node->add_child (tmp);
this.test_didl_parsing_step (xml, bad_metadata.code);
// test item node with restricted=1
tmp->set_prop ("restricted", "1");
this.test_didl_parsing_step (xml, bad_metadata.code);
// test item node with invalid id
tmp->unlink ();
tmp = item_node->copy (1);
tmp->set_prop ("id", "InvalidItemId");
didl_node->add_child (tmp);
this.test_didl_parsing_step (xml, bad_metadata.code);
// test item node with missing id
tmp->unset_prop ("id");
this.test_didl_parsing_step (xml, bad_metadata.code);
// test item node with missing title
tmp->unlink ();
tmp = item_node->copy (1);
var title_node = tmp->children;
title_node->unlink ();
didl_node->add_child (tmp);
this.test_didl_parsing_step (xml, bad_metadata.code);
// test missing or empty upnp class
tmp->unlink ();
tmp = item_node->copy (1);
var class_node = tmp->children->next;
class_node->set_content ("");
this.test_didl_parsing_step (xml, bad_metadata.code);
class_node->unlink ();
this.test_didl_parsing_step (xml, bad_metadata.code);
}
private void test_fetch_container_run (ObjectCreator creator) {
var main_loop = new MainLoop (null, false);
creator.run.begin ( () => { main_loop.quit (); });
main_loop.run ();
}
private void test_fetch_container () {
// check case when object is not found
var content_directory = new ContentDirectory ();
var root_container = new SearchableContainer ();
content_directory.root_container = root_container;
var action = new ServiceAction ("0", DIDL_ITEM);
var creator = new ObjectCreator (content_directory, action);
this.test_fetch_container_run (creator);
assert (action.error_code == no_such_container.code);
// check case when found object is not a container → Error 710
// cf. ContentDirectory:2 spec, Table 2-22
root_container.found_object = new MediaObject ();
this.test_fetch_container_run (creator);
assert (action.error_code == no_such_container.code);
// check case when found container does not have OCMUpload set
root_container.found_object = new MediaContainer ();
this.test_fetch_container_run (creator);
assert (action.error_code == restricted_parent.code);
// check case when found container is not a writable container
root_container.found_object.ocm_flags |= GUPnP.OCMFlags.UPLOAD;
this.test_fetch_container_run (creator);
assert (action.error_code == restricted_parent.code);
// check when found container does not have the correct create class
var container = new WritableContainer ();
container.create_classes.add ("object.item.imageItem.musicTrack");
container.ocm_flags |= GUPnP.OCMFlags.UPLOAD;
root_container.found_object = container;
this.test_fetch_container_run (creator);
assert (action.error_code == bad_metadata.code);
// check DLNA.ORG_AnyContainer when root container is not searchable
content_directory.root_container = new MediaContainer ();
action.id = "DLNA.ORG_AnyContainer";
this.test_fetch_container_run (creator);
assert (action.error_code == no_such_container.code);
// check DLNA.ORG_AnyContainer when no writable container is found
content_directory.root_container = new SearchableContainer ();
this.test_fetch_container_run (creator);
// We cannot distinguish this case from the "create-class doesn't match"
// case
assert (action.error_code == bad_metadata.code);
}
}
|