[BACK]Return to local_server.t CVS log [TXT][DIR] Up to [local] / HOPE / Net-OpenAMD / t

Diff for /HOPE/Net-OpenAMD/t/local_server.t between version 1.7 and 1.10

version 1.7, 2010/06/27 04:59:32 version 1.10, 2010/06/30 06:30:17
Line 1 
Line 1 
 #!perl  #!perl
 # $AFresh1: local_server.t,v 1.6 2010/06/27 03:45:07 andrew Exp $  # $AFresh1: local_server.t,v 1.9 2010/06/28 20:40:38 andrew Exp $
 use Test::More;    # tests => 75;  use Test::More;
   
 use strict;  use strict;
 use warnings;  use warnings;
Line 13 
Line 13 
     use lib "$FindBin::Bin/../../mojo/lib";      use lib "$FindBin::Bin/../../mojo/lib";
   
     eval "use Test::Mojo::Server";      eval "use Test::Mojo::Server";
     plan skip_all => "Test::Mojo::Server required for testing local server"      if ($@) {
         if $@;          plan skip_all => "Test::Mojo::Server required for testing local server";
       }
       else {
           plan tests => 15;
       }
     require 'network_tests.t';      require 'network_tests.t';
 }  }
   
   my %tests = (
       location => [
           {   args   => undef,
               expect => [
                   {   'y'      => '83.1452331542969',
                       'area'   => 'Engressia',
                       'time'   => 2387,
                       'user'   => 12983,
                       'x'      => '46.7369918823242',
                       'button' => 'False'
                   }
               ],
           },
       ],
       speakers => [
           {   args   => undef,
               expect => [
                   {   'name' => 'Johnny',
                       'bio'  => 'Johnny\'s bio'
                   },
               ],
           },
       ],
       talks => [
           {   args   => undef,
               expect => [
                   {   'speakers'  => [ 'Judas', 'JohnnyX' ],
                       'interests' => [ 'media', 'crypto' ],
                       'time'      => '2008/7/18 13:00:00',
                       'track'     => 'Hooper',
                       'title' => 'Ancient Egyptian Music and DRM',
                       'abstract' =>
                           'A discussion of the development of musical notation, which was designed as a means of reproducing music while making it impossible for the general public to perform without permission.'
                   }
               ],
           },
       ],
       interests => [
           {   args   => undef,
               expect => [
                   'new tech',           'activism',
                   'radio',              'lockpicking',
                   'crypto',             'privacy',
                   'ethics',             'telephones',
                   'social engineering', 'hacker spaces',
                   'hardware hacking',   'nostalgia',
                   'communities',        'science',
                   'government',         'network security',
                   'malicious software', 'pen testing',
                   'web',                'niche hacks',
                   'media',
               ],
           },
       ],
       users => [
           {   args   => undef,
               expect => [
                   {   'name'      => 'JohnnyX',
                       'x'         => '32.54091324',
                       'y'         => '54.10958384',
                       'interests' => [
                           'new tech',           'radio',
                           'lockpicking',        'crypto',
                           'telephones',         'social engineering',
                           'hacker spaces',      'hardware hacking',
                           'nostalgia',          'communities',
                           'science',            'network security',
                           'malicious software', 'pen testing'
                       ],
                   }
               ]
           },
       ],
       stats => [
           {   args   => undef,
               expect => qr/^Unused \s feature/xms,
           },
       ],
   );
   
 my $server = Test::Mojo::Server->new();  my $server = Test::Mojo::Server->new();
 $server->executable('test_server.pl');  $server->executable('test_server.pl');
   
Line 27 
Line 111 
   
 my $amd = Net::OpenAMD->new(  my $amd = Net::OpenAMD->new(
     { base_uri => 'http://127.0.0.1:' . $port . '/api/', } );      { base_uri => 'http://127.0.0.1:' . $port . '/api/', } );
 NetworkTests::run_tests($amd);  NetworkTests::run_tests( $amd, \%tests );
   
 $server->stop_server_ok('server stopped');  $server->stop_server_ok('server stopped');
   
 done_testing();  #done_testing();

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>