summaryrefslogtreecommitdiff
path: root/tests/insanity-test-gst-dvd.c
blob: c7d5885bd146c90453602a2fc66891d86f864424 (plain)
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
/* Insanity QA system

 Copyright (c) 2012, Collabora Ltd
 Author: Vincent Penquerc'h <vincent@collabora.co.uk>

 This program 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.

 This program 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 program; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.
*/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <glib-object.h>
#include <gst/interfaces/navigation.h>
#include <insanity-gst/insanity-gst.h>

/* Number of random commands to send to move between menus */
#define MAX_RANDOM_COMMANDS 256

#define SEEK_TIMEOUT GST_SECOND

typedef enum
{
  NEXT_STEP_NOW,
  NEXT_STEP_ON_PLAYING,
  NEXT_STEP_RESTART_ON_PLAYING,
} NextStepTrigger;

static GstElement *global_pipeline = NULL;
static GstNavigation *global_nav = NULL;
static unsigned int global_state = 0;
static unsigned int global_next_state = 0;
static gboolean global_waiting_on_playing = FALSE;
static guint global_angle = 0;
static guint global_n_angles = 0;
static guint global_n_allowed_commands = 0;
static GstNavigationCommand global_allowed_commands[256];
static guint global_random_command_counter = 0;
static GRand *global_prg = NULL;
static guint global_state_change_timeout = 0;
static int global_longest_title = -1;

static void on_ready_for_next_state (InsanityGstPipelineTest * ptest,
    gboolean timeout);

static GstPipeline *
dvd_test_create_pipeline (InsanityGstPipelineTest * ptest, gpointer userdata)
{
  GstElement *pipeline = NULL;
  const char *launch_line = "playbin2 audio-sink=fakesink video-sink=fakesink";
  GError *error = NULL;

  pipeline = gst_parse_launch (launch_line, &error);
  if (!pipeline) {
    insanity_test_validate_checklist_item (INSANITY_TEST (ptest),
        "valid-pipeline", FALSE, error ? error->message : NULL);
    if (error)
      g_error_free (error);
    return NULL;
  } else if (error) {
    /* Do we get a dangling pointer here ? gst-launch.c does not unref */
    pipeline = NULL;
    insanity_test_validate_checklist_item (INSANITY_TEST (ptest),
        "valid-pipeline", FALSE, error->message);
    g_error_free (error);
    return NULL;
  }

  global_pipeline = pipeline;

  return GST_PIPELINE (pipeline);
}

static NextStepTrigger
send_dvd_command (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  gst_navigation_send_command (global_nav, data);
  return NEXT_STEP_ON_PLAYING;
}

static NextStepTrigger
retrieve_commands (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  InsanityTest *test = INSANITY_TEST (ptest);
  GstQuery *q;
  gboolean res;
  guint n_commands;
  GstNavigationCommand cmd;
  const char *extra_data_prefix = (const char *) data;

  global_n_allowed_commands = 0;

  q = gst_navigation_query_new_commands ();
  res = gst_element_query (GST_ELEMENT (global_nav), q);
  if (res) {
    res = gst_navigation_query_parse_commands_length (q, &n_commands);
    if (res) {
      if (n_commands <=
          sizeof (global_allowed_commands) /
          sizeof (global_allowed_commands[0])) {
        guint n;

        if (extra_data_prefix) {
          GValue v = { 0 };
          char *label;

          g_value_init (&v, G_TYPE_INT);
          g_value_set_int (&v, n_commands);
          label = g_strdup_printf ("commands.%s.n-commands", extra_data_prefix);
          insanity_test_set_extra_info (test, label, &v);
          g_free (label);
          g_value_unset (&v);
        }

        for (n = 0; n < n_commands; n++) {
          res = gst_navigation_query_parse_commands_nth (q, n, &cmd);
          if (res) {
            if (extra_data_prefix) {
              GValue v = { 0 };
              char *label;

              g_value_init (&v, G_TYPE_INT);
              g_value_set_int (&v, cmd);
              label =
                  g_strdup_printf ("commands.%s.command.%u", extra_data_prefix,
                  global_n_allowed_commands);
              insanity_test_set_extra_info (test, label, &v);
              g_free (label);
              g_value_unset (&v);
            }
            global_allowed_commands[global_n_allowed_commands++] = cmd;
          } else {
            insanity_test_validate_checklist_item (test, step, FALSE,
                "Failed to parse command query result");
            break;
          }
        }
        if (res) {
          insanity_test_validate_checklist_item (test, step, TRUE, NULL);
        }
      } else {
        insanity_test_validate_checklist_item (test, step, FALSE,
            "Too many commands in command query result");
      }
    } else {
      insanity_test_validate_checklist_item (test, step, FALSE,
          "Failed to parse command query result");
    }
  } else {
    insanity_test_validate_checklist_item (test, step, FALSE,
        "Failed to send command query");
  }
  gst_query_unref (q);
  return NEXT_STEP_NOW;
}

static NextStepTrigger
retrieve_angles (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  InsanityTest *test = INSANITY_TEST (ptest);
  GstQuery *q;
  gboolean res;
  const char *extra_data_prefix = (const char *) data;

  q = gst_navigation_query_new_angles ();
  res = gst_element_query (GST_ELEMENT (global_nav), q);
  if (res) {
    guint current, count;
    res = gst_navigation_query_parse_angles (q, &current, &count);
    if (res) {
      if (extra_data_prefix) {
        GValue v = { 0 };
        char *label;

        g_value_init (&v, G_TYPE_INT);
        g_value_set_int (&v, current);
        label = g_strdup_printf ("angles.%s.current", extra_data_prefix);
        insanity_test_set_extra_info (test, label, &v);
        g_free (label);
        g_value_unset (&v);

        g_value_init (&v, G_TYPE_INT);
        g_value_set_int (&v, count);
        label = g_strdup_printf ("angles.%s.n-angles", extra_data_prefix);
        insanity_test_set_extra_info (test, label, &v);
        g_free (label);
        g_value_unset (&v);
      }

      global_angle = current;
      global_n_angles = count;

      insanity_test_validate_checklist_item (test, step, TRUE, NULL);
    } else {
      insanity_test_validate_checklist_item (test, step, FALSE,
          "Failed to parse answer to angles query");
    }
  } else {
    insanity_test_validate_checklist_item (test, step, FALSE,
        "Failed to send angles query");
  }
  gst_query_unref (q);
  return NEXT_STEP_NOW;
}

static NextStepTrigger
cycle_angles (InsanityGstPipelineTest * ptest, const char *step, guintptr data)
{
  guint n;

  /* First retrieve amount of angles, will be saved globally */
  retrieve_angles (ptest, step, (guintptr) NULL);

  /* Then loop through each */
  for (n = global_n_angles; n > 0; --n) {
    gst_navigation_send_command (global_nav, GST_NAVIGATION_COMMAND_NEXT_ANGLE);
  }

  /* Again, other direction */
  for (n = global_n_angles; n > 0; --n) {
    gst_navigation_send_command (global_nav, GST_NAVIGATION_COMMAND_PREV_ANGLE);
  }

  /* Do we end up where we were ? Or do the next/prev stop at 0 and N-1 ? Samples have only 1 angle */

  return NEXT_STEP_NOW;
}

static NextStepTrigger
cycle_unused_commands (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  InsanityTest *test = INSANITY_TEST (ptest);
  guint n, i;

  /* First retrieve allowed commands, will be saved globally */
  retrieve_commands (ptest, step, (guintptr) NULL);

  /* Then loop through each of those which are not allowed */
  for (n = 0;
      n <
      sizeof (global_allowed_commands) / sizeof (global_allowed_commands[0]);
      ++n) {
    GstNavigationCommand cmd = (GstNavigationCommand) n;
    gboolean found = FALSE;

    for (i = 0; i < global_n_allowed_commands; ++i) {
      if (global_allowed_commands[i] == cmd) {
        found = TRUE;
        break;
      }
    }

    if (!found) {
      gst_navigation_send_command (global_nav, cmd);
    }
  }

  insanity_test_validate_checklist_item (test, "cycle-unused-commands", TRUE,
      NULL);

  return NEXT_STEP_NOW;
}

static gboolean
state_change_timeout (gpointer data)
{
  InsanityGstPipelineTest *ptest = data;

  on_ready_for_next_state (ptest, TRUE);

  return FALSE;
}

static NextStepTrigger
seek_to_main_title (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  InsanityTest *test = INSANITY_TEST (ptest);
  GstEvent *event;
  guint title;
  gboolean res;
  GstFormat title_format = gst_format_get_by_nick ("title");

  if (global_longest_title < 0) {
    insanity_test_printf (test, "Longest title not known, not seeking\n");
    return NEXT_STEP_NOW;
  }
  title = global_longest_title;

  /* Seek to the longest one */
  insanity_test_printf (test, "Seeking to title %u\n", title);
  event = gst_event_new_seek (1.0, title_format, GST_SEEK_FLAG_FLUSH,
      GST_SEEK_TYPE_SET, title, GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE);
  res = gst_element_send_event (global_pipeline, event);
  if (!res) {
    insanity_test_validate_checklist_item (INSANITY_TEST (ptest), step, FALSE,
        "Failed to send seek event");
    return NEXT_STEP_NOW;
  }
  gst_element_get_state (global_pipeline, NULL, NULL, SEEK_TIMEOUT);

  global_state_change_timeout =
      g_timeout_add (1000, (GSourceFunc) & state_change_timeout, ptest);
  insanity_test_validate_checklist_item (test, step, TRUE, NULL);
  return NEXT_STEP_ON_PLAYING;
}

static NextStepTrigger
send_random_commands (InsanityGstPipelineTest * ptest, const char *step,
    guintptr data)
{
  InsanityTest *test = INSANITY_TEST (ptest);
  GstNavigationCommand cmd;
  guint *counter = (guint *) data;

  /* First retrieve allowed commands, will be saved globally */
  retrieve_commands (ptest, step, (guintptr) NULL);

  /* Then select one random command in the list, and send it */
  cmd =
      global_allowed_commands[g_rand_int_range (global_prg, 0,
          global_n_allowed_commands - 1)];
  insanity_test_printf (test, "Sending random command %u (%u/%u)\n", cmd,
      1 + *counter, MAX_RANDOM_COMMANDS);
  gst_navigation_send_command (global_nav, cmd);

  /* Now, we can't know in advance whether a command will trigger a state change
     or not. Things like UP, DOWN, will not, but only some MENU* will be active,
     despite being listed as allowed commands.
     Also, I think it's only a convention that UP, DOWN, etc, do not start a
     new movie. So we can't error out if they do.
     Therefore, we add a timeout function that will bump to next when no state
     change has happened after a short time. */

  /* Stop after enough commands */
  global_state_change_timeout =
      g_timeout_add (1000, (GSourceFunc) & state_change_timeout, ptest);
  if (++*counter == MAX_RANDOM_COMMANDS) {
    *counter = 0;
    insanity_test_validate_checklist_item (test, "send-random-commands", TRUE,
        NULL);
    return NEXT_STEP_ON_PLAYING;
  } else {
    return NEXT_STEP_RESTART_ON_PLAYING;
  }
}

/*
  This is an ordered list of steps to perform.
  A test function needs the passed step if needed, and validate it UNLESS it returns
  NEXT_STEP_ON_PLAYING, in which case validation will be automatically done whenever
  next state change to PLAYING happens (eg, selecting a title to play is just sending
  a command, but it is deemed to have succeeded only if we get to PLAYING at some
  point later). A step can return NEXT_STEP_RESTART_ON_PLAYING, which will cause it
  to be called again upon next state change to PLAYING. The step function is then
  responsible for keeping its own private state so it can end up returning something
  else at some point.
*/
static const struct
{
  const char *step;
    NextStepTrigger (*f) (InsanityGstPipelineTest *, const char *, guintptr);
  guintptr data;
} steps[] = {
  {
  "select-root-menu", &send_dvd_command, GST_NAVIGATION_COMMAND_DVD_ROOT_MENU}, {
  "retrieve-commands", &retrieve_commands, (guintptr) "root-menu"}, {
  "retrieve-angles", &retrieve_angles, (guintptr) "root-menu"}, {
  "select-first-menu", &send_dvd_command, GST_NAVIGATION_COMMAND_MENU1}, {
  "retrieve-commands", &retrieve_commands, (guintptr) "first-menu"}, {
  "retrieve-angles", &retrieve_angles, (guintptr) "first-menu"}, {
  "seek-to-main-title", &seek_to_main_title, 0}, {
  "cycle-angles", &cycle_angles, 0}, {
  "cycle-unused-commands", &cycle_unused_commands, 0}, {
  "select-root-menu", &send_dvd_command, GST_NAVIGATION_COMMAND_DVD_ROOT_MENU}, {
  "send-random-commands", &send_random_commands,
        (guintptr) & global_random_command_counter}, {
"select-root-menu", &send_dvd_command, GST_NAVIGATION_COMMAND_DVD_ROOT_MENU},};

static gboolean
do_next_step (gpointer data)
{
  InsanityGstPipelineTest *ptest = data;
  InsanityTest *test = data;
  NextStepTrigger next;

  /* When out of steps to perform, end the test */
  if (global_state == sizeof (steps) / sizeof (steps[0])) {
    insanity_test_done (test);
    return FALSE;
  }

  insanity_test_printf (test, "Calling step %u/%zu (%s, data %u)\n",
      global_state + 1, sizeof (steps) / sizeof (steps[0]),
      steps[global_state].step, steps[global_state].data);
  next =
      (*steps[global_state].f) (ptest, steps[global_state].step,
      steps[global_state].data);
  switch (next) {
    default:
      g_assert (0);
      /* fall through */
    case NEXT_STEP_NOW:
      global_state++;
      g_idle_add ((GSourceFunc) & do_next_step, ptest);
      break;
    case NEXT_STEP_ON_PLAYING:
      global_next_state = global_state + 1;
      global_waiting_on_playing = TRUE;
      break;
    case NEXT_STEP_RESTART_ON_PLAYING:
      global_next_state = global_state;
      global_waiting_on_playing = TRUE;
      break;
  }

  return FALSE;
}

static void
on_ready_for_next_state (InsanityGstPipelineTest * ptest, gboolean timeout)
{
  global_waiting_on_playing = FALSE;
  if (global_next_state != global_state) {
    insanity_test_validate_checklist_item (INSANITY_TEST (ptest),
        steps[global_state].step, TRUE, NULL);
    global_state = global_next_state;
  }
  insanity_test_printf (INSANITY_TEST (ptest), "Got %s, going to next step\n",
      timeout ? "timeout" : "playing");
  g_idle_add ((GSourceFunc) & do_next_step, ptest);
}

static gboolean
dvd_test_bus_message (InsanityGstPipelineTest * ptest, GstMessage * msg)
{
  switch (GST_MESSAGE_TYPE (msg)) {
    case GST_MESSAGE_STATE_CHANGED:
      if (GST_MESSAGE_SRC (msg) == GST_OBJECT (global_pipeline)) {
        GstState oldstate, newstate, pending;
        gst_message_parse_state_changed (msg, &oldstate, &newstate, &pending);

        if (global_state_change_timeout) {
          g_source_remove (global_state_change_timeout);
          global_state_change_timeout = 0;
        }

        if (newstate == GST_STATE_PLAYING && pending == GST_STATE_VOID_PENDING
            && global_waiting_on_playing) {
          on_ready_for_next_state (ptest, FALSE);
        }
      }
      break;
    case GST_MESSAGE_ELEMENT:
    {
      const GstStructure *s = msg->structure;
      const char *str;
      gint n, ntitles;
      GstClockTime duration, longest_duration = 0;
      const GValue *value, *array;
      int longest_title = -1;

      str = gst_structure_get_name (s);
      if (!str || strcmp (str, "application/x-gst-dvd"))
        break;
      str = gst_structure_get_string (s, "event");
      if (!str || strcmp (str, "dvd-title-info"))
        break;
      array = gst_structure_get_value (s, "title-durations");
      if (!array || !GST_VALUE_HOLDS_ARRAY (array))
        break;

      ntitles = gst_value_array_get_size (array);
      for (n = 0; n < ntitles; n++) {
        value = gst_value_array_get_value (array, n);
        if (value && G_VALUE_HOLDS_UINT64 (value)) {
          duration = g_value_get_uint64 (value);
          insanity_test_printf (INSANITY_TEST (ptest),
              "Title %d has duration %" GST_TIME_FORMAT "\n", n,
              GST_TIME_ARGS (duration));
          if (GST_CLOCK_TIME_IS_VALID (duration)
              && duration >= longest_duration) {
            longest_duration = duration;
            longest_title = n;
          }
        }
      }
      global_longest_title = longest_title;
      if (longest_title >= 0) {
        GValue v = { 0 };
        g_value_init (&v, G_TYPE_UINT64);
        g_value_set_uint64 (&v, longest_duration);
        insanity_test_set_extra_info (INSANITY_TEST (ptest),
            "longest-title-duration", &v);
        g_value_unset (&v);
      }
    }
      break;
    default:
      break;
  }

  return TRUE;
}

static gboolean
dvd_test_setup (InsanityTest * test)
{
  GValue v = { 0 };
  guint32 seed;

  /* Retrieve seed */
  insanity_test_get_argument (test, "seed", &v);
  seed = g_value_get_uint (&v);
  g_value_unset (&v);

  /* Generate one if zero */
  if (seed == 0) {
    seed = g_random_int ();
    if (seed == 0)              /* we don't really care for bias, we just don't want 0 */
      seed = 1;
  }

  /* save that seed as extra-info */
  g_value_init (&v, G_TYPE_UINT);
  g_value_set_uint (&v, seed);
  insanity_test_set_extra_info (test, "seed", &v);
  g_value_unset (&v);

  global_prg = g_rand_new_with_seed (seed);

  return TRUE;
}

static void
dvd_test_teardown (InsanityTest * test)
{
  (void) test;
  if (global_prg)
    g_rand_free (global_prg);
  global_prg = NULL;
}

static gboolean
dvd_test_start (InsanityTest * test)
{
  GValue uri = { 0 };
  const char *protocol;

  if (!insanity_test_get_argument (test, "uri", &uri))
    return FALSE;
  if (!strcmp (g_value_get_string (&uri), "")) {
    insanity_test_validate_checklist_item (test, "valid-pipeline", FALSE,
        "No URI to test on");
    g_value_unset (&uri);
    return FALSE;
  }

  if (!gst_uri_is_valid (g_value_get_string (&uri))) {
    insanity_test_validate_checklist_item (test, "uri-is-dvd", FALSE, NULL);
    g_value_unset (&uri);
    return FALSE;
  }
  protocol = gst_uri_get_protocol (g_value_get_string (&uri));
  if (!protocol || g_ascii_strcasecmp (protocol, "dvd")) {
    insanity_test_validate_checklist_item (test, "uri-is-dvd", FALSE, NULL);
    g_value_unset (&uri);
    return FALSE;
  }
  insanity_test_validate_checklist_item (test, "uri-is-dvd", TRUE, NULL);

  g_object_set (global_pipeline, "uri", g_value_get_string (&uri), NULL);
  g_value_unset (&uri);

  global_state = 0;
  global_next_state = 0;
  global_random_command_counter = 0;
  global_longest_title = -1;
  global_waiting_on_playing = TRUE;

  return TRUE;
}

static void
dvd_test_stop (InsanityTest * test)
{
  if (global_nav) {
    gst_object_unref (global_nav);
    global_nav = NULL;
  }
}

static gboolean
dvd_test_reached_initial_state (InsanityGstPipelineTest * ptest)
{
  global_nav = GST_NAVIGATION (gst_object_ref (global_pipeline));

  return TRUE;
}

int
main (int argc, char **argv)
{
  InsanityGstPipelineTest *ptest;
  InsanityTest *test;
  gboolean ret;
  GValue vdef = { 0 };

  g_type_init ();

  ptest =
      insanity_gst_pipeline_test_new ("dvd-test", "Tests DVD specific features",
      NULL);
  test = INSANITY_TEST (ptest);

  g_value_init (&vdef, G_TYPE_STRING);
  g_value_set_string (&vdef, "");
  insanity_test_add_argument (test, "uri",
      "The ISO to test on (dvd:///path/to/iso)", NULL, FALSE, &vdef);
  g_value_unset (&vdef);

  g_value_init (&vdef, G_TYPE_UINT);
  g_value_set_uint (&vdef, 0);
  insanity_test_add_argument (test, "seed",
      "A random seed to generate random commands",
      "0 means a randomly chosen seed; the seed will be saved as extra-info",
      TRUE, &vdef);
  g_value_unset (&vdef);


  insanity_test_add_checklist_item (test, "uri-is-dvd",
      "The URI is a DVD specific URI", NULL, FALSE);
  insanity_test_add_checklist_item (test, "select-root-menu",
      "Root menu selection succeded", NULL, FALSE);
  insanity_test_add_checklist_item (test, "select-first-menu",
      "First menu selection succeded", NULL, FALSE);
  insanity_test_add_checklist_item (test, "retrieve-angles",
      "The DVD gave a list of supported angles", NULL, FALSE);
  insanity_test_add_checklist_item (test, "retrieve-commands",
      "The DVD gave a list of supported commands", NULL, FALSE);
  insanity_test_add_checklist_item (test, "seek-to-main-title",
      "Seek in title format to the main title", NULL, FALSE);
  insanity_test_add_checklist_item (test, "cycle-angles",
      "Cycle through each angle of the selected title in turn", NULL, FALSE);
  insanity_test_add_checklist_item (test, "cycle-unused-commands",
      "Cycle through a list of unused commands, which should have no effect",
      NULL, FALSE);
  insanity_test_add_checklist_item (test, "send-random-commands",
      "Send random valid commands, going through menus at random", NULL, FALSE);

  insanity_test_add_extra_info (test, "seed",
      "The seed used to generate random commands");
  insanity_test_add_extra_info (test, "angles",
      "Angle information for the selected title");
  insanity_test_add_extra_info (test, "commands",
      "Available commands information for the current title");
  insanity_test_add_extra_info (test, "longest-title-duration",
      "Duration of the longest title");

  insanity_gst_pipeline_test_set_create_pipeline_function (ptest,
      &dvd_test_create_pipeline, NULL, NULL);
  g_signal_connect_after (test, "setup", G_CALLBACK (&dvd_test_setup), 0);
  g_signal_connect (test, "bus-message", G_CALLBACK (&dvd_test_bus_message), 0);
  g_signal_connect (test, "start", G_CALLBACK (&dvd_test_start), 0);
  g_signal_connect_after (test, "stop", G_CALLBACK (&dvd_test_stop), 0);
  g_signal_connect_after (test, "reached-initial-state",
      G_CALLBACK (&dvd_test_reached_initial_state), 0);
  g_signal_connect_after (test, "teardown", G_CALLBACK (&dvd_test_teardown), 0);

  ret = insanity_test_run (test, &argc, &argv);

  g_object_unref (test);

  return ret ? 0 : 1;
}