Update for API V2.1
[webservice-strike.git] / t / WebService-Strike-Torrent.t
CommitLineData
27da1d36
MG
1#!/usr/bin/perl
2use strict;
3use warnings;
4
5use Test::More tests => 14;
6BEGIN { use_ok('WebService::Strike::Torrent') }
7
8my %data = (
9 leeches => 13,
95b1c120
MG
10 size => 615514112,
11 torrent_hash => 'B425907E5755031BDA4A8D1B6DCCACA97DA14C04',
27da1d36
MG
12 file_count => 1,
13 sub_category => '',
14 torrent_category => 'Applications',
95b1c120 15 file_info => {
27da1d36
MG
16 file_names => [ 'archlinux-2015.01.01-dual.iso' ],
17 file_lengths => [ 615514112 ],
95b1c120 18 },
94cc52f9 19 upload_date => 1420502400,
27da1d36
MG
20 seeds => 645,
21 uploader_username => 'The_Doctor-',
22 torrent_title => 'Arch Linux 2015.01.01 (x86/x64)'
23);
24
25my $t = WebService::Strike::Torrent->new(\%data);
26
27is $t->hash, 'B425907E5755031BDA4A8D1B6DCCACA97DA14C04', 'hash';
28is $t->title, 'Arch Linux 2015.01.01 (x86/x64)', 'title';
29is $t->category, 'Applications', 'category';
30is $t->sub_category, '', 'sub_category';
31is $t->seeds, 645, 'seeds';
32is $t->leeches, 13, 'leeches';
33is $t->count, 1, 'count';
95b1c120 34is $t->size, 615514112, 'size';
f447922d 35is $t->date, 1420502400,'date';
27da1d36
MG
36is $t->uploader, 'The_Doctor-', 'uploader';
37is $t->names->[0], 'archlinux-2015.01.01-dual.iso', 'names';
38is $t->lengths->[0], 615514112, 'lengths';
94cc52f9 39is $t->magnet, 'magnet:?xt=urn:btih:B425907E5755031BDA4A8D1B6DCCACA97DA14C04&dn=Arch%20Linux%202015.01.01%20%28x86%2Fx64%29', 'magnet';
This page took 0.011353 seconds and 4 git commands to generate.