more tests
This commit is contained in:
parent
89cc3a303d
commit
141b2ce897
4 changed files with 136 additions and 102 deletions
79
t/include-subconf.t
Executable file
79
t/include-subconf.t
Executable file
|
@ -0,0 +1,79 @@
|
|||
#!/usr/bin/perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
# this is hardcoded; change it if needed
|
||||
use lib "src";
|
||||
use Gitolite::Test;
|
||||
|
||||
try 'plan 37';
|
||||
|
||||
confreset; confadd '
|
||||
include "i1.conf"
|
||||
@i2 = b1
|
||||
subconf "i2.conf"
|
||||
include "i1.conf"
|
||||
';
|
||||
confadd 'i1.conf', '
|
||||
@g1 = a1 a2
|
||||
repo foo
|
||||
RW = u1
|
||||
|
||||
include "j1.conf"
|
||||
';
|
||||
confadd 'i2.conf', '
|
||||
@g2 = b1 b2
|
||||
repo bar b1 b2 i1 i2 @i1 @i2 @g2
|
||||
RW = u2
|
||||
';
|
||||
confadd 'j1.conf', '
|
||||
@h2 = c1 c2
|
||||
repo baz
|
||||
RW = u3
|
||||
';
|
||||
|
||||
try "ADMIN_PUSH set2; !/FATAL/" or die text();
|
||||
|
||||
try "
|
||||
/i1.conf already included/
|
||||
/i2.conf attempting to set access for \@i1, b2, bar, i1, locally modified \@g2/
|
||||
!/attempting to set access.*i2/
|
||||
/Initialized.*empty.*baz.git/
|
||||
/Initialized.*empty.*foo.git/
|
||||
/Initialized.*empty.*b1.git/
|
||||
/Initialized.*empty.*i2.git/
|
||||
!/Initialized.*empty.*b2.git/
|
||||
!/Initialized.*empty.*i1.git/
|
||||
!/Initialized.*empty.*bar.git/
|
||||
";
|
||||
|
||||
confreset;confadd '
|
||||
@g2 = i1 i2 i3
|
||||
subconf "g2.conf"
|
||||
';
|
||||
confadd 'g2.conf', '
|
||||
@g2 = g2 h2 i2
|
||||
repo @g2
|
||||
RW = u1
|
||||
';
|
||||
|
||||
try "ADMIN_PUSH set3; !/FATAL/" or die text();
|
||||
try "
|
||||
/g2.conf attempting to set access for locally modified \@g2/
|
||||
!/Initialized.*empty/
|
||||
";
|
||||
|
||||
confreset;confadd '
|
||||
@g2 = i1 i2 i3
|
||||
subconf "g2.conf"
|
||||
';
|
||||
confadd 'g2.conf', '
|
||||
subconf master
|
||||
@g2 = g2 h2 i2
|
||||
repo @g2
|
||||
RW = u1
|
||||
';
|
||||
|
||||
try "
|
||||
ADMIN_PUSH set3; ok; /FATAL: subconf g2 attempting to run 'subconf'/
|
||||
";
|
Loading…
Add table
Add a link
Reference in a new issue