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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
package t::lib::TestApp;
use Dancer2;
use Dancer2::Plugin::Database;
no warnings 'uninitialized';
hook database_connected => sub {
my $dbh = shift;
var(connecthookfired => $dbh);
};
get '/connecthookfired' => sub {
my $database = database();
# If the hook fired, it'll have squirreled away a reference to the DB handle
# for us to look for.
my $h = var('connecthookfired');
if (ref $h && $h->isa('DBI::db')) {
return 1;
} else {
return 0;
}
};
my $last_db_error;
hook 'database_error' => sub {
$last_db_error = $_[0];
};
get '/errorhookfired' => sub {
database->do('something silly');
return $last_db_error ? 1 : 0;
};
get '/prepare_db' => sub {
my @sql = (
q/create table users (id INTEGER, name VARCHAR, category VARCHAR)/,
q/insert into users values (1, 'sukria', 'admin')/,
q/insert into users values (2, 'bigpresh', 'admin')/,
q/insert into users values (3, 'badger', 'animal')/,
q/insert into users values (4, 'bodger', 'man')/,
q/insert into users values (5, 'mousey', 'animal')/,
q/insert into users values (6, 'mystery2', null)/,
q/insert into users values (7, 'mystery1', null)/,
);
database->do($_) for @sql;
'ok';
};
get '/' => sub {
my $sth = database->prepare('select count(*) from users');
$sth->execute;
my $total_users = $sth->fetch();
$total_users->[0];
};
get '/user/:id' => sub {
my $sth = database->prepare('select * from users where id = ?');
$sth->execute( params->{id} );
my $user = $sth->fetch();
$user->[1] || "No such user";
};
del '/user/:id' => sub {
my $sth = database->prepare('delete from users where id = ?');
$sth->execute( params->{id} );
'ok';
};
# Routes to exercise some of the extended features:
get '/quick_insert/:id/:name' => sub {
database->quick_insert('users',
{ id => params->{id}, name => params->{name}, category => 'user' },
);
'ok';
};
get '/quick_update/:id/:name' => sub {
database->quick_update('users',
{ id => params->{id} },
{ name => params->{name} },
);
'ok';
};
get '/quick_delete/:id' => sub {
database->quick_delete('users', { id => params->{id} });
'ok';
};
get '/quick_select/:id' => sub {
my $row = database->quick_select('users', { id => params->{id} });
return $row ? join(',', values %$row)
: "No matching user";
};
get '/quick_select/:id/:parm' => sub {
my $row = database->quick_select('users', { id => params->{id} },
[ 'id', params->{parm} ]);
return $row ? join(',', values %$row)
: "No matching user";
};
get '/quick_lookup/:name' => sub {
my $id = database->quick_lookup('users', { name => params->{name} },
'id');
return $id;
};
get '/quick_count/:category' => sub {
my $row = database->quick_count('users', { category => params->{category} });
return $row;
};
get '/complex_where/:id' => sub {
my $row = database->quick_select(
'users', { id => { 'gt' => params->{id} } }
);
return $row ? join(',', values %$row)
: "No matching user";
};
get '/complex_not/:id' => sub {
my $row = database->quick_select('users', { category => { 'is' => undef, 'not' => 1 } });
return $row ? join(',', values %$row)
: "No matching user";
};
get '/set_op/:id' => sub {
my $row = database->quick_select('users', { id => [ params->{id} ] });
return $row ? join(',', values %$row)
: "No matching user";
};
get '/quick_select_many' => sub {
my @users = database->quick_select('users', { category => 'admin' });
return join ',', sort map { $_->{name} } @users;
};
# e.g. /quick_select_specific_cols/foo should return col 'foo'
# or /quick_select_specific_cols/foo/bar returns foo:bar
get '/quick_select_specific_cols/**' => sub {
my $out;
my $cols = (splat)[0];
my @users = database->quick_select('users', {}, { columns => $cols });
for my $user (@users) {
$out .= join(':', @$user{@$cols}) . "\n";
}
return $out;
};
get '/quick_select_with_limit/:limit' => sub {
my $limit = params->{limit};
my @users = database->quick_select('users', {}, { limit => $limit });
return scalar @users;
};
get '/quick_select_sorted' => sub {
my @users = database->quick_select('users', {}, { order_by => 'name' });
return join ':', map { $_->{name} } @users;
};
get '/quick_select_sorted_rev' => sub {
my @users = database->quick_select(
'users', {}, { order_by => { desc => 'name' } }
);
return join ':', map { $_->{name} } @users;
};
get '/quick_select_sorted_where' => sub {
my @users = database->quick_select(
'users', { category => undef }, { order_by => 'name' }
);
return join ':', map { $_->{name} } @users;
};
# Check we can get a handle by passing a hashref of settings, too:
get '/runtime_config' => sub {
my $dbh = database({ driver => 'SQLite', database => ':memory:'});
$dbh ? 'ok' : '';
};
# Check we get the same handle each time we call database()
get '/handles_cached' => sub {
database() eq database() and return "Same handle returned";
};
# Check that the database_connection_lost hook fires when we force a db handle
# to go away:
hook database_connection_lost => sub { var(lost_connection => 1); };
get '/database_connection_lost_fires' => sub {
var(lost_connection => 0);
database()->disconnect;
# We set connection_check_threshold to 0.1 at the start, so wait a second
# then check that the code detects the handle is no longer connected and
# triggers the hook
sleep 1;
my $handle = database();
return var('lost_connection');
};
# Check that database_connection_failed hook fires if we can't connect - pass
# bogus connection details to make that happen
hook database_connection_failed => sub {
var connection_failed => 1;
};
get '/database_connection_failed_fires' => sub {
# Give a ridiculous database filename which should never exist in order to
# force a connection failure
my $handle = database({
dsn => "dbi:SQLite:/Please/Tell/Me/This/File/Does/Not/Exist!",
dbi_params => {
HandleError => sub { return 0 }, # gobble connect failed message
RaiseError => 0,
PrintError => 0,
},
});
return var 'connection_failed';
};
# Check that the handle isa() subclass of the named class
get '/isa/:class' => sub {
return database->isa(params->{class}) ? 1 : 0;
};
1;
|