#!perl # # This file is part of POE-Component-Client-MPD # # This software is copyright (c) 2007 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use strict; use warnings; use Test::More; my @songs = qw{ title.ogg dir1/title-artist-album.ogg dir1/title-artist.ogg }; my $nbtests = 29; my @tests = ( # [ 'event', [ $arg1, $arg2, ... ], $sleep, \&check_results ] # stats [ 'updatedb', [], 0, \&check_success ], [ 'pl.add', \@songs, 0, \&check_success ], [ 'stats', [], 0, \&check_stats ], # status [ 'play', [], 0, \&check_success ], [ 'pause', [], 0, \&check_success ], [ 'status', [], 0, \&check_status ], # current [ 'current', [], 0, \&check_current ], # song [ 'song', [1], 0, \&check_song ], [ 'song', [], 0, \&check_song_current ], # songid (use the same checkers as song) [ 'songid', [1], 0, \&check_song ], [ 'songid', [], 0, \&check_song_current ], ); # are we able to test module? eval 'use POE::Component::Client::MPD::Test nbtests=>$nbtests, tests=>\@tests'; diag($@), plan skip_all => $@ if $@ =~ s/\n+BEGIN failed--compilation aborted.*//s; exit; #-- sub check_success { my ($msg) = @_; is($msg->status, 1, "command '" . $msg->request . "' returned an ok status"); } sub check_stats { my ($msg, $stats) = @_; check_success($msg); isa_ok($stats, 'Audio::MPD::Common::Stats', 'stats() return'); is($stats->artists, 1, 'one artist in the database'); is($stats->albums, 1, 'one album in the database'); is($stats->songs, 4, '4 songs in the database'); is($stats->playtime, 0, 'already played 0 seconds'); is($stats->db_playtime, 8, '8 seconds worth of music in the db'); isnt($stats->uptime, undef, 'uptime is defined'); isnt($stats->db_update, 0, 'database has been updated'); } sub check_status { my ($msg, $status) = @_; check_success($msg); isa_ok( $status, 'Audio::MPD::Common::Status', 'status() return'); } sub check_current { my ($msg, $song) = @_; check_success($msg); isa_ok($song, 'Audio::MPD::Common::Item::Song', 'current() return'); } sub check_song { my ($msg, $song) = @_; check_success($msg); isa_ok($song, 'Audio::MPD::Common::Item::Song', 'song(id) return' ); is($song->file, 'dir1/title-artist-album.ogg', 'song(id) returns the wanted song'); } sub check_song_current { my ($msg, $song) = @_; check_success($msg); isa_ok($song, 'Audio::MPD::Common::Item::Song', 'song(id) return' ); is($song->file, 'title.ogg', 'song(id) defaults to current song' ); }