heirarchy should work now, next up, tests
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / 04_db_schema_versions.t
1 #!perl
2
3 use Test::More;
4 use Test::Exception;
5
6 use lib 't/lib';
7 use DBICTest;
8 use DBIx::Class::DeploymentHandler;
9 use DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions;
10 my $db = 'dbi:SQLite:db.db';
11 my @connection = ($db, '', '', { ignore_version => 1 });
12 my $sql_dir = 't/sql';
13
14 unlink 'db.db' if -e 'db.db';
15 if (-d 't/sql') {
16   unlink $_ for glob('t/sql/*');
17 } else {
18   mkdir 't/sql';
19 }
20
21 use DBICVersion_v1;
22 my $s = DBICVersion::Schema->connect(@connection);
23
24 my $handler = DBIx::Class::DeploymentHandler->new({
25    upgrade_directory => $sql_dir,
26    schema => $s,
27    databases => 'SQLite',
28  sqltargs => { add_drop_table => 0 },
29 });
30 my $v_storage = $handler->version_storage;
31 my $version = $s->schema_version();
32 $handler->prepare_install();
33
34 $handler->install;
35 {
36   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::DatabaseToSchemaVersions->new({
37     schema => $s,
38     ordered_versions => $versions,
39     to_version => '5.0',
40     version_storage => $v_storage,
41   });
42
43   ok( $vh, 'VersionHandler gets instantiated' );
44   ok( eq_array( $vh->next_version_set, [qw( 1.0 5.0 )] ), 'db version and to_version get correctly put into version set');
45   ok( !$vh->next_version_set, 'next_version_set only works once');
46   ok( !$vh->next_version_set, 'seriously.');
47 }
48
49 {
50   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::DatabaseToSchemaVersions->new({
51     schema => $s,
52     ordered_versions => $versions,
53     version_storage => $v_storage,
54   });
55
56   ok( $vh, 'VersionHandler gets instantiated' );
57   ok( !$vh->next_version_set, 'VersionHandler is null when schema_version and db_verison are the same' );
58 }
59
60 {
61   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::DatabaseToSchemaVersions->new({
62     schema => $s,
63     ordered_versions => $versions,
64     version_storage => $v_storage,
65   });
66
67   ok( $vh, 'VersionHandler gets instantiated' );
68   ok( !$vh->next_version_set, 'VersionHandler is null when schema_version and db_verison are the same' );
69 }
70
71 {
72   $DBICVersion::Schema::VERSION = '10.0';
73
74   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::DatabaseToSchemaVersions->new({
75     schema => $s,
76     ordered_versions => $versions,
77     version_storage => $v_storage,
78   });
79
80   ok( $vh, 'VersionHandler gets instantiated' );
81   ok( eq_array( $vh->next_version_set, [qw( 1.0 10.0 )] ), 'db version and schema version get correctly put into version set');
82   ok( !$vh->next_version_set, 'VersionHandler is null on next try' );
83 }
84
85 done_testing;
86 __END__
87
88 vim: ts=2 sw=2 expandtab