1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
# -*- cperl -*-
use strict;
use warnings;
use lib 't';
use Test::More;
require "test-functions.pl";
if (can_svn()) {
plan tests => 18;
}
else {
plan skip_all => 'Cannot find or use svn commands.';
}
my $t = reset_repo();
my $wc = catdir($t, 'wc');
my $file = catfile($wc, 'file');
set_hook(<<'EOS');
use SVN::Hooks::UpdateConfFile;
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE();
EOS
work_nok('require first arg', 'UPDATE_CONF_FILE: invalid first argument.', <<"EOS");
echo asdf>$file
svn add -q --no-auto-props $file
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE('first');
EOS
work_nok('require second arg', 'UPDATE_CONF_FILE: invalid second argument.', <<"EOS");
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE('first', qr/regexp/);
EOS
work_nok('invalid second arg', 'UPDATE_CONF_FILE: invalid second argument', <<"EOS");
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE('first', 'second', 'third');
EOS
work_nok('odd number of args', 'UPDATE_CONF_FILE: odd number of arguments.', <<"EOS");
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE('first', 'second', validator => 'string');
EOS
work_nok('not code-ref', 'UPDATE_CONF_FILE: validator argument must be a CODE-ref or an ARRAY-ref', <<"EOS");
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE('first', 'second', foo => 'string');
EOS
work_nok('invalid option', 'UPDATE_CONF_FILE: invalid option names:', <<"EOS");
svn ci -mx $file
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE(file => 'file');
sub validate {
my ($text, $file, $svnlook) = @_;
die "undefined second argument" unless defined $file;
die "undefined third argument" unless defined $svnlook;
if ($text =~ /abort/) {
die "Aborting!"
}
else {
return 1;
}
}
UPDATE_CONF_FILE(validate => 'validate',
validator => \&validate);
sub generate {
my ($text, $file, $svnlook) = @_;
die "undefined second argument" unless defined $file;
die "undefined third argument" unless defined $svnlook;
return "[$file, $text]\n";
}
UPDATE_CONF_FILE(generate => 'generate',
generator => \&generate);
EOS
my $conf = catdir($t, 'repo', 'conf');
my $cfile = catfile($conf, 'file');
# Implement a script to compare two files. In Unix we would use 'cmp'
# but in Windows I couldn't use 'comp' because it's interactive.
my $cmp = catfile($t, 'cmp.pl');
{
open my $fh, '>', $cmp or die "Can't open '$cmp' for writing: $!\n";
print $fh <<'EOS';
use File::Compare;
exit compare(@ARGV);
EOS
}
my $perl = $^X;
work_ok('update without validation', <<"EOS");
svn ci -mx $file
$perl $cmp $file $cfile
EOS
my $validate = catfile($wc, 'validate');
my $cvalidate = catfile($conf, 'validate');
work_ok('update valid', <<"EOS");
echo asdf>$validate
svn add -q --no-auto-props $validate
svn ci -mx $validate
$perl $cmp $validate $cvalidate
EOS
work_nok('update aborting', 'UPDATE_CONF_FILE: Validator aborted for:', <<"EOS");
echo abort >$validate
svn ci -mx $validate
EOS
my $generate = catfile($wc, 'generate');
my $cgenerate = catfile($conf, 'generate');
my $generated = catfile($wc, 'generated');
{
open my $fh, '>', $generated
or die "Can't create $generated: $!\n";
print $fh <<'EOS';
[generate, asdf
]
EOS
}
work_ok('generate', <<"EOS");
echo asdf>$generate
svn add -q --no-auto-props $generate
svn ci -mx $generate
$perl $cmp $generated $cgenerate
EOS
my $config = <<'EOS';
UPDATE_CONF_FILE(subfile => 'subdir/');
UPDATE_CONF_FILE(outfile => '../outdir/');
UPDATE_CONF_FILE(qr/^file(\d)$/ => '$1-file');
sub actuate {
my ($text, $file, $svnlook) = @_;
die "undefined second argument" unless defined $file;
die "undefined third argument" unless defined $svnlook;
open F, '>', 'TTT/repo/conf/really-actuated' or die $!;
print F $text;
close F;
}
UPDATE_CONF_FILE(actuate => 'actuate',
actuator => \&actuate);
EOS
$config =~ s/TTT/$t/;
set_conf($config);
my $subdir = catdir($conf, 'subdir');
my $subfile = catfile($wc, 'subfile');
my $csubfile = catfile($subdir, 'subfile');
work_ok('to subdir', <<"EOS");
echo asdf>$subfile
svn add -q --no-auto-props $subfile
svn ci -mx $subfile
$perl $cmp $subfile $csubfile
EOS
my $outfile = catfile($wc, 'outfile');
my $coutfile = catfile($t, 'repo', 'outdir', 'outfile');
work_nok('to outdir', '', <<"EOS");
echo asdf>$outfile
svn add -q --no-auto-props $outfile
svn ci -mx $outfile
$perl $cmp $outfile $coutfile
EOS
my $cfile1 = catfile($conf, '1-file');
work_ok('regexp', <<"EOS");
echo asdf>${file}1
svn add -q --no-auto-props ${file}1
svn ci -mx ${file}1
$perl $cmp ${file}1 $cfile1
EOS
my $actuate = catfile($wc, 'actuate');
my $cactuate = catfile($conf, 'really-actuated');
work_ok('actuate', <<"EOS");
echo asdf>$actuate
svn add -q --no-auto-props $actuate
svn ci -mx $actuate
$perl $cmp $actuate $cactuate
EOS
set_conf(<<'EOS');
UPDATE_CONF_FILE(
unremoveable => 'unremoveable',
);
UPDATE_CONF_FILE(
removeable => 'removeable',
remove => 1,
);
EOS
my $unremoveable = catfile($wc, 'unremoveable');
my $cunremoveable = catfile($conf, 'unremoveable');
my $removeable = catfile($wc, 'removeable');
my $cremoveable = catfile($conf, 'removeable');
work_ok('setup delete test', <<"EOS");
echo asdf>$unremoveable
echo asdf>$removeable
svn add -q --no-auto-props $unremoveable $removeable
svn ci -mx $unremoveable $removeable
EOS
work_ok('delete files in commit', <<"EOS");
svn delete -q $unremoveable $removeable
svn ci -mx $wc
EOS
ok(! -f $cremoveable, 'remove conf');
ok(-f $cunremoveable, 'do not remove conf by default');
|