This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
4 bugs in Test::More
[perl5.git] / lib / Test / Simple / t / More.t
1 #!perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = '../lib';
7     }
8 }
9
10 use Test::More tests => 42;
11
12 # Make sure we don't mess with $@ or $!.  Test at bottom.
13 my $Err   = "this should not be touched";
14 my $Errno = 42;
15 $@ = $Err;
16 $! = $Errno;
17
18 use_ok('Text::Soundex');
19 require_ok('Test::More');
20
21
22 ok( 2 eq 2,             'two is two is two is two' );
23 is(   "foo", "foo",       'foo is foo' );
24 isnt( "foo", "bar",     'foo isnt bar');
25 isn't("foo", "bar",     'foo isn\'t bar');
26
27 #'#
28 like("fooble", '/^foo/',    'foo is like fooble');
29 like("FooBle", '/foo/i',   'foo is like FooBle');
30 like("/usr/local/pr0n/", '/^\/usr\/local/',   'regexes with slashes in like' );
31
32 unlike("fbar", '/^bar/',    'unlike bar');
33 unlike("FooBle", '/foo/',   'foo is unlike FooBle');
34 unlike("/var/local/pr0n/", '/^\/usr\/local/','regexes with slashes in unlike' );
35
36 can_ok('Test::More', qw(require_ok use_ok ok is isnt like skip can_ok
37                         pass fail eq_array eq_hash eq_set));
38 can_ok(bless({}, "Test::More"), qw(require_ok use_ok ok is isnt like skip 
39                                    can_ok pass fail eq_array eq_hash eq_set));
40
41
42 isa_ok(bless([], "Foo"), "Foo");
43 isa_ok([], 'ARRAY');
44 isa_ok(\42, 'SCALAR');
45
46
47 # can_ok() & isa_ok should call can() & isa() on the given object, not 
48 # just class, in case of custom can()
49 {
50        local *Foo::can;
51        local *Foo::isa;
52        *Foo::can = sub { $_[0]->[0] };
53        *Foo::isa = sub { $_[0]->[0] };
54        my $foo = bless([0], 'Foo');
55        ok( ! $foo->can('bar') );
56        ok( ! $foo->isa('bar') );
57        $foo->[0] = 1;
58        can_ok( $foo, 'blah');
59        isa_ok( $foo, 'blah');
60 }
61
62
63 pass('pass() passed');
64
65 ok( eq_array([qw(this that whatever)], [qw(this that whatever)]),
66     'eq_array with simple arrays' );
67 ok( eq_hash({ foo => 42, bar => 23 }, {bar => 23, foo => 42}),
68     'eq_hash with simple hashes' );
69 ok( eq_set([qw(this that whatever)], [qw(that whatever this)]),
70     'eq_set with simple sets' );
71
72 eq_array([[]], [{}]);
73 is(scalar @Test::More::Data_Stack, 0, "data stack empty");
74
75 my @complex_array1 = (
76                       [qw(this that whatever)],
77                       {foo => 23, bar => 42},
78                       "moo",
79                       "yarrow",
80                       [qw(498 10 29)],
81                      );
82 my @complex_array2 = (
83                       [qw(this that whatever)],
84                       {foo => 23, bar => 42},
85                       "moo",
86                       "yarrow",
87                       [qw(498 10 29)],
88                      );
89
90 is_deeply( \@complex_array1, \@complex_array2,    'is_deeply with arrays' );
91 ok( eq_array(\@complex_array1, \@complex_array2),
92     'eq_array with complicated arrays' );
93 ok( eq_set(\@complex_array1, \@complex_array2),
94     'eq_set with complicated arrays' );
95
96 my @array1 = (qw(this that whatever),
97               {foo => 23, bar => 42} );
98 my @array2 = (qw(this that whatever),
99               {foo => 24, bar => 42} );
100
101 ok( !eq_array(\@array1, \@array2),
102     'eq_array with slightly different complicated arrays' );
103 ok( !eq_set(\@array1, \@array2),
104     'eq_set with slightly different complicated arrays' );
105
106 my %hash1 = ( foo => 23,
107               bar => [qw(this that whatever)],
108               har => { foo => 24, bar => 42 },
109             );
110 my %hash2 = ( foo => 23,
111               bar => [qw(this that whatever)],
112               har => { foo => 24, bar => 42 },
113             );
114
115 is_deeply( \%hash1, \%hash2,    'is_deeply with complicated hashes' );
116 ok( eq_hash(\%hash1, \%hash2),  'eq_hash with complicated hashes');
117
118 %hash1 = ( foo => 23,
119            bar => [qw(this that whatever)],
120            har => { foo => 24, bar => 42 },
121          );
122 %hash2 = ( foo => 23,
123            bar => [qw(this tha whatever)],
124            har => { foo => 24, bar => 42 },
125          );
126
127 ok( !eq_hash(\%hash1, \%hash2),
128     'eq_hash with slightly different complicated hashes' );
129
130 is( Test::Builder->new, Test::More->builder,    'builder()' );
131
132
133 cmp_ok(42, '==', 42,        'cmp_ok ==');
134 cmp_ok('foo', 'eq', 'foo',  '       eq');
135 cmp_ok(42.5, '<', 42.6,     '       <');
136 cmp_ok(0, '||', 1,          '       ||');
137
138
139 # Piers pointed out sometimes people override isa().
140 {
141     package Wibble;
142     sub isa {
143         my($self, $class) = @_;
144         return 1 if $class eq 'Wibblemeister';
145     }
146     sub new { bless {} }
147 }
148 isa_ok( Wibble->new, 'Wibblemeister' );
149
150
151 # These two tests must remain at the end.
152 is( $@, $Err,               '$@ untouched' );
153 cmp_ok( $!, '==', $Errno,   '$! untouched' );