~drizzle-trunk/drizzle/development

0.67.305 by Bernt M. Johnsen
Copyright headres and license added
1
# Copyright (C) 2009 Sun Microsystems, Inc. All rights reserved.  Use
2
# is subject to license terms.
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; version 2 of the License.
7
#
8
# This program is distributed in the hope that it will be useful, but
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
# General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
16
# USA
17
0.67.232 by Bernt M. Johnsen
Implemented: Bug #49565 _field and the rest should assert instead of returning an empty string
18
# Do a simple run of scripts to see that they're sound
19
#
20
package Metadata;
21
use base qw(Test::Unit::TestCase);
22
use lib 'lib';
23
use GenTest::Executor;
24
25
sub new {
26
    my $self = shift()->SUPER::new(@_);
27
    # your state for fixture here
28
    return $self;
29
}
30
31
my $executor;
32
sub set_up {
33
    $executor = new GenTest::Executor->newFromDSN('dummy');    
34
    $executor->cacheMetaData();
35
}
36
37
sub tear_down {
38
}
39
40
sub test_metadata {
41
    my ($self) = @_;
42
    my $data = $executor->metaCollations();
43
    my $data = $executor->metaCharactersets();
44
    my $data = $executor->metaSchemas();
45
    my $data = $executor->metaColumns('tab','schema');
46
    my $data = $executor->metaColumnsType('indexed','tab','schema');
47
    my $data = $executor->metaColumnsTypeNot('pk','tab','schema');
48
}
49
50
sub test_missingmetadata {
51
    my ($self) = @_;
52
    my $data;
53
    
54
    eval {
55
        $data = $executor->metaColumns('foo','bar');
56
    };
57
    $self->assert_equals(-1,$#$data);
58
    
59
    eval {
60
        $data = $executor->metaColumnsType('indexed','foo','bar');
61
    };
62
    $self->assert_equals(-1,$#$data);
63
    
64
    eval {
65
        $data = $executor->metaColumnsTypeNot('pk','foo','bar');
66
    };
67
    $self->assert_equals(-1,$#$data);
68
    
69
}
70
71
1;