File: test.pl

package info (click to toggle)
libxmms-perl 0.12-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 332 kB
  • ctags: 130
  • sloc: perl: 1,634; makefile: 38
file content (134 lines) | stat: -rw-r--r-- 2,580 bytes parent folder | download | duplicates (3)
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
use strict;
use ExtUtils::testlib;
use Xmms ();
use Xmms::Remote ();
use Xmms::Config ();
use Test;
use Cwd qw(fastcwd);

my $pwd = fastcwd;

my $remote = Xmms::Remote->new;
my $config = Xmms::Config->new(Xmms::Config->file);

my $Pid = 0;
unless ($remote->is_running) {
    exec "xmms" unless $Pid = fork;
    sleep 1;
}

my $op = $config->read(xmms => 'output_plugin');

if ($op =~ /disk_writer/) {
    print <<EOF;
Your Output plugin is set to disk_writer, which is probably not what you want.
I\'ll pop up the preferences window for you to change.
Afterwards, close xmms and run 'make test' again.
EOF
    $remote->show_prefs_box;
    print "1..0\n";
    exit;
}

unless ($remote->get_version) {
    print "1..0\n";
    exit;
}

plan tests => 10;

ok $remote->is_running;
ok $remote->get_version;

my $orig_files = $remote->get_playlist_files;
my $orig_pos = $remote->get_playlist_pos;
my $orig_time = $remote->get_output_time;

if ($remote->is_playing) {
    #$remote->stop;
}

$remote->playlist_clear;
Xmms::sleep(0.25);
$remote->playlist([map { "$pwd/test$_.mp3" } (1..3)]);
Xmms::sleep(0.25);

#$remote->set_playlist_pos(0);
$remote->play;

ok $remote->get_playlist_length;
#ok $remote->get_playlist_pos;

my($vl, $vr) = $remote->get_volume;
$remote->set_main_volume(25);
ok $vl;
ok $vr;
if ($remote->is_repeat) {
    $remote->toggle_repeat;
}
if ($remote->is_shuffle) {
    $remote->toggle_shuffle;
}

sleep 1;

my($rate, $freq, $nch) = $remote->get_info;
#ok ($rate && $freq && $nch) || 1; #hmm
ok $remote->get_playlist_file(0);
ok $remote->get_playlist_time(0);

#$remote->set_volume($vl, $vr);

my $b = $remote->get_balance;

my $skin = $remote->get_skin;

for (1, 0) {
    #$remote->toggle_aot($_);
}

for (1, 0) {
    $remote->main_win_toggle($_);
    $remote->pl_win_toggle($_);
    $remote->eq_win_toggle($_);
    sleep 1;
}

for (1,2) {
    sleep 1;
    my $time = $remote->get_output_time;
    ok $time || 1; #hmm
}

$remote->main_win_toggle(1);

#hmm, we attempt to toggle repeat off above, by reading the config value,
#but if xmms is already running, it may have been changed
{
    local $SIG{ALRM} = sub {die};
    alarm 10;
    eval {
	while($remote->is_playing) {
	    $remote->set_balance(-30);
	    sleep 2;
	    $remote->set_main_volume(30);
	}
    };
    alarm 0;
}

$remote->set_balance(0);
$remote->stop;

Xmms::sleep(0.25);
ok !$remote->is_playing;

$remote->quit if $Pid;

#as you were
if (@$orig_files) {
    $remote->playlist($orig_files);
    $remote->set_playlist_pos($orig_pos);
    Xmms::sleep(0.25);
    $remote->jump_to_time($orig_time);
}