#!/usr/bin/perl -w
use strict;
use Test::More tests => 17;
use Term::ANSIColor qw(:constants);
use File::Spec::Functions qw(catfile);
use IO::File;
BEGIN {
use_ok 'Text::WordDiff' or die;
use_ok 'Text::WordDiff::HTML' or die;
}
my $string1 = 'This is a test';
my $string2 = 'That was a test';
my $term_diff = '
This is That was a test
';
my %opts = (
STYLE => 'HTML',
);
# Test scalar refs.
is word_diff(\$string1, \$string2, \%opts), $term_diff,
'Should HTML diff';
# Try code refs.
is word_diff( sub { \$string1 }, sub { \$string2 } , \%opts ), $term_diff,
'Should get same result for code refs';
# Try array refs.
my $BEGIN_WORD = qr/(?--- $filename1\t$time1\n}
. qq{+++ $filename2\t$time2\n};
my $file_diff = qq{$headerThis is a }
. qq{tst;test.}
. qq{\n}
. qq{it It }
. qq{is only a\ntest. Had }
. qq{it this }
. qq{been an\n}
. qq{actual diff, the results would\n}
. qq{have been output to HTML}
. qq{the terminal}
. qq{.\n\nSome string with }
. qq{funny \$funny \@}
. qq{\nchars in the end}
. qq{*?}
. qq{\n
};
is word_diff($filename1, $filename2, \%opts), $file_diff,
'Diff by file name should include a header';
# No more header after this.
$file_diff =~ s/\Q$header\E//;
# Try globs.
local (*FILE1, *FILE2);
open *FILE1, "<$filename1" or die qq{Cannot open "$filename1": $!};
open *FILE2, "<$filename2" or die qq{Cannot open "$filename2": $!};
is word_diff(\*FILE1, \*FILE2, \%opts), $file_diff,
'Diff by glob file handles should work';
close *FILE1;
close *FILE2;
# Try file handles.
my $fh1 = IO::File->new($filename1, '<')
or die qq{Cannot open "$filename1": $!};
my $fh2 = IO::File->new($filename2, '<')
or die qq{Cannot open "$filename2": $!};
is word_diff($fh1, $fh2, \%opts), $file_diff,
'Diff by IO::File objects should work';
$fh1->close;
$fh2->close;
# Try a code refence output handler.
my $output = '';
$opts{OUTPUT} = sub { $output .= shift };
is word_diff(\$string1, \$string2, \%opts ), 2,
'Should get a count of 2 hunks with code ref output';
is $output, $term_diff, 'The code ref should have been called';
# Try a scalar ref output handler.
$output = '';
$opts{OUTPUT} = \$output;
is word_diff(\$string1, \$string2, \%opts), 2,
'Should get a count of 2 hunks with scalar ref output';
is $output, $term_diff, 'The scalar ref should have been appended to';
# Try an array ref output handler.
my $hunks = [];
$opts{OUTPUT} = $hunks;
is word_diff(\$string1, \$string2, \%opts), 2,
'Should get a count of 2 hunks with array ref output';
is join('', @$hunks), $term_diff,
'The array ref should have been appended to';
# Try a file handle output handler.
my $fh = IO::File->new_tmpfile;
SKIP: {
skip 'Cannot create temp filehandle', 2 unless $fh;
$opts{OUTPUT} = $fh;
is word_diff(\$string1, \$string2, \%opts), 2,
'Should get a count of 2 hunks with file handle output';
$fh->seek(0, 0);
is do { local $/; <$fh>; }, $term_diff,
'The file handle should have been written to';
}