2012-03-18 14:46:31 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
# this is hardcoded; change it if needed
|
2012-04-06 16:59:05 +02:00
|
|
|
use lib "src/lib";
|
2012-03-18 14:46:31 +01:00
|
|
|
use Gitolite::Test;
|
|
|
|
|
2012-03-19 11:33:59 +01:00
|
|
|
# delegation tests -- part 2
|
2012-03-18 14:46:31 +01:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
2012-03-22 01:47:34 +01:00
|
|
|
try "plan 54";
|
2012-03-18 14:46:31 +01:00
|
|
|
|
|
|
|
try "
|
|
|
|
DEF SP_1 = git add conf ; ok; git commit -m %1; ok; /master.* %1/
|
|
|
|
DEF SUBCONF_PUSH = SP_1 %2; glt push %1 origin; gsh; /master -> master/
|
|
|
|
";
|
|
|
|
|
|
|
|
confreset;confadd '
|
|
|
|
# group your projects/repos however you want
|
|
|
|
@u1r = r1[ab]
|
|
|
|
@u2r = r2[ab]
|
|
|
|
@u3r = r3[ab]
|
|
|
|
|
|
|
|
# the admin repo access was probably like this to start with:
|
|
|
|
repo gitolite-admin
|
|
|
|
RW = u1 u2 u3
|
|
|
|
RW+ NAME/ = admin
|
|
|
|
RW NAME/conf/fragments/u1r = u1
|
|
|
|
RW NAME/conf/fragments/u2r = u2
|
|
|
|
RW NAME/conf/fragments/u3r = u3
|
|
|
|
- NAME/ = @all
|
|
|
|
|
|
|
|
subconf "fragments/*.conf"
|
|
|
|
';
|
|
|
|
|
|
|
|
try "ADMIN_PUSH set1; !/FATAL/" or die text();
|
|
|
|
|
|
|
|
try "mkdir -p conf/fragments; ok";
|
|
|
|
|
|
|
|
put "conf/fragments/u1r.conf", '
|
|
|
|
repo r1a r1b
|
|
|
|
C = @all
|
|
|
|
RW+ = CREATOR
|
|
|
|
repo @u1r
|
|
|
|
RW+ = tester
|
|
|
|
';
|
|
|
|
|
|
|
|
put "conf/fragments/u2r.conf", '
|
|
|
|
repo @u2r
|
|
|
|
C = @all
|
|
|
|
RW+ = CREATOR
|
|
|
|
repo @u2r
|
|
|
|
RW+ = tester
|
|
|
|
';
|
|
|
|
|
|
|
|
put "conf/fragments/u3r.conf", '
|
|
|
|
repo @u3r
|
|
|
|
C = @all
|
|
|
|
RW+ = CREATOR
|
|
|
|
repo @u3r
|
|
|
|
RW+ = tester
|
|
|
|
';
|
|
|
|
|
|
|
|
try "ADMIN_PUSH set1; !/FATAL/" or die text();
|
|
|
|
try "
|
|
|
|
/Initialized empty Git repository in .*/r1a.git//
|
|
|
|
/Initialized empty Git repository in .*/r1b.git//
|
|
|
|
";
|
|
|
|
|
|
|
|
# u1 push u1r pass
|
|
|
|
put "conf/fragments/u1r.conf", '
|
|
|
|
repo @u1r
|
|
|
|
RW+ = u5
|
|
|
|
';
|
|
|
|
try "SUBCONF_PUSH u1 u1; !/FATAL/" or die text();
|
|
|
|
|
|
|
|
# u2 main push fail
|
|
|
|
confadd '
|
|
|
|
repo @u1r
|
|
|
|
RW+ = u6
|
|
|
|
';
|
|
|
|
try "SUBCONF_PUSH u2 u2; /FATAL/;
|
|
|
|
/W VREF/NAME/conf/gitolite.conf gitolite-admin u2 DENIED by VREF/NAME//
|
|
|
|
";
|
|
|
|
|
|
|
|
try "git reset --hard origin/master; ok";
|
|
|
|
|
|
|
|
# u2 push u1r fail
|
|
|
|
put "conf/fragments/u1r.conf", '
|
|
|
|
repo @u1r
|
|
|
|
RW+ = u6
|
|
|
|
';
|
|
|
|
try "SUBCONF_PUSH u2 u2; /FATAL/
|
|
|
|
/W VREF/NAME/conf/fragments/u1r.conf gitolite-admin u2 DENIED by VREF/NAME//
|
|
|
|
";
|
|
|
|
|
|
|
|
try "git reset --hard origin/master; ok";
|
|
|
|
|
|
|
|
# u3 set perms for r2a fail
|
|
|
|
put "conf/fragments/u3r.conf", '
|
|
|
|
repo r2a
|
|
|
|
RW+ = u6
|
|
|
|
';
|
|
|
|
try "SUBCONF_PUSH u3 u3;
|
2012-03-30 14:30:02 +02:00
|
|
|
/WARNING: subconf 'u3r' attempting to set access for r2a/
|
2012-03-18 14:46:31 +01:00
|
|
|
";
|
|
|
|
|
|
|
|
try "git reset --hard origin/master; ok";
|
|
|
|
|
|
|
|
# u3 add r2b to u3r fail
|
|
|
|
|
|
|
|
put "conf/fragments/u3r.conf", '
|
|
|
|
@u3r = r2b
|
|
|
|
repo @u3r
|
|
|
|
RW+ = u6
|
|
|
|
';
|
|
|
|
|
|
|
|
try "SUBCONF_PUSH u3 u3
|
2012-03-30 14:30:02 +02:00
|
|
|
/WARNING: subconf 'u3r' attempting to set access for locally modified \@u3r/
|
2012-03-18 14:46:31 +01:00
|
|
|
";
|