You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
801 B

10 years ago
#!/usr/bin/perl
use strict;
use warnings;
use lib 'lib';
use POSIX qw(tmpnam);
9 years ago
use Test::More tests => 4;
10 years ago
9 years ago
require_ok('Text::Playlist::PLS');
10 years ago
9 years ago
my $pls = new_ok('Text::Playlist::PLS' => []);
10 years ago
my $path = tmpnam();
open my $FH, ">", $path;
print $FH <<EOF;
[playlist]
numberofentries=1
File1 = http://1.2.3.4:8000/listen.aac
Title1=(#1 - 1/1) Radio Broadcast
Length1=-1
Version=2
EOF
close $FH;
my $out = [{
file => 'http://1.2.3.4:8000/listen.aac',
title => '(#1 - 1/1) Radio Broadcast',
length => '-1',
}];
my @items = $pls->load($path);
is_deeply(\@items, $out, "Loading test playlist");
10 years ago
unlink $path;
9 years ago
my $text = <<PLS;
[playlist]
numberofentries=1
File1=http://1.2.3.4:8000/listen.aac
Title1=(#1 - 1/1) Radio Broadcast
Length1=-1
Version=2
PLS
is($pls->dump(@items), $text);
9 years ago
10 years ago
exit 0;