File: dbi-tables.t

package info (click to toggle)
libdbd-firebird-perl 0.91-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 680 kB
  • sloc: perl: 4,085; ansic: 2,262; makefile: 14
file content (61 lines) | stat: -rw-r--r-- 1,278 bytes parent folder | download | duplicates (8)
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
#! /usr/bin/env perl

#
# Verify that $dbh->tables() returns a list of (quoted) tables.
#

use strict;
use warnings;

use Test::More;
use lib 't','.';

use TestFirebird;
my $T = TestFirebird->new;

my ($dbh, $error_str) = $T->connect_to_database();

if ($error_str) {
    BAIL_OUT("Unknown: $error_str!");
}

unless ( $dbh->isa('DBI::db') ) {
    plan skip_all => 'Connection to database failed, cannot continue testing';
}
else {
    plan tests => 6;
}

ok($dbh, 'Connected to the database');

# ------- TESTS ------------------------------------------------------------- #

#
#   Find a possible new table name
#
my $table = find_new_table($dbh);
ok($table, qq{Table is '$table'});

ok($dbh->do(<<__eocreate), "CREATE TABLE $table");
CREATE TABLE $table(
    i INTEGER NOT NULL,
    vc VARCHAR(64) NOT NULL
)
__eocreate

my %tables = map { uc($_) => 1 } $dbh->tables;

ok(exists $tables{ $dbh->quote_identifier(uc($table)) },
   "tables() returned uppercased, quoted $table");
#diag join(' ', sort keys %tables);

ok($dbh->do("DROP TABLE $table"), "DROP TABLE $table");

%tables = map { uc($_) => 1 } $dbh->tables;
#diag join(' ', sort keys %tables);

ok(!exists($tables{ $dbh->quote_identifier(uc($table)) }),
   "$table no longer in tables()");

__END__
# vim: set et ts=4: