~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/kewpie/randgen/unit/Metadata.pm

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
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;