1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
#
# DO NOT MODIFY THIS FILE.
# This file generated from similar file t/type_float.t
# all instances of "float" have been changed to "double"
#
use Test2::V0 -no_srand => 1;
use FFI::Platypus;
use FFI::CheckLib;
my @lib = find_lib lib => 'test', symbol => 'f0', libpath => 't/ffi';
foreach my $api (0, 1, 2)
{
subtest "api = $api" => sub {
local $SIG{__WARN__} = sub {
my $message = shift;
return if $message =~ /^Subroutine main::.* redefined/;
warn $message;
};
my $ffi = FFI::Platypus->new( api => $api, lib => [@lib], experimental => ($api > 2 ? $api : undef) );
$ffi->type('double *' => 'double_p');
$ffi->type('double [10]' => 'double_a');
$ffi->type('double []' => 'double_a2');
$ffi->type('(double)->double' => 'double_c');
$ffi->attach( [double_add => 'add'] => ['double', 'double'] => 'double');
$ffi->attach( [double_inc => 'inc'] => ['double_p', 'double'] => 'double_p');
$ffi->attach( [double_sum => 'sum'] => ['double_a'] => 'double');
$ffi->attach( [double_sum2 => 'sum2'] => ['double_a2','size_t'] => 'double');
$ffi->attach( [double_array_inc => 'array_inc'] => ['double_a'] => 'void');
$ffi->attach( [pointer_null => 'null'] => [] => 'double_p');
$ffi->attach( [pointer_is_null => 'is_null'] => ['double_p'] => 'int');
$ffi->attach( [double_static_array => 'static_array'] => [] => 'double_a');
$ffi->attach( [pointer_null => 'null2'] => [] => 'double_a');
if($api >= 2)
{
$ffi->attach( [double_sum => 'sum3'] => ['double*'] => 'double');
$ffi->attach( [double_array_inc => 'array_inc2'] => ['double*'] => 'void');
}
is add(1.5,2.5), 4, 'add(1.5,2.5) = 4';
is eval { no warnings; add() }, 0.0, 'add() = 0.0';
my $i = 3.5;
is ${inc(\$i, 4.25)}, 7.75, 'inc(\$i,4.25) = \7.75';
is $i, 3.5+4.25, "i=3.5+4.25";
is ${inc(\3,4)}, 7, 'inc(\3,4) = \7';
my @list = (1,2,3,4,5,6,7,8,9,10);
is sum(\@list), 55, 'sum([1..10]) = 55';
is sum2(\@list,scalar @list), 55, 'sum2([1..10],10) = 55';
if($api >= 2)
{
is sum3(\@list), 55, 'sum([1..10]) = 55';
}
array_inc(\@list);
do { local $SIG{__WARN__} = sub {}; array_inc(); };
is \@list, [2,3,4,5,6,7,8,9,10,11], 'array increment';
if($api >= 2)
{
array_inc2(\@list);
is \@list, [3,4,5,6,7,8,9,10,11,12], 'array increment';
}
is [null()], [$api >= 2 ? (undef) : ()], 'null() == undef';
is is_null(undef), 1, 'is_null(undef) == 1';
is is_null(), 1, 'is_null() == 1';
is is_null(\22), 0, 'is_null(22) == 0';
is static_array(), [-5.5, 5.5, -10, 10, -15.5, 15.5, 20, -20, 25.5, -25.5], 'static_array = [-5.5, 5.5, -10, 10, -15.5, 15.5, 20, -20, 25.5, -25.5]';
is [null2()], [$api >= 2 ? (undef) : ()], 'null2() == undef';
my $closure = $ffi->closure(sub { $_[0]+2.25 });
$ffi->attach( [double_set_closure => 'set_closure'] => ['double_c'] => 'void');
$ffi->attach( [double_call_closure => 'call_closure'] => ['double'] => 'double');
set_closure($closure);
is call_closure(2.5), 4.75, 'call_closure(2.5) = 4.75';
$closure = $ffi->closure(sub { undef });
set_closure($closure);
is do { no warnings; call_closure(2.5) }, 0, 'call_closure(2.5) = 0';
subtest 'custom type input' => sub {
$ffi->custom_type(type1 => { native_type => 'double', perl_to_native => sub { is $_[0], 1.25; $_[0]+0.25 } });
$ffi->attach( [double_add => 'custom_add'] => ['type1','double'] => 'double');
is custom_add(1.25,2.5), 4, 'custom_add(1.25,2.5) = 4';
};
subtest 'custom type output' => sub {
$ffi->custom_type(type2 => { native_type => 'double', native_to_perl => sub { is $_[0], 2.0; $_[0]+0.25 } });
$ffi->attach( [double_add => 'custom_add2'] => ['double','double'] => 'type2');
is custom_add2(1,1), 2.25, 'custom_add2(1,1) = 2.25';
};
$ffi->attach( [pointer_is_null => 'closure_pointer_is_null'] => ['()->void'] => 'int');
is closure_pointer_is_null(), 1, 'closure_pointer_is_null() = 1';
};
}
done_testing;
|