isa_ok(Str,
'Type::Tiny'
,
'Str'
);
is(Str->name,
'Str'
,
'Str has correct name'
);
is(Str->display_name,
'Str'
,
'Str has correct display_name'
);
is(Str->library,
'Types::Standard'
,
'Str knows it is in the Types::Standard library'
);
ok(Types::Standard->has_type(
'Str'
),
'Types::Standard knows it has type Str'
);
ok(!Str->deprecated,
'Str is not deprecated'
);
ok(!Str->is_anon,
'Str is not anonymous'
);
ok(Str->can_be_inlined,
'Str can be inlined'
);
is(exception { Str->inline_check(
q/$xyz/
) },
undef
,
"Inlining Str doesn't throw an exception"
);
ok(!Str->has_coercion,
"Str doesn't have a coercion"
);
ok(!Str->is_parameterizable,
"Str isn't parameterizable"
);
isnt(Str->type_default,
undef
,
"Str has a type_default"
);
is(Str->type_default->(),
''
,
"Str type_default is the empty string"
);
my
@tests
= (
fail
=>
'undef'
=>
undef
,
pass
=>
'false'
=> !!0,
pass
=>
'true'
=> !!1,
pass
=>
'zero'
=> 0,
pass
=>
'one'
=> 1,
pass
=>
'negative one'
=> -1,
pass
=>
'non integer'
=> 3.1416,
pass
=>
'empty string'
=>
''
,
pass
=>
'whitespace'
=>
' '
,
pass
=>
'line break'
=>
"\n"
,
pass
=>
'random string'
=>
'abc123'
,
pass
=>
'loaded package name'
=>
'Type::Tiny'
,
pass
=>
'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
, Str,
ucfirst
(
"$label should pass Str"
));
}
elsif
(
$expect
eq
'fail'
) {
should_fail(
$value
, Str,
ucfirst
(
"$label should fail Str"
));
}
else
{
fail(
"expected '$expect'?!"
);
}
}
is_deeply(
[ Str->
sort
( 11, 2, 1 ) ],
[ 1, 11, 2 ],
'String sorting'
,
);
done_testing;