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
|
package TestSchema;
use strict;
use warnings;
use File::Spec;
our $VERSION = 0.001;
use parent 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces(
default_resultset_class => 'ResultSet',
);
__PACKAGE__->load_components(qw/Schema::Versioned Helper::Schema::LintContents/);
sub dbfile { 'dbfile' }
sub upgrade_directory { './t/lib' }
sub ddl_filename {
return File::Spec->catfile(shift->upgrade_directory, 'ddl.sql');
}
sub deploy_or_connect {
my $self = shift;
my $schema;
unless ( -e $self->dbfile && [stat $self->dbfile]->[7] > 0 ) {
$schema = $self->connect;
$schema->deploy();
} else {
$schema = $self->connect
}
return $schema;
}
sub connect {
my $self = shift;
return $self->next::method('dbi:SQLite:dbname='.$self->dbfile);
}
sub generate_ddl {
my $self = shift;
my $schema = $self->connect;
$schema->create_ddl_dir(
'SQLite',
$schema->schema_version,
$self->upgrade_directory,
);
}
sub prepopulate {
my $self = shift;
$self->resultset($_)->delete for qw{Bar Foo Gnarly_Station Bloaty Gnarly Station};
$self->populate( Gnarly => [
[qw{id name}],
[1,'frew'],
[2,'frioux'],
[3,'frooh'],
]);
$self->populate( Station => [
[qw{id name}],
[1,'frew'],
[2,'frioux'],
[3,'frooh'],
]);
$self->populate( Gnarly_Station => [
[qw{gnarly_id station_id}],
[1,1],
[1,3],
[2,1],
[3,1],
]);
$self->populate(Bloaty => [
[qw{id name}],
[1,1],
[2,2],
[3,3],
[4,4],
[5,5],
]);
$self->populate(Foo => [
[qw{id bar_id}],
[1,1],
[2,2],
[3,3],
[4,4],
[5,5],
]);
$self->populate(Bar => [
[qw{id foo_id}],
[1,1],
[2,2],
[3,3],
[4,4],
[5,5],
]);
}
'kitten eater';
|