Fixed a bug in upgrade_db.pl in failing on unrecognized versions
[dbsrgits/DBM-Deep.git] / t / 44_upgrade_db.t
CommitLineData
e9b0b5f0 1$|++;
2use strict;
3use Test::More;
4
5# Add skips here
6BEGIN {
45f047f8 7 plan skip_all => "Skipping the upgrade_db.pl tests on Win32/cygwin for now."
8 if ( $^O eq 'MSWin32' || $^O eq 'cygwin' );
9
08164b50 10 plan skip_all => "Skipping the upgrade_db.pl tests on *bsd for now."
11 if ( $^O =~ /bsd/i );
12
e9b0b5f0 13 my @failures;
9c87a079 14 eval "use Pod::Usage 1.3;"; push @failures, 'Pod::Usage' if $@;
15 eval "use IO::Scalar;"; push @failures, 'IO::Scalar' if $@;
16 eval "use FileHandle::Fmode;"; push @failures, 'FileHandle::Fmode' if $@;
e9b0b5f0 17 if ( @failures ) {
18 my $missing = join ',', @failures;
19 plan skip_all => "'$missing' must be installed to run these tests";
20 }
21}
22
9c7d9738 23plan tests => 302;
e9b0b5f0 24
25use t::common qw( new_fh );
26use File::Spec;
27use Test::Deep;
28
29my $PROG = File::Spec->catfile( qw( utils upgrade_db.pl ) );
30
31my $short = get_pod( $PROG, 0 );
32my $long = get_pod( $PROG, 1 );
33
34is( run_prog( $PROG ), "Missing required parameters.\n$long", "Failed no params" );
35is( run_prog( $PROG, '-input foo' ), "Missing required parameters.\n$long", "Failed only -input" );
36is( run_prog( $PROG, '-output foo' ), "Missing required parameters.\n$long", "Failed only -output" );
37is(
38 run_prog( $PROG, '-input foo', '-output foo' ),
39 "Cannot use the same filename for both input and output.\n$short",
40 "Failed same name",
41);
42
43is(
44 run_prog( $PROG, '-input foo', '-output bar' ),
45 "'foo' is not a file.\n$short",
46 "Failed input does not exist",
47);
48
49my (undef, $input_filename) = new_fh();
50my (undef, $output_filename) = new_fh();
51
52is(
53 run_prog( $PROG, "-input $input_filename", "-output $output_filename" ),
54 "'$input_filename' is not a DBM::Deep file.\n$short",
55 "Input is not a DBM::Deep file",
56);
57
5a70a6c0 58unlink $input_filename;unlink $output_filename;
59
e9b0b5f0 60# All files are of the form:
61# $db->{foo} = [ 1 .. 3 ];
62
63my @input_files = (
64 '0-983',
65 '0-99_04',
66 '1-0000',
1cff45d7 67 '1-0003',
e9b0b5f0 68);
69
70my @output_versions = (
71 '0.91', '0.92', '0.93', '0.94', '0.95', '0.96', '0.97', '0.98',
72 '0.981', '0.982', '0.983',
73 '0.99_01', '0.99_02', '0.99_03', '0.99_04',
1cff45d7 74 '1.00', '1.000', '1.0000', '1.0001', '1.0002',
9c7d9738 75 '1.0003', '1.0004', '1.0005', '1.0006', '1.0007', '1.0008', '1.0009', '1.0010',
76 '1.0011', '1.0012', '1.0013', '1.0014',
e9b0b5f0 77);
78
79foreach my $input_filename (
80 map {
81 File::Spec->catfile( qw( t etc ), "db-$_" )
82 } @input_files
83) {
84 # chmod it writable because old DBM::Deep versions don't handle readonly
85 # files correctly. This is fixed in DBM::Deep 1.0000
86 chmod 0600, $input_filename;
87
88 foreach my $v ( @output_versions ) {
89 my (undef, $output_filename) = new_fh();
f709c026 90
e9b0b5f0 91 my $output = run_prog(
92 $PROG,
93 "-input $input_filename",
94 "-output $output_filename",
95 "-version $v",
96 );
97
f709c026 98 warn "Testing $input_filename against $v\n";
9c7d9738 99
e00d0eb3 100 # Clone was removed as a requirement in 1.0006
101 if ( $output =~ /Can\'t locate Clone\.pm in \@INC/ ) {
102 ok( 1 );
103 unless ( $input_filename =~ /_/ || $v =~ /_/ ) {
104 ok( 1 ); ok( 1 );
105 }
106 next;
107 }
108
e9b0b5f0 109 if ( $input_filename =~ /_/ ) {
110 is(
111 $output, "'$input_filename' is a dev release and not supported.\n$short",
112 "Input file is a dev release - not supported",
113 );
114
115 next;
116 }
117
118 if ( $v =~ /_/ ) {
119 is(
120 $output, "-version '$v' is a dev release and not supported.\n$short",
121 "Output version is a dev release - not supported",
122 );
123
124 next;
125 }
126
127 # Now, read the output file with the right version.
128 ok( !$output, "A successful run produces no output" );
f709c026 129 die "'$input_filename' -> '$v' : $output\n" if $output;
e9b0b5f0 130
131 my $db;
9c7d9738 132 if ( $v =~ /^1\.001[0-4]/ || $v =~ /^1\.000[3-9]/ ) {
5a70a6c0 133 push @INC, 'lib';
f709c026 134 eval "use DBM::Deep $v"; die $@ if $@;
5a70a6c0 135 $db = DBM::Deep->new( $output_filename );
e9b0b5f0 136 }
1cff45d7 137 elsif ( $v =~ /^1\.000?[0-2]?/ ) {
138 push @INC, File::Spec->catdir( 'utils', 'lib' );
139 eval "use DBM::Deep::10002";
140 $db = DBM::Deep::10002->new( $output_filename );
141 }
5a70a6c0 142 elsif ( $v =~ /^0/ ) {
143 push @INC, File::Spec->catdir( 'utils', 'lib' );
144 eval "use DBM::Deep::09830";
145 $db = DBM::Deep::09830->new( $output_filename );
e9b0b5f0 146 }
147 else {
148 die "How did we get here?!\n";
149 }
150
151 ok( $db, "Writing to version $v made a file" );
152
153 cmp_deeply(
154 $db->export,
155 { foo => [ 1 .. 3 ] },
156 "We can read the output file",
157 );
158 }
159}
160
161################################################################################
162
163#XXX This needs to be made OS-portable
164sub run_prog {
151e0077 165 open( my $fh, '-|', "$^X @_ 2>&1" )
e9b0b5f0 166 or die "Cannot launch '@_' as a piped filehandle: $!\n";
167 return join '', <$fh>;
168}
169
170# In 5.8, we could use in-memory filehandles and have done:
171# open( my $fh, '>', \my $pod ) or die "Cannot open in-memory filehandle: $!\n";
172# ...
173# return $pod;
174# However, DBM::Deep requires 5.6, so this set of contortions will have to do.
175sub get_pod {
176 my ($p,$v) = @_;
177
178 my ($fh, $fn) = new_fh();
179 close $fh;
180
181 open $fh, '>', $fn;
182 pod2usage({
183 -input => $p,
184 -output => $fh,
185 -verbose => $v,
186 -exitval => 'NOEXIT',
187 });
188 close $fh;
189
190 open $fh, '<', $fn;
191 return join '', <$fh>;
192}