File: page_stack.t

package info (click to toggle)
libwww-mechanize-perl 2.20-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,080 kB
  • sloc: perl: 4,623; makefile: 6
file content (67 lines) | stat: -rw-r--r-- 2,384 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use warnings;
use strict;
use Test::More;

use lib 't/local';
use LocalServer ();

BEGIN {
    delete @ENV{qw( IFS CDPATH ENV BASH_ENV )};
    use_ok('WWW::Mechanize');
}

my $server = LocalServer->spawn;
isa_ok( $server, 'LocalServer' );

STANDARD_STACK: {
    my $history;
    my $mech = WWW::Mechanize->new;
    isa_ok( $mech, 'WWW::Mechanize', 'Created object' );

    is( scalar @{ $mech->{page_stack} }, 0,     'Page stack starts empty' );
    is( $mech->history_count,            0,     'No history count to start' );
    is( $mech->history(0),               undef, 'No 0th history item yet' );

    ok( $mech->get( $server->url )->is_success, 'Got start page' );
    is(
        scalar @{ $mech->{page_stack} }, 0,
        'Page stack empty after first get'
    );
    $history = $mech->history(0);
    is( $history->{req}->url, $server->url, "0th history is last request" );
    is( $mech->history(1),    undef,        'No 1th history item yet' );

    is( $mech->history_count, 1, 'One history count after first get' );
    $mech->_push_page_stack();
    is( scalar @{ $mech->{page_stack} }, 1, 'Pushed item onto page stack' );
    is( $mech->history_count,            2, 'Two history count after push' );
    $mech->_push_page_stack();
    is( scalar @{ $mech->{page_stack} }, 2, 'Pushed item onto page stack' );
    is( $mech->history_count, 3, 'Three history count after push' );
    $mech->back();
    is( scalar @{ $mech->{page_stack} }, 1, 'Popped item from page stack' );
    is( $mech->history_count, 2, 'History count back to 2 post pop' );
    $mech->back();
    is( scalar @{ $mech->{page_stack} }, 0, 'Popped item from page stack' );
    is( $mech->history_count, 1, 'History count back to 1 post pop' );
    $mech->back();
    is(
        scalar @{ $mech->{page_stack} }, 0,
        'Cannot pop beyond end of page stack'
    );
    is( $mech->history_count, 1, 'History count stable at 1' );
}

NO_STACK: {
    my $mech = WWW::Mechanize->new;
    isa_ok( $mech, 'WWW::Mechanize', 'Created object' );
    $mech->stack_depth(0);

    is( scalar @{ $mech->{page_stack} }, 0, 'Page stack starts empty' );
    ok( $mech->get( $server->url )->is_success, 'Got start page' );
    is( scalar @{ $mech->{page_stack} }, 0, 'Page stack starts empty' );
    $mech->_push_page_stack();
    is( scalar @{ $mech->{page_stack} }, 0, 'Pushing has no effect' );
}

done_testing;