c341d12a314b5ca9204952e9f35130ae8eddf19f
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / 03_explict_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
31 my $v_storage = $handler->version_storage;
32
33 my $version = $s->schema_version();
34 $handler->prepare_install();
35
36 $handler->install;
37
38 my $versions = [map "$_.0", 0..100];
39
40 {
41   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions->new({
42     schema => $s,
43     ordered_versions => $versions,
44     to_version => '1.0',
45     version_storage => $v_storage,
46   });
47
48   ok $vh, 'VersionHandler gets instantiated';
49
50   ok( !$vh->next_version_set, 'next version set returns undef if we are at the version requested' );
51 }
52
53 {
54   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions->new({
55     schema => $s,
56     ordered_versions => $versions,
57     to_version => '5.0',
58     version_storage => $v_storage,
59   });
60
61   ok $vh, 'VersionHandler gets instantiated';
62   ok( eq_array($vh->next_version_set, [qw( 1.0 2.0 )]), 'first version pair works' );
63   ok( eq_array($vh->next_version_set, [qw( 2.0 3.0 )]), 'second version pair works' );
64   ok( eq_array($vh->next_version_set, [qw( 3.0 4.0 )]), 'third version pair works' );
65   ok( eq_array($vh->next_version_set, [qw( 4.0 5.0 )]), 'fourth version pair works' );
66   ok( !$vh->next_version_set, 'no more versions after final pair' );
67   ok( !$vh->next_version_set, 'still no more versions after final pair' );
68 }
69
70 dies_ok {
71   my $vh = DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions->new({
72     schema => $s,
73     ordered_versions => $versions,
74     to_version => '0.0',
75     version_storage => $v_storage,
76   });
77 } 'cannot request a version before the current version';
78
79 done_testing;
80 __END__
81
82 vim: ts=2 sw=2 expandtab