Add test for closing file.
[dbsrgits/SQL-Translator.git] / t / 04file,fh,string.t
1 #!/usr/bin/perl
2 # vim: set ft=perl:
3 #
4 # This tests that the same file can be passed in using a filename,
5 # a filehandle, and a string, and return identical results.  There's
6 # a lot of setup here, because we have to emulate the various ways
7 # that $tr->translate might be called:  with a string (filename),
8 # with a filehandle (IO::File, FileHandle, or \*FOO), and with a
9 # scalar reference (data in a string).
10 #
11
12 use strict;
13
14 use IO::File;
15 use Storable 'freeze';
16 use SQL::Translator;
17 use Test::More tests => 3;
18
19 # The filename, holder for all the data, and the filehandle
20 my $datafile = "t/data/mysql/Apache-Session-MySQL.sql";
21 my $data;
22 my $fh = IO::File->new($datafile);
23
24 my ($v1, $v2);
25 {
26     my $tr = SQL::Translator->new;
27     # Pass filename: simplest way
28     $tr->translate($datafile);
29     $v1 = freeze( $tr->schema );
30 }
31
32 {
33     my $tr = SQL::Translator->new;
34     # Pass string reference
35     read($fh, $data, -s $datafile);
36     $tr->translate(\$data);
37     $v2 = freeze( $tr->schema );
38 }
39
40 ok(length $v1, "passing string (filename) works");
41 ok(length $v2, "passing string as SCALAR reference");
42 is($v1, $v2, "from file == from string");