[project @ 5880]
[audio-mpd.git] / t / 24-info.t
blob101f28fd5e62c2652e628cabaf6f6c7b05b81e03
1 #!perl
3 # This file is part of Audio::MPD.
4 # Copyright (c) 2007 Jerome Quelin <jquelin@cpan.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or (at
9 # your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 use strict;
23 use warnings;
25 use Audio::MPD;
26 use Test::More;
28 # are we able to test module?
29 eval 'use Audio::MPD::Test';
30 plan skip_all => $@ if $@ =~ s/\n+Compilation failed.*//s;
32 plan tests => 16;
33 my $mpd = Audio::MPD->new;
34 my $song;
37 # testing stats
38 $mpd->updatedb;
39 $mpd->playlist->add( 'title.ogg' );
40 $mpd->playlist->add( 'dir1/title-artist-album.ogg' );
41 $mpd->playlist->add( 'dir1/title-artist.ogg' );
42 my $stats = $mpd->stats;
43 isa_ok( $stats, 'Audio::MPD::Stats', 'stats() returns an am::stats object' );
44 is( $stats->artists,      1, 'one artist in the database' );
45 is( $stats->albums,       1, 'one album in the database' );
46 is( $stats->songs,        4, '4 songs in the database' );
47 is( $stats->playtime,     0, 'already played 0 seconds' );
48 is( $stats->db_playtime,  8, '8 seconds worth of music in the db' );
49 isnt( $stats->uptime, undef, 'uptime is defined' );
50 isnt( $stats->db_update,  0, 'database has been updated' );
54 # testing status.
55 $mpd->play;
56 $mpd->pause;
57 my $status = $mpd->status;
58 isa_ok( $status, 'Audio::MPD::Status', 'status return an am::status object' );
62 # testing current song.
63 $song = $mpd->current;
64 isa_ok( $song, 'Audio::MPD::Item::Song', 'current return an Audio::MPD::Item::Song object' );
68 # testing song.
69 $song = $mpd->song(1);
70 isa_ok( $song, 'Audio::MPD::Item::Song', 'song() returns an Audio::MPD::Item::Song object' );
71 is( $song->file, 'dir1/title-artist-album.ogg', 'song() returns the wanted song' );
72 $song = $mpd->song; # default to current song
73 is( $song->file, 'title.ogg', 'song() defaults to current song' );
77 # testing songid.
78 $song = $mpd->songid(1);
79 isa_ok( $song, 'Audio::MPD::Item::Song', 'songid() returns an Audio::MPD::Item::Song object' );
80 is( $song->file, 'dir1/title-artist-album.ogg', 'songid() returns the wanted song' );
81 $song = $mpd->songid; # default to current song
82 is( $song->file, 'title.ogg', 'songid() defaults to current song' );
85 exit;