explicitly test \n in non-simple strs
[gitmo/MooseX-Types-Common.git] / t / 01-string.t
CommitLineData
ac73ab52 1#! /usr/bin/perl -w
2
3use strict;
4use warnings;
559b5d74 5use Test::More tests => 25;
3d272255 6use Test::Fatal;
ac73ab52 7
8{
9 package FooTest;
10 use Moose;
5b561c82 11 use MooseX::Types::Common::String (
a5c9a433 12 qw(SimpleStr
13 NonEmptySimpleStr
14 LowerCaseSimpleStr
15 UpperCaseSimpleStr
16 Password
17 StrongPassword
18 NonEmptyStr
19 LowerCaseStr
559b5d74 20 UpperCaseStr
21 NumericCode
22 ),
ac73ab52 23 );
24
a5c9a433 25 has simplestr => ( is => 'rw', isa => SimpleStr );
26 has nestr => ( is => 'rw', isa => NonEmptyStr );
27 has nesimplestr => ( is => 'rw', isa => NonEmptySimpleStr );
28 has lcsimplestr => ( is => 'rw', isa => LowerCaseSimpleStr );
29 has ucsimplestr => ( is => 'rw', isa => UpperCaseSimpleStr );
30 has password => ( is => 'rw', isa => Password );
31 has strongpassword => ( is => 'rw', isa => StrongPassword );
32 has lowercasestr => ( is => 'rw', isa => LowerCaseStr );
33 has uppercasestr => ( is => 'rw', isa => UpperCaseStr );
559b5d74 34 has numericcode => ( is => 'rw', isa => NumericCode );
ac73ab52 35}
36
37my $ins = FooTest->new;
38
3d272255 39is(exception { $ins->simplestr('') }, undef, 'SimpleStr');
40is(exception { $ins->simplestr('good string') }, undef, 'SimpleStr 2');
41isnt(exception { $ins->simplestr("bad\nstring") }, 'SimpleStr 3');
42isnt(exception { $ins->simplestr(join('', ("long string" x 25))) }, undef, 'SimpleStr 4');
ac73ab52 43
3d272255 44isnt(exception { $ins->nestr('') }, undef, 'NonEmptyStr');
45is(exception { $ins->nestr('good string') }, undef, 'NonEmptyStr 2');
46is(exception { $ins->nestr("bad\nstring") }, undef, 'NonEmptyStr 3');
47is(exception { $ins->nestr(join('', ("long string" x 25))) }, undef, 'NonEmptyStr 4');
ac73ab52 48
3d272255 49is(exception { $ins->nesimplestr('good str') }, undef, 'NonEmptySimplrStr');
50isnt(exception { $ins->nesimplestr('') }, undef, 'NonEmptyStr 2');
ac73ab52 51
3d272255 52isnt(exception { $ins->password('no') }, undef, 'Password');
53is(exception { $ins->password('okay') }, undef, 'Password 2');
ac73ab52 54
3d272255 55isnt(exception { $ins->strongpassword('notokay') }, undef, 'StrongPassword');
56is(exception { $ins->strongpassword('83773r_ch01c3') }, undef, 'StrongPassword 2');
a5c9a433 57
58isnt(exception { $ins->lcsimplestr('NOTOK') }, undef, 'LowerCaseSimpleStr');
59is(exception { $ins->lcsimplestr('ok') }, undef, 'LowerCaseSimpleStr 2');
60
61isnt(exception { $ins->ucsimplestr('notok') }, undef, 'UpperCaseSimpleStr');
62is(exception { $ins->ucsimplestr('OK') }, undef, 'UpperCaseSimpleStr 2');
63
64isnt(exception { $ins->lowercasestr('NOTOK') }, undef, 'LowerCaseStr');
4a305974 65is(exception { $ins->lowercasestr("ok\nok") }, undef, 'LowerCaseStr 2');
a5c9a433 66
67isnt(exception { $ins->uppercasestr('notok') }, undef, 'UpperCaseStr');
4a305974 68is(exception { $ins->uppercasestr("OK\nOK") }, undef, 'UpperCaseStr 2');
559b5d74 69
70
71is( exception { $ins->numericcode('032') }, undef, 'NumericCode lives');
72isnt( exception { $ins->numericcode('abc') }, undef, 'NumericCode dies' );
73isnt( exception { $ins->numericcode('x18') }, undef, 'mixed NumericCode dies');