Add length to String.
[gitmo/MooseX-AttributeHelpers.git] / t / 007_basic_string.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 30;
7
8 BEGIN {
9     use_ok('MooseX::AttributeHelpers');
10 }
11
12 {
13     package MyHomePage;
14     use Moose;
15
16     has 'string' => (
17         metaclass => 'String',
18         is        => 'rw',
19         isa       => 'Str',
20         default   => sub { '' },
21         provides => {
22             inc     => 'inc_string',
23             append  => 'append_string',
24             prepend => 'prepend_string',
25             match   => 'match_string',
26             replace => 'replace_string',
27             chop    => 'chop_string',
28             chomp   => 'chomp_string',
29             clear   => 'clear_string',
30             substr  => 'sub_string',
31             length  => 'length_string',
32         },
33         curries  => {
34             append  => {exclaim         => [ '!' ]},
35             replace => {capitalize_last => [ qr/(.)$/, sub { uc $1 } ]},
36             match   => {invalid_number  => [ qr/\D/ ]},
37             substr  => {shift_chars     => sub { $_[1]->($_[0], 0, $_[2], '') } },
38         }
39     );
40 }
41
42 my $page = MyHomePage->new();
43 isa_ok($page, 'MyHomePage');
44
45 is($page->string, '', '... got the default value');
46 is($page->length_string, 0, '... length is zero');
47
48 $page->string('a');
49 is($page->length_string, 1, '... new string has length of one');
50
51 $page->inc_string;
52 is($page->string, 'b', '... got the incremented value');
53
54 $page->inc_string;
55 is($page->string, 'c', '... got the incremented value (again)');
56
57 $page->append_string("foo$/");
58 is($page->string, "cfoo$/", 'appended to string');
59
60 $page->chomp_string;
61 is($page->string, "cfoo", 'chomped string');
62
63 $page->chomp_string;
64 is($page->string, "cfoo", 'chomped is noop');
65
66 $page->chop_string;
67 is($page->string, "cfo", 'chopped string');
68
69 $page->prepend_string("bar");
70 is($page->string, 'barcfo', 'prepended to string');
71
72 is_deeply( [ $page->match_string(qr/([ao])/) ], [ "a" ], "match" );
73
74 $page->replace_string(qr/([ao])/, sub { uc($1) });
75 is($page->string, 'bArcfo', "substitution");
76 is($page->length_string, 6, 'right length');
77
78 $page->exclaim;
79 is($page->string, 'bArcfo!', 'exclaim!');
80
81 is($page->sub_string(2), 'rcfo!', 'substr(offset)');
82 is($page->sub_string(2, 2), 'rc', 'substr(offset, length)');
83 is($page->sub_string(2, 2, ''), 'rc', 'substr(offset, length, replacement)');
84 is($page->string, 'bAfo!', 'replacement got inserted');
85
86 is($page->shift_chars(2), 'bA', 'curried substr');
87 is($page->string, 'fo!', 'replacement got inserted');
88
89 $page->string('Moosex');
90 $page->capitalize_last;
91 is($page->string, 'MooseX', 'capitalize last');
92
93 $page->string('1234');
94 ok(!$page->invalid_number, 'string "isn\'t an invalid number');
95
96 $page->string('one two three four');
97 ok($page->invalid_number, 'string an invalid number');
98
99 $page->clear_string;
100 is($page->string, '', "clear");
101
102 # check the meta ..
103
104 my $string = $page->meta->get_attribute('string');
105 isa_ok($string, 'MooseX::AttributeHelpers::String');
106
107 is($string->helper_type, 'Str', '... got the expected helper type');
108
109 is($string->type_constraint->name, 'Str', '... got the expected type constraint');
110
111 is_deeply($string->provides, {
112     inc     => 'inc_string',
113     append  => 'append_string',
114     prepend => 'prepend_string',
115     match   => 'match_string',
116     replace => 'replace_string',
117     chop    => 'chop_string',
118     chomp   => 'chomp_string',
119     clear   => 'clear_string',
120     substr  => 'sub_string',
121     length  => 'length_string',
122 }, '... got the right provides methods');
123