isa_ok(UpperCaseSimpleStr,
'Type::Tiny'
,
'UpperCaseSimpleStr'
);
is(UpperCaseSimpleStr->name,
'UpperCaseSimpleStr'
,
'UpperCaseSimpleStr has correct name'
);
is(UpperCaseSimpleStr->display_name,
'UpperCaseSimpleStr'
,
'UpperCaseSimpleStr has correct display_name'
);
is(UpperCaseSimpleStr->library,
'Types::Common::String'
,
'UpperCaseSimpleStr knows it is in the Types::Common::String library'
);
ok(Types::Common::String->has_type(
'UpperCaseSimpleStr'
),
'Types::Common::String knows it has type UpperCaseSimpleStr'
);
ok(!UpperCaseSimpleStr->deprecated,
'UpperCaseSimpleStr is not deprecated'
);
ok(!UpperCaseSimpleStr->is_anon,
'UpperCaseSimpleStr is not anonymous'
);
ok(UpperCaseSimpleStr->can_be_inlined,
'UpperCaseSimpleStr can be inlined'
);
is(exception { UpperCaseSimpleStr->inline_check(
q/$xyz/
) },
undef
,
"Inlining UpperCaseSimpleStr doesn't throw an exception"
);
ok(UpperCaseSimpleStr->has_coercion,
"UpperCaseSimpleStr has a coercion"
);
ok(!UpperCaseSimpleStr->is_parameterizable,
"UpperCaseSimpleStr isn't parameterizable"
);
is(UpperCaseSimpleStr->type_default,
undef
,
"UpperCaseSimpleStr has no type_default"
);
my
@tests
= (
fail
=>
'undef'
=>
undef
,
fail
=>
'false'
=> !!0,
pass
=>
'true'
=> !!1,
pass
=>
'zero'
=> 0,
pass
=>
'one'
=> 1,
pass
=>
'negative one'
=> -1,
pass
=>
'non integer'
=> 3.1416,
fail
=>
'empty string'
=>
''
,
pass
=>
'whitespace'
=>
' '
,
fail
=>
'line break'
=>
"\n"
,
fail
=>
'random string'
=>
'abc123'
,
fail
=>
'loaded package name'
=>
'Type::Tiny'
,
fail
=>
'unloaded package name'
=>
'This::Has::Probably::Not::Been::Loaded'
,
fail
=>
'a reference to undef'
=>
do
{
my
$x
=
undef
; \
$x
},
fail
=>
'a reference to false'
=>
do
{
my
$x
= !!0; \
$x
},
fail
=>
'a reference to true'
=>
do
{
my
$x
= !!1; \
$x
},
fail
=>
'a reference to zero'
=>
do
{
my
$x
= 0; \
$x
},
fail
=>
'a reference to one'
=>
do
{
my
$x
= 1; \
$x
},
fail
=>
'a reference to empty string'
=>
do
{
my
$x
=
''
; \
$x
},
fail
=>
'a reference to random string'
=>
do
{
my
$x
=
'abc123'
; \
$x
},
fail
=>
'blessed scalarref'
=>
bless
(
do
{
my
$x
=
undef
; \
$x
},
'SomePkg'
),
fail
=>
'empty arrayref'
=> [],
fail
=>
'arrayref with one zero'
=> [0],
fail
=>
'arrayref of integers'
=> [1..10],
fail
=>
'arrayref of numbers'
=> [1..10, 3.1416],
fail
=>
'blessed arrayref'
=>
bless
([],
'SomePkg'
),
fail
=>
'empty hashref'
=> {},
fail
=>
'hashref'
=> {
foo
=> 1 },
fail
=>
'blessed hashref'
=>
bless
({},
'SomePkg'
),
fail
=>
'coderef'
=>
sub
{ 1 },
fail
=>
'blessed coderef'
=>
bless
(
sub
{ 1 },
'SomePkg'
),
fail
=>
'glob'
=>
do
{
no
warnings
'once'
;
*SOMETHING
},
fail
=>
'globref'
=>
do
{
no
warnings
'once'
;
my
$x
=
*SOMETHING
; \
$x
},
fail
=>
'blessed globref'
=>
bless
(
do
{
no
warnings
'once'
;
my
$x
=
*SOMETHING
; \
$x
},
'SomePkg'
),
fail
=>
'regexp'
=>
qr/./
,
fail
=>
'blessed regexp'
=>
bless
(
qr/./
,
'SomePkg'
),
fail
=>
'filehandle'
=>
do
{
open
my
$x
,
'<'
, $0 or
die
;
$x
},
fail
=>
'filehandle object'
=>
do
{
require
IO::File;
'IO::File'
->new($0,
'r'
) },
fail
=>
'ref to scalarref'
=>
do
{
my
$x
=
undef
;
my
$y
= \
$x
; \
$y
},
fail
=>
'ref to arrayref'
=>
do
{
my
$x
= []; \
$x
},
fail
=>
'ref to hashref'
=>
do
{
my
$x
= {}; \
$x
},
fail
=>
'ref to coderef'
=>
do
{
my
$x
=
sub
{ 1 }; \
$x
},
fail
=>
'ref to blessed hashref'
=>
do
{
my
$x
=
bless
({},
'SomePkg'
); \
$x
},
fail
=>
'object overloading arrayref'
=>
do
{
package
Local::OL::Array;
use
overload
q[@{}]
=>
sub
{
$_
[0]{array} };
bless
{
array
=>[]} },
fail
=>
'object overloading hashref'
=>
do
{
package
Local::OL::Hash;
use
overload
q[%{}]
=>
sub
{
$_
[0][0] };
bless
[{}] },
fail
=>
'object overloading coderef'
=>
do
{
package
Local::OL::Code;
use
overload
q[&{}]
=>
sub
{
$_
[0][0] };
bless
[
sub
{ 1 }] },
);
while
(
@tests
) {
my
(
$expect
,
$label
,
$value
) =
splice
(
@tests
, 0 , 3);
if
(
$expect
eq
'xxxx'
) {
note(
"UNDEFINED OUTCOME: $label"
);
}
elsif
(
$expect
eq
'pass'
) {
should_pass(
$value
, UpperCaseSimpleStr,
ucfirst
(
"$label should pass UpperCaseSimpleStr"
));
}
elsif
(
$expect
eq
'fail'
) {
should_fail(
$value
, UpperCaseSimpleStr,
ucfirst
(
"$label should fail UpperCaseSimpleStr"
));
}
else
{
fail(
"expected '$expect'?!"
);
}
}
should_fail(
"\x{0436}"
, UpperCaseSimpleStr);
should_pass(
"\x{0416}"
, UpperCaseSimpleStr);
should_pass(
"A"
x 255, UpperCaseSimpleStr);
should_fail(
"A"
x 256, UpperCaseSimpleStr);
should_pass(
"\x{0416}"
x 255, UpperCaseSimpleStr);
should_fail(
"\x{0416}"
x 256, UpperCaseSimpleStr);
should_pass(
'ABCDEF'
, UpperCaseSimpleStr);
should_pass(
'ABC123'
, UpperCaseSimpleStr);
should_fail(
'abc123'
, UpperCaseSimpleStr);
should_fail(
'abcdef'
, UpperCaseSimpleStr);
should_pass(
'123456'
, UpperCaseSimpleStr);
should_pass(
' '
, UpperCaseSimpleStr);
should_fail(
''
, UpperCaseSimpleStr);
is(UpperCaseSimpleStr->coerce(
'abc123'
),
'ABC123'
,
'coercion success'
);
my
$arr
= [];
my
$coerced
= UpperCaseSimpleStr->coerce(
$arr
);
is(refaddr(
$coerced
), refaddr(
$arr
),
'does not coerce non-strings'
);
done_testing;