File: 08create_function.t

package info (click to toggle)
libdbd-sqlite2-perl 2%3A0.37-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,692 kB
  • ctags: 2,312
  • sloc: ansic: 27,895; perl: 1,730; makefile: 11
file content (133 lines) | stat: -rw-r--r-- 3,617 bytes parent folder | download | duplicates (2)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
use Test::More;
BEGIN { plan tests => 20 }
use DBI;

sub now {
    return time();
}

sub add2 {
    my ( $a, $b ) = @_;

    return $a + $b;
}

sub my_sum {
    my $sum = 0;
    foreach my $x (@_) {
        $sum += $x;
    }
    return $sum;
}

sub error {
    die "function is dying: ", @_, "\n";
}

sub void_return {
}

sub return2 {
        return ( 1, 2 );
}

sub return_null {
        return undef;
}

sub my_defined {
        return defined $_[0];
}

sub noop {
        return $_[0];
}

my $dbh = DBI->connect("dbi:SQLite2:dbname=foo", "", "", { PrintError => 0 } );
ok($dbh);

$dbh->func( "now", 0, \&now, "create_function" );
my $result = $dbh->selectrow_arrayref( "SELECT now()" );

ok( $result->[0] );

$dbh->do( 'CREATE TEMP TABLE func_test ( a, b )' );
$dbh->do( 'INSERT INTO func_test VALUES ( 1, 3 )' );
$dbh->do( 'INSERT INTO func_test VALUES ( 0, 4 )' );

$dbh->func( "add2", 2, \&add2, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT add2(1,3)" );
ok( $result->[0] == 4 );

$result = $dbh->selectall_arrayref( "SELECT add2(a,b) FROM func_test" );
ok( $result->[0][0] = 4  && $result->[1][0] == 4 );

$dbh->func( "my_sum", -1, \&my_sum, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT my_sum( '2', 3, 4, '5')" );
ok( $result->[0] == 14 );

$dbh->func( "error", -1, \&error, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT error( 'I died' )" );
ok( !$result );
ok( $DBI::errstr =~ /function is dying: I died/ );

$dbh->func( "void_return", -1, \&void_return, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT void_return( 'I died' )" );
ok( $result && !defined $result->[0] );

$dbh->func( "return_null", -1, \&return_null, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT return_null()" );
ok( $result && !defined $result->[0] );

$dbh->func( "return2", -1, \&return2, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT return2()" );
ok( $result &&  $result->[0] == 2 );

$dbh->func( "my_defined", 1, \&my_defined, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT my_defined(1)" );
ok( $result &&  $result->[0] );

$result = $dbh->selectrow_arrayref( "SELECT my_defined('')" );
ok( $result &&  $result->[0] );

$result = $dbh->selectrow_arrayref( "SELECT my_defined('abc')" );
ok( $result &&  $result->[0] );

$result = $dbh->selectrow_arrayref( "SELECT my_defined(NULL)" );
ok( $result &&  !$result->[0] );

$dbh->func( "noop", 1, \&noop, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT noop(NULL)" );
ok( $result &&  !defined $result->[0] );

$result = $dbh->selectrow_arrayref( "SELECT noop(1)" );
ok( $result &&  $result->[0] == 1);

$result = $dbh->selectrow_arrayref( "SELECT noop('')" );
ok( $result &&  $result->[0] eq '' );

$result = $dbh->selectrow_arrayref( "SELECT noop(1.1)" );
ok( $result &&  $result->[0] == 1.1 );

#TODO: {
  #local $TODO = 'int overflow < 5.8.9 [RT #28448]'
  #  if $] < 5.008009 and $Config{use64bitint};
  use Config;
  sub return_big {
    return 2**32;
  }
  $dbh->func( "bignumber", 0, \&return_big, "create_function" );
  $result = $dbh->selectrow_arrayref( "SELECT bignumber()" );
  # sqlite_set_result_int cannot handle long, 4294967296
  ok ($result && $$result[0] > 0, "bignumber")
    or diag "$result, $$result[0] use64bitint=$Config{use64bitint} use64bitall=$Config{use64bitall}";
#}

sub return_double {
  return 3.0 / 2.0;
}
$dbh->func( "number3by2", 0, \&return_double, "create_function" );
$result = $dbh->selectrow_arrayref( "SELECT number3by2()" );
ok ($result && $$result[0] == 1.5, "number3by2");

$dbh->disconnect;