my
$file
= basename $0;
use
Encode
'decode'
,
'encode'
;
use
SPVM
'TestCase'
;
my
$use_test_line
= __LINE__;
use
SPVM
'TestCase::ExchangeAPI'
;
use
SPVM
'TestCase::Point_3i'
;
use
SPVM
'TestCase::Minimal'
;
use
SPVM
'TestCase::Simple'
;
my
$BYTE_MAX
= 127;
my
$BYTE_MIN
= -128;
my
$SHORT_MAX
= 32767;
my
$SHORT_MIN
= -32768;
my
$INT_MAX
= 2147483647;
my
$INT_MIN
= -2147483648;
my
$LONG_MAX
= 9223372036854775807;
my
$LONG_MIN
= -9223372036854775808;
my
$FLOAT_PRECICE
= 16384.5;
my
$DOUBLE_PRECICE
= 65536.5;
my
$FLOAT_MIN
= POSIX::FLT_MIN();
my
$DOUBLE_MIN
= POSIX::DBL_MIN();
my
$FLOAT_MAX
= POSIX::FLT_MAX();
my
$DOUBLE_MAX
= POSIX::DBL_MAX();
my
$UBYTE_MAX
= 255;
my
$USHORT_MAX
= 65535;
my
$UINT_MAX
= 4294967295;
my
$ULONG_MAX
= 18446744073709551615;
my
$api
= SPVM::api();
my
$start_memory_blocks_count
=
$api
->get_memory_blocks_count();
{
{
my
$spvm_string
=
$api
->new_string(
"abc"
);
is(
ref
$spvm_string
,
"SPVM::BlessedObject::String"
);
is(
$spvm_string
->__get_type_name,
"string"
);
}
{
{
my
$spvm_string
=
$api
->new_string(23);
is(
$spvm_string
->to_string, 23);
}
{
my
$spvm_string
=
$api
->new_string(
""
);
is(
$spvm_string
->to_string,
""
);
}
}
{
my
$spvm_string
=
$api
->new_string(
undef
);
ok(!
defined
$spvm_string
);
}
{
my
$spvm_string
=
$api
->new_string(
"abc"
);
my
$spvm_string2
=
$api
->new_string(
$spvm_string
);
ok(
$spvm_string
==
$spvm_string
);
}
{
{
eval
{
$api
->new_string([]); };
like($@,
qr/\$string cannnot be a reference/
);
like($@,
qr|XS_SPVM__ExchangeAPI__xs_new_string at SPVM\.xs line \d+|
);
}
{
eval
{
$api
->new_string(
$api
->new_byte_array([1, 2, 3])); };
like($@,
qr/\$string cannnot be a reference/
);
like($@,
qr|XS_SPVM__ExchangeAPI__xs_new_string at SPVM\.xs line \d+|
);
}
}
{
{
my
$spvm_string
=
$api
->new_string(
"あいう"
);
is(
$spvm_string
->to_string,
"あいう"
);
is(
"$spvm_string"
,
"あいう"
);
}
{
my
$spvm_string
=
$api
->new_string(
"abc"
);
is(
$spvm_string
->to_string,
"abc"
);
is(
"$spvm_string"
,
"abc"
);
}
{
my
$spvm_string
=
$api
->new_string(
""
);
is(
$spvm_string
->to_string,
""
);
}
{
my
$spvm_string
=
$api
->new_string(
undef
);
ok(!
defined
$spvm_string
);
}
}
}
{
{
my
$spvm_array
=
$api
->new_byte_array([1,
$BYTE_MAX
,
$BYTE_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[]"
);
}
{
my
$spvm_array
=
$api
->new_byte_array([1,
$BYTE_MAX
,
$BYTE_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$BYTE_MAX
,
$BYTE_MIN
]);
}
{
my
$spvm_array
=
$api
->new_byte_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_byte_array([1,
$BYTE_MAX
,
$BYTE_MIN
]);
my
$spvm_array2
=
$api
->new_byte_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_byte_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_byte_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the byte[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_byte_array_unsigned([1,
$UBYTE_MAX
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[]"
);
}
{
my
$spvm_array
=
$api
->new_byte_array_unsigned([0,
$UBYTE_MAX
]);
my
$bin
=
$spvm_array
->to_bin;
is_deeply([
unpack
'C*'
,
$bin
], [0,
$UBYTE_MAX
]);
}
{
my
$spvm_array
=
$api
->new_byte_array_unsigned(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_byte_array_unsigned([1,
$UBYTE_MAX
]);
my
$spvm_array2
=
$api
->new_byte_array_unsigned(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_byte_array_unsigned({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_byte_array_unsigned(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the byte[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_byte_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[]"
);
}
{
my
$spvm_array
=
$api
->new_byte_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_byte_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_byte_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
'c*'
, 97, 98,
$BYTE_MAX
);
my
$spvm_array
=
$api
->new_byte_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[]"
);
}
{
my
$binary
=
pack
(
'c*'
, 97, 98,
$BYTE_MAX
);
my
$spvm_array
=
$api
->new_byte_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$BYTE_MAX
]);
}
{
my
$binary
=
pack
(
'C*'
, 97, 98,
$UBYTE_MAX
);
my
$spvm_array
=
$api
->new_byte_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98, -1]);
}
{
{
eval
{
my
$spvm_array
=
$api
->new_byte_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
my
$spvm_array
=
$api
->new_byte_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
}
{
{
my
$binary
=
"abc"
;
my
$spvm_array
=
$api
->new_byte_array_from_bin(
"abc"
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [
ord
(
"a"
),
ord
(
"b"
),
ord
(
"c"
)]);
}
{
my
$binary
=
"あ"
;
utf8::encode(
$binary
);
my
$spvm_array
=
$api
->new_byte_array_from_bin(
$binary
);
my
$binary_ret
=
$spvm_array
->to_bin;
is(
$binary_ret
,
$binary
);
}
{
my
$spvm_array
=
$api
->new_byte_array_from_bin(
"\xFF\xFE"
);
is(
$spvm_array
->[0], -1);
is(
$spvm_array
->[1], -2);
}
}
}
{
{
my
$spvm_array
=
$api
->new_short_array([1,
$SHORT_MAX
,
$SHORT_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"short[]"
);
}
{
my
$spvm_array
=
$api
->new_short_array([1,
$SHORT_MAX
,
$SHORT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$SHORT_MAX
,
$SHORT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_short_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_short_array([1,
$SHORT_MAX
,
$SHORT_MIN
]);
my
$spvm_array2
=
$api
->new_short_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_short_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_short_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the short[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_short_array_unsigned([1,
$USHORT_MAX
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"short[]"
);
}
{
my
$spvm_array
=
$api
->new_short_array_unsigned([0,
$USHORT_MAX
]);
my
$bin
=
$spvm_array
->to_bin;
is_deeply([
unpack
'S*'
,
$bin
], [0,
$USHORT_MAX
]);
}
{
my
$spvm_array
=
$api
->new_short_array_unsigned(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_short_array_unsigned([1,
$USHORT_MAX
]);
my
$spvm_array2
=
$api
->new_short_array_unsigned(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_short_array_unsigned({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_short_array_unsigned(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the short[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_short_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"short[]"
);
}
{
my
$spvm_array
=
$api
->new_short_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_short_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_short_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
's*'
, 97, 98,
$SHORT_MAX
);
my
$spvm_array
=
$api
->new_short_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"short[]"
);
}
{
my
$binary
=
pack
(
's*'
, 97, 98,
$SHORT_MAX
);
my
$spvm_array
=
$api
->new_short_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$SHORT_MAX
]);
}
{
my
$binary
=
pack
(
'S*'
, 97, 98,
$USHORT_MAX
);
my
$spvm_array
=
$api
->new_short_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98, -1]);
}
{
{
eval
{
$api
->new_short_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_short_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_short_array_from_bin(
"abc"
); };
ok(
index
($@,
'The length of $binary must be divisible by 2'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_int_array([1,
$INT_MAX
,
$INT_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"int[]"
);
}
{
my
$spvm_array
=
$api
->new_int_array([1,
$INT_MAX
,
$INT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$INT_MAX
,
$INT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_int_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_int_array([1,
$INT_MAX
,
$INT_MIN
]);
my
$spvm_array2
=
$api
->new_int_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_int_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_int_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the int[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_int_array_unsigned([1,
$UINT_MAX
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"int[]"
);
}
{
my
$spvm_array
=
$api
->new_int_array_unsigned([0,
$UINT_MAX
]);
my
$bin
=
$spvm_array
->to_bin;
is_deeply([
unpack
'L*'
,
$bin
], [0,
$UINT_MAX
]);
}
{
my
$spvm_array
=
$api
->new_int_array_unsigned(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_int_array_unsigned([1,
$UINT_MAX
]);
my
$spvm_array2
=
$api
->new_int_array_unsigned(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_int_array_unsigned({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_int_array_unsigned(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the int[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_int_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"int[]"
);
}
{
my
$spvm_array
=
$api
->new_int_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_int_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_int_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
'l*'
, 97, 98,
$INT_MAX
);
my
$spvm_array
=
$api
->new_int_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"int[]"
);
}
{
my
$binary
=
pack
(
'l*'
, 97, 98,
$INT_MAX
);
my
$spvm_array
=
$api
->new_int_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$INT_MAX
]);
}
{
my
$binary
=
pack
(
'L*'
, 97, 98,
$UINT_MAX
);
my
$spvm_array
=
$api
->new_int_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98, -1]);
}
{
{
eval
{
$api
->new_int_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_int_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_int_array_from_bin(
"abcde"
); };
ok(
index
($@,
'The length of $binary must be divisible by 4'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_long_array([1,
$LONG_MAX
,
$LONG_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"long[]"
);
}
{
my
$spvm_array
=
$api
->new_long_array([1,
$LONG_MAX
,
$LONG_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$LONG_MAX
,
$LONG_MIN
]);
}
{
my
$spvm_array
=
$api
->new_long_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_long_array([1,
$LONG_MAX
,
$LONG_MIN
]);
my
$spvm_array2
=
$api
->new_long_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_long_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_long_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the long[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_long_array_unsigned([1,
$ULONG_MAX
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"long[]"
);
}
{
my
$spvm_array
=
$api
->new_long_array_unsigned([0,
$ULONG_MAX
]);
my
$bin
=
$spvm_array
->to_bin;
is_deeply([
unpack
'Q*'
,
$bin
], [0,
$ULONG_MAX
]);
}
{
my
$spvm_array
=
$api
->new_long_array_unsigned(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_long_array_unsigned([1,
$ULONG_MAX
]);
my
$spvm_array2
=
$api
->new_long_array_unsigned(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_long_array_unsigned({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_long_array_unsigned(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the long[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_long_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"long[]"
);
}
{
my
$spvm_array
=
$api
->new_long_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_long_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_long_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
'q*'
, 97, 98,
$LONG_MAX
);
my
$spvm_array
=
$api
->new_long_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"long[]"
);
}
{
my
$binary
=
pack
(
'q*'
, 97, 98,
$LONG_MAX
);
my
$spvm_array
=
$api
->new_long_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$LONG_MAX
]);
}
{
my
$binary
=
pack
(
'Q*'
, 97, 98,
$ULONG_MAX
);
my
$spvm_array
=
$api
->new_long_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98, -1]);
}
{
{
eval
{
$api
->new_long_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_long_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_long_array_from_bin(
"abcde"
); };
ok(
index
($@,
'The length of $binary must be divisible by 8'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_float_array([1,
$FLOAT_MAX
,
$FLOAT_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"float[]"
);
}
{
my
$spvm_array
=
$api
->new_float_array([1,
$FLOAT_MAX
,
$FLOAT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$FLOAT_MAX
,
$FLOAT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_float_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_float_array([1,
$FLOAT_MAX
,
$FLOAT_MIN
]);
my
$spvm_array2
=
$api
->new_float_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_float_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_float_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the float[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_float_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"float[]"
);
}
{
my
$spvm_array
=
$api
->new_float_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_float_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_float_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
'f*'
, 97, 98,
$FLOAT_MAX
);
my
$spvm_array
=
$api
->new_float_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"float[]"
);
}
{
my
$binary
=
pack
(
'f*'
, 97, 98,
$FLOAT_MAX
);
my
$spvm_array
=
$api
->new_float_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$FLOAT_MAX
]);
}
{
{
eval
{
$api
->new_float_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_float_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_float_array_from_bin(
"abcde"
); };
ok(
index
($@,
'The length of $binary must be divisible by 4'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_double_array([1,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"double[]"
);
}
{
my
$spvm_array
=
$api
->new_double_array([1,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
}
{
my
$spvm_array
=
$api
->new_double_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_double_array([1,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
my
$spvm_array2
=
$api
->new_double_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_double_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_double_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the double[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_double_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"double[]"
);
}
{
my
$spvm_array
=
$api
->new_double_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0, 0, 0]);
}
{
my
$spvm_array
=
$api
->new_double_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_double_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$binary
=
pack
(
'd*'
, 97, 98,
$FLOAT_MAX
);
my
$spvm_array
=
$api
->new_double_array_from_bin(
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"double[]"
);
}
{
my
$binary
=
pack
(
'd*'
, 97, 98,
$FLOAT_MAX
);
my
$spvm_array
=
$api
->new_double_array_from_bin(
$binary
);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [97, 98,
$FLOAT_MAX
]);
}
{
{
eval
{
$api
->new_double_array_from_bin(
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_double_array_from_bin({}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_double_array_from_bin(
"abcde"
); };
ok(
index
($@,
'The length of $binary must be divisible by 8'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_string_array([
"abc"
,
"def"
,
"ghi"
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"string[]"
);
}
{
my
$spvm_array
=
$api
->new_string_array([
"abc"
,
"あいう"
,
"ghi"
]);
my
$values
=
$spvm_array
->to_strings;
is_deeply(
$values
, [
"abc"
,
"あいう"
,
"ghi"
]);
}
{
my
$spvm_array
=
$api
->new_string_array(
undef
);
ok(!
defined
$spvm_array
);
}
{
my
$spvm_array1
=
$api
->new_string_array([
"abc"
,
"あいう"
,
"ghi"
]);
my
$spvm_array2
=
$api
->new_string_array(
$spvm_array1
);
ok(
$spvm_array1
==
$spvm_array2
);
}
{
{
eval
{
$api
->new_string_array({}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_string_array(
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be the string[] type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_string_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"string[]"
);
}
{
my
$spvm_array
=
$api
->new_string_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [
undef
,
undef
,
undef
]);
}
{
my
$spvm_array
=
$api
->new_string_array_len(0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
eval
{
$api
->new_string_array_len(-1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
}
{
{
my
$point1
= SPVM::Point->new(1, 2);
my
$point2
= SPVM::Point->new(3, 4);
my
$spvm_array
=
$api
->new_object_array(
"Point[]"
, [
$point1
,
$point2
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"Point[]"
);
}
{
my
$point1
= SPVM::Point->new(1, 2);
my
$point2
= SPVM::Point->new(3, 4);
my
$spvm_array
=
$api
->new_object_array(
"Point[]"
, [
$point1
,
$point2
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"Point[]"
);
my
$values
=
$spvm_array
->to_elems;
is(
$values
->[0]->x, 1);
is(
$values
->[0]->y, 2);
is(
$values
->[1]->x, 3);
is(
$values
->[1]->y, 4);
}
{
my
$spvm_array
=
$api
->new_object_array(
"Point[]"
,
undef
);
ok(!
defined
$spvm_array
);
}
{
{
eval
{
$api
->new_object_array(
"&&&"
, {}); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_object_array(
"Point[]"
, {}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_object_array(
"Point[]"
,
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable'
) >= 0);
}
{
eval
{
$api
->new_object_array(
"Point[][]"
, []); };
ok(
index
($@,
'The dimension of the type $type_name must be 1'
) >= 0);
}
{
eval
{
$api
->new_object_array(
"NotFoundClass[]"
, []); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
{
eval
{
$api
->new_object_array(
"byte[]"
, []); };
ok(
index
($@,
'$type_name must be an object array type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_object_array_len(
"Point[]"
, 3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"Point[]"
);
}
{
my
$spvm_array
=
$api
->new_object_array_len(
"Point[]"
, 3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [
undef
,
undef
,
undef
]);
}
{
my
$spvm_array
=
$api
->new_object_array_len(
"Point[]"
, 0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
{
eval
{
$api
->new_object_array_len(
"&&&"
, -1); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_object_array_len(
"Point[]"
, -1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
{
eval
{
$api
->new_object_array_len(
"Point[][]"
, 0); };
ok(
index
($@,
'The dimension of the type $type_name must be 1'
) >= 0);
}
{
eval
{
$api
->new_object_array_len(
"NotFoundClass[]"
, 0); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
{
eval
{
$api
->new_object_array_len(
"byte[]"
, 0); };
ok(
index
($@,
'$type_name must be an object array type'
) >= 0);
}
}
}
{
{
my
$point1
= SPVM::Point->new(1, 2);
my
$point2
= SPVM::Point->new(3, 4);
my
$spvm_array
=
$api
->new_any_object_array([
$point1
,
$point2
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"object[]"
);
}
{
my
$point1
= SPVM::Point->new(1, 2);
my
$point2
= SPVM::Point->new(3, 4);
my
$spvm_array
=
$api
->new_any_object_array([
$point1
,
$point2
]);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
my
$values
=
$spvm_array
->to_elems;
is(
$values
->[0]->x, 1);
is(
$values
->[0]->y, 2);
is(
$values
->[1]->x, 3);
is(
$values
->[1]->y, 4);
}
}
{
{
my
$spvm_array
=
$api
->new_any_object_array_len(3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"object[]"
);
}
{
my
$spvm_array
=
$api
->new_any_object_array_len(3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [
undef
,
undef
,
undef
]);
}
}
{
{
my
$options
=
$api
->new_options({
x
=> SPVM::Int->new(1),
y
=> SPVM::Int->new(2)
});
my
$simple
= SPVM::TestCase::Simple->new_options(
$options
);
is(
$simple
->x, 1);
is(
$simple
->y, 2);
}
{
my
$options
=
$api
->new_options({});
my
$simple
= SPVM::TestCase::Simple->new_options(
$options
);
is(
$simple
->x, 0);
is(
$simple
->y, 0);
}
{
{
eval
{
$api
->new_options([]); };
ok(
index
($@,
'$options must be a hash reference'
) >= 0);
}
{
eval
{
$api
->new_options(
undef
); };
ok(
index
($@,
'$options must be a hash reference'
) >= 0);
}
{
eval
{
$api
->new_options({
x
=> 1}); };
ok(
index
($@,
'The value of $options must be an SPVM::BlessedObject object'
) >= 0);
}
}
{
{
my
$options
=
undef
;
my
$simple
= SPVM::TestCase::Simple->new_options(
$options
);
is(
$simple
->x, 0);
is(
$simple
->y, 0);
}
}
}
{
{
my
$values
= [
{
x
=>
$BYTE_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3b[]"
,
$values
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"TestCase::Point_3b[]"
);
}
{
my
$values
= [
{
x
=>
$BYTE_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3b[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_byte(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
my
$values
= [
{
x
=>
$SHORT_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3s[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_short(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
my
$values
= [
{
x
=>
$INT_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3i[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_int(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
my
$values
= [
{
x
=>
$LONG_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3l[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_long(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
my
$values
= [
{
x
=>
$FLOAT_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3f[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_float(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
my
$values
= [
{
x
=>
$DOUBLE_MIN
,
y
=> 1,
z
=> 2},
{
x
=> 3,
y
=> 4,
z
=> 5},
{
x
=> 6,
y
=> 7,
z
=> 8},
];
my
$spvm_array
=
$api
->new_mulnum_array(
"TestCase::Point_3d[]"
,
$values
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_double(
$spvm_array
));
my
$out_values
=
$spvm_array
->to_elems;
is_deeply(
$out_values
,
$values
);
}
{
{
eval
{
$api
->new_mulnum_array(
"&&&"
, {}); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array(
"TestCase::Point_3b[]"
, {}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array(
"TestCase::Point_3b[]"
,
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array(
"TestCase::Point_3b[][]"
, []); };
ok(
index
($@,
'The dimension of the type $type_name must be 1'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array(
"NotFoundClass[]"
, []); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array(
"byte[]"
, []); };
ok(
index
($@,
'$type_name must be a multi-numeric array type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_mulnum_array_len(
"TestCase::Point_3b[]"
, 3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"TestCase::Point_3b[]"
);
}
{
my
$spvm_array
=
$api
->new_mulnum_array_len(
"TestCase::Point_3b[]"
, 3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [{
x
=> 0,
y
=> 0,
z
=> 0}, {
x
=> 0,
y
=> 0,
z
=> 0}, {
x
=> 0,
y
=> 0,
z
=> 0}]);
}
{
my
$spvm_array
=
$api
->new_mulnum_array_len(
"TestCase::Point_3b[]"
, 0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
{
eval
{
$api
->new_mulnum_array_len(
"&&&"
, -1); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_len(
"TestCase::Point_3b[]"
, -1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_len(
"TestCase::Point_3b[][]"
, 0); };
ok(
index
($@,
'The dimension of the type $type_name must be 1'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_len(
"NotFoundClass[]"
, 0); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_len(
"byte[]"
, 0); };
ok(
index
($@,
'$type_name must be a multi-numeric array type'
) >= 0);
}
}
}
{
{
my
$binary
=
pack
(
'c9'
, (
$BYTE_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3b[]"
,
$binary
);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"TestCase::Point_3b[]"
);
}
{
my
$binary
=
pack
(
'c9'
, (
$BYTE_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3b[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_byte(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
's9'
, (
$SHORT_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3s[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_short(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
'l9'
, (
$INT_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3i[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_int(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
'q9'
, (
$LONG_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3l[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_long(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
'f9'
, (
$FLOAT_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3f[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_float(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
'd9'
, (
$DOUBLE_MIN
, 1, 2), (3, 4, 5), (6, 7, 8));
my
$spvm_array
=
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3d[]"
,
$binary
);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_mulnum_array_binary_double(
$spvm_array
));
my
$out_bin
=
$spvm_array
->to_bin;
is_deeply(
$out_bin
,
$binary
);
}
{
my
$binary
=
pack
(
'd8'
, (
$DOUBLE_MIN
, 1, 2), (3, 4, 5), (6, 7));
eval
{
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3d[]"
,
$binary
);
};
ok($@);
}
{
{
eval
{
$api
->new_mulnum_array_from_bin(
"&&&"
,
""
); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3b[]"
,
undef
); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3b[]"
, {}); };
ok(
index
($@,
'$binary must be a defined non-reference scalar'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_from_bin(
"TestCase::Point_3b[][]"
, []); };
ok(
index
($@,
'The dimension of the type $type_name must be 1'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_from_bin(
"NotFoundClass[]"
,
""
); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
{
eval
{
$api
->new_mulnum_array_from_bin(
"byte[]"
,
""
); };
ok(
index
($@,
'$type_name must be a multi-numeric array type'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_muldim_array(
"byte[][]"
, []);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[][]"
);
}
{
my
$object1
=
$api
->new_byte_array([1, 2, 3]);
my
$object2
=
$api
->new_byte_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"byte[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_byte_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
my
$object1
=
$api
->new_short_array([1, 2, 3]);
my
$object2
=
$api
->new_short_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"short[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_short_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
my
$object1
=
$api
->new_int_array([1, 2, 3]);
my
$object2
=
$api
->new_int_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"int[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_int_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
my
$object1
=
$api
->new_long_array([1, 2, 3]);
my
$object2
=
$api
->new_long_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"long[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_long_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
my
$object1
=
$api
->new_float_array([1, 2, 3]);
my
$object2
=
$api
->new_float_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"float[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_float_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
my
$object1
=
$api
->new_double_array([1, 2, 3]);
my
$object2
=
$api
->new_double_array([4, 5, 6]);
my
$spvm_array
=
$api
->new_muldim_array(
"double[][]"
, [
$object1
,
$object2
]);
ok(SPVM::TestCase::ExchangeAPI->spvm_new_object_array_len_element_double_array(
$spvm_array
));
my
$spvm_array_out
=
$spvm_array
->to_elems;
is_deeply(
$spvm_array_out
->[0]->to_elems, [1, 2, 3]);
is_deeply(
$spvm_array_out
->[1]->to_elems, [4, 5, 6]);
}
{
{
eval
{
$api
->new_muldim_array(
"&&&"
, {}); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_muldim_array(
"byte[][]"
, {}); };
ok(
index
($@,
'$array: If it is a reference, it must be an array reference'
) >= 0);
}
{
eval
{
$api
->new_muldim_array(
"byte[][]"
,
$api
->new_any_object_array([])); };
ok(
index
($@,
'$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable'
) >= 0);
}
{
eval
{
$api
->new_muldim_array(
"Point[]"
, []); };
ok(
index
($@,
'The dimension of the type $type_name must be greater than or equal to 2 and less than or equal to 255'
) >= 0);
}
{
eval
{
$api
->new_muldim_array(
"NotFoundClass[][]"
, []); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
}
}
{
{
my
$spvm_array
=
$api
->new_muldim_array_len(
"byte[][]"
, 3);
is(
ref
$spvm_array
,
'SPVM::BlessedObject::Array'
);
is(
$spvm_array
->__get_type_name,
"byte[][]"
);
}
{
my
$spvm_array
=
$api
->new_muldim_array_len(
"byte[][]"
, 3);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [
undef
,
undef
,
undef
]);
}
{
my
$spvm_array
=
$api
->new_muldim_array_len(
"byte[][]"
, 0);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, []);
}
{
{
eval
{
$api
->new_muldim_array_len(
"&&&"
, -1); };
ok(
index
($@,
'The type name $type_name was parsed, but the class name could not be extracted'
) >= 0);
}
{
eval
{
$api
->new_muldim_array_len(
"byte[][]"
, -1); };
ok(
index
($@,
'$length must be greater than or equal to 0'
) >= 0);
}
{
eval
{
$api
->new_muldim_array_len(
"byte[]"
, 0); };
ok(
index
($@,
'The dimension of the type $type_name must be greater than or equal to 2 and less than or equal to 255'
) >= 0);
}
{
eval
{
$api
->new_muldim_array_len(
"NotFoundClass[][]"
, 0); };
ok(
index
($@,
'The "NotFoundClass" basic type is not found'
) >= 0);
}
}
}
{
{
$api
->set_exception(
"あいう"
);
my
$exception
=
$api
->get_exception;
is(
ref
$exception
,
'SPVM::BlessedObject::String'
);
is(
$exception
,
"あいう"
);
}
{
$api
->set_exception(
$api
->new_string(
"あいう"
));
my
$exception
=
$api
->get_exception;
is(
$exception
,
"あいう"
);
}
{
eval
{
$api
->set_exception([]); };
ok($@);
}
{
$api
->set_exception(
undef
);
ok(!
$api
->get_exception);
}
}
{
{
$api
->set_exception(
"あいう"
);
ok(SPVM::TestCase::ExchangeAPI->set_exception);
}
{
$api
->set_exception(
undef
);
ok(SPVM::TestCase::ExchangeAPI->set_exception_undef);
}
}
{
{
my
$point
= SPVM::Point->new(100, 200);
my
$dump
=
$api
->
dump
(
$point
);
is(
ref
$dump
,
"SPVM::BlessedObject::String"
);
like(
$dump
,
qr|x|
);
like(
$dump
,
qr|y|
);
like(
$dump
,
qr|100|
);
like(
$dump
,
qr|200|
);
}
{
my
$dump
=
$api
->
dump
(
undef
);
like(
$dump
,
qr|undef|
);
}
{
eval
{
$api
->
dump
(
"string"
); };
like($@,
qr|\$object must be an SPVM::BlessedObject object|
);
}
}
{
my
$obj_int
=
$api
->class(
"Int"
)->new(1);
isa_ok(
$obj_int
,
"SPVM::BlessedObject"
);
my
$value
=
$obj_int
->value;
is(
$value
, 1);
}
{
my
$error
=
$api
->new_error;
ok(
ref
$error
,
"SPVM::ExchangeAPI::Error"
);
is(
$error
->id, 0);
$error
->id(2);
is(
$error
->id, 2);
}
{
{
{
my
$blessed_object
=
$api
->new_string(
"abc"
);
isa_ok(
$blessed_object
,
"SPVM::BlessedObject"
);
my
$type_name
=
$blessed_object
->__get_type_name;
is(
$type_name
,
"string"
);
}
{
my
$blessed_object
=
$api
->new_byte_array([1, 2, 3]);
isa_ok(
$blessed_object
,
"SPVM::BlessedObject"
);
my
$type_name
=
$blessed_object
->__get_type_name;
is(
$type_name
,
"byte[]"
);
}
{
my
$blessed_object
= SPVM::Point->new;
isa_ok(
$blessed_object
,
"SPVM::BlessedObject"
);
my
$type_name
=
$blessed_object
->__get_type_name;
is(
$type_name
,
"Point"
);
}
}
}
{
{
my
$blessed_object_string
=
$api
->new_string(
"abc"
);
is(
ref
$blessed_object_string
,
"SPVM::BlessedObject::String"
);
}
{
{
{
my
$blessed_object_string
=
$api
->new_string(
"abc"
);
my
$binary
=
$blessed_object_string
->to_bin;
is(
$binary
,
"abc"
);
}
{
my
$blessed_object_string
=
$api
->new_string(
"あいう"
);
my
$binary
=
$blessed_object_string
->to_bin;
ok(!utf8::is_utf8(
$binary
));
{
my
$expected
=
"あいう"
;
utf8::encode(
$expected
);
is(
$binary
,
$expected
);
}
}
{
my
$blessed_object_string
=
$api
->new_string(
"\xFF\xFE"
);
my
$binary
=
$blessed_object_string
->to_bin;
is(
$binary
,
"\xFF\xFE"
);
}
}
{
{
my
$blessed_object_string
=
$api
->new_string(
"abc"
);
my
$string
=
$blessed_object_string
->to_string;
is(
$string
,
"abc"
);
}
{
my
$blessed_object_string
=
$api
->new_string(
"あいう"
);
my
$string
=
$blessed_object_string
->to_string;
ok(utf8::is_utf8(
$string
));
{
is(
$string
,
"あいう"
);
}
}
{
my
$blessed_object_string
=
$api
->new_string(
"\xFF\xFE"
);
eval
{
$blessed_object_string
->to_string; };
like($@,
qr|The SPVM::BlessedObject::String object cannnot be decoded to Perl string|
);
}
}
}
{
{
my
$blessed_object_string
=
$api
->new_string(
"0"
);
ok(!!
$blessed_object_string
);
}
{
{
my
$blessed_object_string
=
$api
->new_string(
"0"
);
is(
"$blessed_object_string"
,
"0"
);
}
{
my
$blessed_object_string
=
$api
->new_string(
"あいう"
);
is(
"$blessed_object_string"
,
"あいう"
);
}
}
}
}
{
{
{
my
$blessed_object_class
= SPVM::Point->new(1, 2);
is(
ref
$blessed_object_class
,
"SPVM::BlessedObject::Class"
);
}
{
{
my
$point
= SPVM::Point->new(1, 2);
my
$x
=
$point
->x;
my
$y
=
$point
->y;
is(
$x
, 1);
is(
$y
, 2);
}
{
my
$point
= SPVM::Point->new(1, 2);
$point
->clear;
my
$x
=
$point
->x;
my
$y
=
$point
->y;
is(
$x
, 0);
is(
$y
, 0);
}
}
{
{
my
$point
= SPVM::Point3D->new(1, 2, 3);
my
$x
=
$point
->x;
my
$y
=
$point
->y;
my
$z
=
$point
->z;
is(
$x
, 1);
is(
$y
, 2);
is(
$z
, 3);
}
{
my
$point
= SPVM::Point3D->new(1, 2, 3);
$point
->clear;
my
$x
=
$point
->x;
my
$y
=
$point
->y;
my
$z
=
$point
->z;
is(
$x
, 0);
is(
$y
, 0);
is(
$z
, 0);
}
}
{
{
my
$point
= SPVM::Point3D->new(1, 2, 3);
$point
->SPVM::Point::clear;
my
$x
=
$point
->x;
my
$y
=
$point
->y;
my
$z
=
$point
->z;
is(
$x
, 0);
is(
$y
, 0);
is(
$z
, 3);
}
}
{
my
$minimal
= SPVM::TestCase::Minimal->new;
like(
"$minimal"
,
qr/SPVM::BlessedObject::Class/
);
}
{
my
$minimal
= SPVM::TestCase::Minimal->new;
is(
ref
$minimal
,
'SPVM::BlessedObject::Class'
);
}
{
{
my
$point
= SPVM::Point3D->new(1, 2, 3);
eval
{
$point
->SPVM::Int::value; };
like($@,
qr|The invocant must be assinged to the "Int" basic type|
);
}
{
my
$point
= SPVM::Point->new(1, 2);
eval
{
$point
->not_found; };
like($@,
qr|The "not_found" method in the "Point" class is not found|
);
}
}
}
}
{
{
my
$blessed_object_array
=
my
$spvm_array
=
$api
->new_int_array([0, 0]);
is(
ref
$blessed_object_array
,
"SPVM::BlessedObject::Array"
);
}
{
{
my
$spvm_array
=
$api
->new_byte_array([1,
$BYTE_MAX
,
$BYTE_MIN
]);
my
$length
=
$spvm_array
->
length
;
is(
$length
, 3);
}
{
my
$spvm_array
=
$api
->new_short_array([1,
$SHORT_MAX
,
$SHORT_MIN
]);
my
$length
=
$spvm_array
->
length
;
is(
$length
, 3);
}
{
my
$spvm_array
=
$api
->new_int_array([1,
$INT_MAX
,
$INT_MIN
]);
my
$length
=
$spvm_array
->
length
;
is(
$length
, 3);
}
{
my
$spvm_array
=
$api
->new_long_array([1,
$LONG_MAX
,
$LONG_MIN
]);
my
$length
=
$spvm_array
->
length
;
is(
$length
, 3);
}
}
{
{
my
$spvm_array
=
$api
->new_byte_array([0, 0]);
$spvm_array
->set(1,
$BYTE_MAX
);
is_deeply(
$spvm_array
->to_elems, [0,
$BYTE_MAX
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$BYTE_MAX
);
}
{
my
$spvm_array
=
$api
->new_short_array([0, 0]);
$spvm_array
->set(1,
$SHORT_MAX
);
is_deeply(
$spvm_array
->to_elems, [0,
$SHORT_MAX
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$SHORT_MAX
);
}
{
my
$spvm_array
=
$api
->new_int_array([0, 0]);
$spvm_array
->set(1,
$INT_MAX
);
is_deeply(
$spvm_array
->to_elems, [0,
$INT_MAX
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$INT_MAX
);
}
{
my
$spvm_array
=
$api
->new_long_array([0, 0]);
$spvm_array
->set(1,
$LONG_MAX
);
is_deeply(
$spvm_array
->to_elems, [0,
$LONG_MAX
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$LONG_MAX
);
}
{
my
$spvm_array
=
$api
->new_float_array([0, 0]);
$spvm_array
->set(1,
$FLOAT_PRECICE
);
is_deeply(
$spvm_array
->to_elems, [0,
$FLOAT_PRECICE
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$FLOAT_PRECICE
);
}
{
my
$spvm_array
=
$api
->new_double_array([0, 0]);
$spvm_array
->set(1,
$DOUBLE_PRECICE
);
is_deeply(
$spvm_array
->to_elems, [0,
$DOUBLE_PRECICE
]);
my
$value
=
$spvm_array
->get(1);
is(
$value
,
$DOUBLE_PRECICE
);
}
}
{
my
$spvm_array
=
$api
->new_double_array([0, 0]);
like(
"$spvm_array"
,
qr/SPVM::BlessedObject::Array/
);
}
{
{
my
$spvm_array
=
$api
->new_byte_array([1,
$BYTE_MAX
,
$BYTE_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$BYTE_MAX
,
$BYTE_MIN
]);
}
{
my
$spvm_array
=
$api
->new_short_array([1,
$SHORT_MAX
,
$SHORT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$SHORT_MAX
,
$SHORT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_int_array([1,
$INT_MAX
,
$INT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$INT_MAX
,
$INT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_long_array([1,
$LONG_MAX
,
$LONG_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [1,
$LONG_MAX
,
$LONG_MIN
]);
}
{
my
$spvm_array
=
$api
->new_float_array([0.5,
$FLOAT_MAX
,
$FLOAT_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0.5,
$FLOAT_MAX
,
$FLOAT_MIN
]);
}
{
my
$spvm_array
=
$api
->new_double_array([0.5,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
my
$values
=
$spvm_array
->to_elems;
is_deeply(
$values
, [0.5,
$DOUBLE_MAX
,
$DOUBLE_MIN
]);
}
{
my
$spvm_array
=
$api
->new_string_array([
"あ"
,
"い"
]);
my
$values
=
$spvm_array
->to_elems;
is(
ref
$values
->[0],
"SPVM::BlessedObject::String"
);
is(
$values
->[0],
"あ"
);
is(
$values
->[1],
"い"
);
is(
scalar
@$values
, 2);
}
}
{
{
my
$spvm_array
=
$api
->new_byte_array([1, 2,
$BYTE_MAX
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
'c3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$BYTE_MAX
]);
}
{
my
$spvm_array
=
$api
->new_short_array([1, 2,
$SHORT_MAX
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
's3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$SHORT_MAX
]);
}
{
my
$spvm_array
=
$api
->new_int_array([1, 2,
$INT_MAX
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
'l3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$INT_MAX
]);
}
{
my
$spvm_array
=
$api
->new_long_array([1, 2,
$LONG_MAX
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
'q3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$LONG_MAX
]);
}
{
my
$spvm_array
=
$api
->new_float_array([1, 2,
$FLOAT_PRECICE
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
'f3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$FLOAT_PRECICE
]);
}
{
my
$spvm_array
=
$api
->new_double_array([1, 2,
$DOUBLE_PRECICE
]);
my
$binary
=
$spvm_array
->to_bin;
my
@values
=
unpack
(
'd3'
,
$binary
);
is_deeply(\
@values
, [1, 2,
$DOUBLE_PRECICE
]);
}
{
{
my
$spvm_array
=
$api
->new_byte_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
{
my
$spvm_array
=
$api
->new_short_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
{
my
$spvm_array
=
$api
->new_int_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
{
my
$spvm_array
=
$api
->new_long_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
{
my
$spvm_array
=
$api
->new_float_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
{
my
$spvm_array
=
$api
->new_double_array([]);
my
$binary
=
$spvm_array
->to_bin;
is(
$binary
,
""
);
}
}
{
my
$length
= 1_000_000;
{
my
$binary
=
pack
(
'l*'
, 1 ..
$length
);
my
$spvm_array
=
$api
->new_int_array_from_bin(
$binary
);
is(
$spvm_array
->
length
,
$length
);
}
{
my
$binary
=
pack
(
'q*'
, 1 ..
$length
);
my
$spvm_array
=
$api
->new_long_array_from_bin(
$binary
);
is(
$spvm_array
->
length
,
$length
);
}
{
my
$binary
=
pack
(
'f*'
, 1 ..
$length
);
my
$spvm_array
=
$api
->new_float_array_from_bin(
$binary
);
is(
$spvm_array
->
length
,
$length
);
}
{
my
$binary
=
pack
(
'd*'
, 1 ..
$length
);
my
$spvm_array
=
$api
->new_double_array_from_bin(
$binary
);
is(
$spvm_array
->
length
,
$length
);
}
{
my
$binary
=
pack
(
'f*'
, 1 ..
$length
);
my
$spvm_array
=
$api
->new_float_array_from_bin(
$binary
);
is(
$spvm_array
->
length
,
$length
);
}
}
}
{
{
my
$spvm_array
=
$api
->new_object_array(
'Point[]'
, [SPVM::Point->new(1, 2), SPVM::Point->new(3, 4)]);
my
$values
=
$spvm_array
->to_strings;
is(
$values
->[0],
"(1,2)"
);
is(
$values
->[1],
"(3,4)"
);
is(
scalar
@$values
, 2);
}
{
my
$spvm_array
=
$api
->new_string_array([
"あ"
,
"い"
]);
my
$values
=
$spvm_array
->to_strings;
ok(!
ref
$values
->[0]);
ok(utf8::is_utf8(
$values
->[0]));
is(
$values
->[0],
"あ"
);
is(
$values
->[1],
"い"
);
is(
scalar
@$values
, 2);
}
}
{
{
my
$spvm_array
=
$api
->new_string_array([
"あ"
,
"い"
]);
my
$values
=
$spvm_array
->to_bins;
ok(!
ref
$values
->[0]);
ok(!utf8::is_utf8(
$values
->[0]));
{
my
$expected
=
"あ"
;
utf8::encode(
$expected
);
is(
$values
->[0],
$expected
);
}
{
my
$expected
=
"い"
;
utf8::encode(
$expected
);
is(
$values
->[1],
$expected
);
}
is(
scalar
@$values
, 2);
}
}
{
{
my
$values
=
$api
->new_int_array([1, 2, 3]);
my
$copy_values
= [];
for
my
$value
(
@$values
) {
push
@$copy_values
,
$value
;
}
is_deeply(
$copy_values
, [1, 2, 3]);
}
{
my
$values
=
$api
->new_int_array([1, 2, 3]);
my
$length
=
@$values
;
is(
$length
, 3);
}
}
}
{
{
my
$nums
=
$api
->new_float_array([1, 2, 3]);
is(
ref
$nums
,
'SPVM::BlessedObject::Array'
);
}
{
ok(SPVM::TestCase->my_var_initialized_zero());
ok(SPVM::TestCase->my_var_initialized_zero());
}
{
ok(SPVM::TestCase->new_near_small_base_object_max_size_use_memory_pool());
}
sub
refer_api {
$api
;
}
}
$api
->set_exception(
undef
);
my
$end_memory_blocks_count
=
$api
->get_memory_blocks_count();
is(
$end_memory_blocks_count
,
$start_memory_blocks_count
);
done_testing;