test-largefiles.t
2254 lines
| 60.3 KiB
| text/troff
|
Tads3Lexer
/ tests / test-largefiles.t
Adrian Buehlmann
|
r17088 | $ USERCACHE="$TESTTMP/cache"; export USERCACHE | ||
Mads Kiilerich
|
r17092 | $ mkdir "${USERCACHE}" | ||
Na'Tosha Bard
|
r15216 | $ cat >> $HGRCPATH <<EOF | ||
> [extensions] | ||||
> largefiles= | ||||
Na'Tosha Bard
|
r15251 | > purge= | ||
> rebase= | ||||
Na'Tosha Bard
|
r15383 | > transplant= | ||
Pierre-Yves David
|
r15742 | > [phases] | ||
> publish=False | ||||
Na'Tosha Bard
|
r15251 | > [largefiles] | ||
Greg Ward
|
r15304 | > minsize=2 | ||
Na'Tosha Bard
|
r15251 | > patterns=glob:**.dat | ||
Kevin Gessner
|
r15778 | > usercache=${USERCACHE} | ||
Levi Bard
|
r15795 | > [hooks] | ||
Jim Hague
|
r17462 | > precommit=sh -c "echo \\"Invoking status precommit hook\\"; hg status" | ||
Na'Tosha Bard
|
r15216 | > EOF | ||
Create the repo with a couple of revisions of both large and normal | ||||
Mads Kiilerich
|
r18144 | files. | ||
Test status and dirstate of largefiles and that summary output is correct. | ||||
Na'Tosha Bard
|
r15216 | |||
$ hg init a | ||||
$ cd a | ||||
$ mkdir sub | ||||
$ echo normal1 > normal1 | ||||
$ echo normal2 > sub/normal2 | ||||
$ echo large1 > large1 | ||||
$ echo large2 > sub/large2 | ||||
$ hg add normal1 sub/normal2 | ||||
$ hg add --large large1 sub/large2 | ||||
$ hg commit -m "add files" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A large1 | ||||
A normal1 | ||||
A sub/large2 | ||||
A sub/normal2 | ||||
Mads Kiilerich
|
r18144 | $ touch large1 sub/large2 | ||
$ sleep 1 | ||||
$ hg st | ||||
$ hg debugstate --nodates | ||||
n 644 41 .hglf/large1 | ||||
n 644 41 .hglf/sub/large2 | ||||
n 644 8 normal1 | ||||
n 644 8 sub/normal2 | ||||
$ hg debugstate --large | ||||
n 644 7 large1 | ||||
n 644 7 sub/large2 | ||||
Na'Tosha Bard
|
r15216 | $ echo normal11 > normal1 | ||
$ echo normal22 > sub/normal2 | ||||
$ echo large11 > large1 | ||||
$ echo large22 > sub/large2 | ||||
Levi Bard
|
r15795 | $ hg commit -m "edit files" | ||
Invoking status precommit hook | ||||
Na'Tosha Bard
|
r15225 | M large1 | ||
M normal1 | ||||
M sub/large2 | ||||
M sub/normal2 | ||||
Na'Tosha Bard
|
r15787 | $ hg sum --large | ||
parent: 1:ce8896473775 tip | ||||
edit files | ||||
branch: default | ||||
commit: (clean) | ||||
update: (current) | ||||
FUJIWARA Katsunori
|
r17894 | largefiles: (no remote repo) | ||
Na'Tosha Bard
|
r15216 | |||
Greg Ward
|
r15328 | Commit preserved largefile contents. | ||
Na'Tosha Bard
|
r15216 | |||
$ cat normal1 | ||||
normal11 | ||||
$ cat large1 | ||||
large11 | ||||
$ cat sub/normal2 | ||||
normal22 | ||||
$ cat sub/large2 | ||||
large22 | ||||
Patrick Mezard
|
r16586 | Test status, subdir and unknown files | ||
$ echo unknown > sub/unknown | ||||
$ hg st --all | ||||
? sub/unknown | ||||
C large1 | ||||
C normal1 | ||||
C sub/large2 | ||||
C sub/normal2 | ||||
$ hg st --all sub | ||||
? sub/unknown | ||||
C sub/large2 | ||||
C sub/normal2 | ||||
$ rm sub/unknown | ||||
Mads Kiilerich
|
r18066 | Test messages and exit codes for remove warning cases | ||
Matt Harbison
|
r17576 | |||
$ hg remove -A large1 | ||||
Mads Kiilerich
|
r18066 | not removing large1: file still exists | ||
Matt Harbison
|
r17576 | [1] | ||
$ echo 'modified' > large1 | ||||
$ hg remove large1 | ||||
Mads Kiilerich
|
r18066 | not removing large1: file is modified (use -f to force removal) | ||
Matt Harbison
|
r17576 | [1] | ||
Mads Kiilerich
|
r18066 | $ echo 'new' > normalnew | ||
$ hg add normalnew | ||||
$ echo 'new' > largenew | ||||
$ hg add --large normalnew | ||||
normalnew already tracked! | ||||
$ hg remove normalnew largenew | ||||
not removing largenew: file is untracked | ||||
not removing normalnew: file has been marked for add (use forget to undo) | ||||
[1] | ||||
$ rm normalnew largenew | ||||
Matt Harbison
|
r17576 | $ hg up -Cq | ||
Greg Ward
|
r15328 | Remove both largefiles and normal files. | ||
Thomas Arendsen Hein
|
r17594 | |||
Na'Tosha Bard
|
r15216 | $ hg remove normal1 large1 | ||
FUJIWARA Katsunori
|
r16281 | $ hg status large1 | ||
R large1 | ||||
Na'Tosha Bard
|
r15216 | $ hg commit -m "remove files" | ||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
R large1 | ||||
R normal1 | ||||
Na'Tosha Bard
|
r15216 | $ ls | ||
sub | ||||
Na'Tosha Bard
|
r15786 | $ echo "testlargefile" > large1-test | ||
$ hg add --large large1-test | ||||
$ hg st | ||||
A large1-test | ||||
$ hg rm large1-test | ||||
not removing large1-test: file has been marked for add (use forget to undo) | ||||
Matt Harbison
|
r17576 | [1] | ||
Na'Tosha Bard
|
r15786 | $ hg st | ||
A large1-test | ||||
$ hg forget large1-test | ||||
$ hg st | ||||
? large1-test | ||||
Matt Harbison
|
r17576 | $ hg remove large1-test | ||
not removing large1-test: file is untracked | ||||
[1] | ||||
Matt Harbison
|
r17579 | $ hg forget large1-test | ||
not removing large1-test: file is already untracked | ||||
[1] | ||||
Na'Tosha Bard
|
r15786 | $ rm large1-test | ||
Na'Tosha Bard
|
r15216 | |||
Na'Tosha Bard
|
r15598 | Copy both largefiles and normal files (testing that status output is correct). | ||
Na'Tosha Bard
|
r15216 | |||
$ hg cp sub/normal2 normal1 | ||||
$ hg cp sub/large2 large1 | ||||
Levi Bard
|
r15795 | $ hg commit -m "copy files" | ||
Invoking status precommit hook | ||||
Na'Tosha Bard
|
r15598 | A large1 | ||
A normal1 | ||||
Na'Tosha Bard
|
r15216 | $ cat normal1 | ||
normal22 | ||||
$ cat large1 | ||||
large22 | ||||
Test moving largefiles and verify that normal files are also unaffected. | ||||
$ hg mv normal1 normal3 | ||||
$ hg mv large1 large3 | ||||
$ hg mv sub/normal2 sub/normal4 | ||||
$ hg mv sub/large2 sub/large4 | ||||
$ hg commit -m "move files" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A large3 | ||||
A normal3 | ||||
A sub/large4 | ||||
A sub/normal4 | ||||
R large1 | ||||
R normal1 | ||||
R sub/large2 | ||||
R sub/normal2 | ||||
Na'Tosha Bard
|
r15216 | $ cat normal3 | ||
normal22 | ||||
$ cat large3 | ||||
large22 | ||||
$ cat sub/normal4 | ||||
normal22 | ||||
$ cat sub/large4 | ||||
large22 | ||||
Matt Harbison
|
r17245 | Test copies and moves from a directory other than root (issue3516) | ||
$ cd .. | ||||
$ hg init lf_cpmv | ||||
$ cd lf_cpmv | ||||
$ mkdir dira | ||||
$ mkdir dira/dirb | ||||
$ touch dira/dirb/largefile | ||||
$ hg add --large dira/dirb/largefile | ||||
$ hg commit -m "added" | ||||
Invoking status precommit hook | ||||
A dira/dirb/largefile | ||||
$ cd dira | ||||
$ hg cp dirb/largefile foo/largefile | ||||
$ hg ci -m "deep copy" | ||||
Invoking status precommit hook | ||||
A dira/foo/largefile | ||||
$ find . | sort | ||||
. | ||||
./dirb | ||||
./dirb/largefile | ||||
./foo | ||||
./foo/largefile | ||||
$ hg mv foo/largefile baz/largefile | ||||
$ hg ci -m "moved" | ||||
Invoking status precommit hook | ||||
A dira/baz/largefile | ||||
R dira/foo/largefile | ||||
$ find . | sort | ||||
. | ||||
./baz | ||||
./baz/largefile | ||||
./dirb | ||||
./dirb/largefile | ||||
./foo | ||||
$ cd ../../a | ||||
Mads Kiilerich
|
r18228 | #if serve | ||
Martin Geisler
|
r16449 | Test display of largefiles in hgweb | ||
$ hg serve -d -p $HGPORT --pid-file ../hg.pid | ||||
$ cat ../hg.pid >> $DAEMON_PIDS | ||||
Mads Kiilerich
|
r17017 | $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/tip/?style=raw' | ||
Martin Geisler
|
r16449 | 200 Script output follows | ||
Mads Kiilerich
|
r18228 | |||
Martin Geisler
|
r16449 | drwxr-xr-x sub | ||
-rw-r--r-- 41 large3 | ||||
-rw-r--r-- 9 normal3 | ||||
Mads Kiilerich
|
r18228 | |||
Mads Kiilerich
|
r17017 | $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/tip/sub/?style=raw' | ||
Martin Geisler
|
r16449 | 200 Script output follows | ||
Mads Kiilerich
|
r18228 | |||
Martin Geisler
|
r16449 | -rw-r--r-- 41 large4 | ||
-rw-r--r-- 9 normal4 | ||||
Mads Kiilerich
|
r18228 | |||
Patrick Mezard
|
r17466 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS | ||
Mads Kiilerich
|
r17089 | #endif | ||
Martin Geisler
|
r16449 | |||
Na'Tosha Bard
|
r15216 | Test archiving the various revisions. These hit corner cases known with | ||
archiving. | ||||
$ hg archive -r 0 ../archive0 | ||||
$ hg archive -r 1 ../archive1 | ||||
$ hg archive -r 2 ../archive2 | ||||
$ hg archive -r 3 ../archive3 | ||||
$ hg archive -r 4 ../archive4 | ||||
$ cd ../archive0 | ||||
Thomas Arendsen Hein
|
r17594 | $ cat normal1 | ||
Na'Tosha Bard
|
r15216 | normal1 | ||
$ cat large1 | ||||
large1 | ||||
$ cat sub/normal2 | ||||
normal2 | ||||
$ cat sub/large2 | ||||
large2 | ||||
$ cd ../archive1 | ||||
$ cat normal1 | ||||
normal11 | ||||
$ cat large1 | ||||
large11 | ||||
$ cat sub/normal2 | ||||
normal22 | ||||
$ cat sub/large2 | ||||
large22 | ||||
$ cd ../archive2 | ||||
$ ls | ||||
sub | ||||
$ cat sub/normal2 | ||||
normal22 | ||||
$ cat sub/large2 | ||||
large22 | ||||
$ cd ../archive3 | ||||
$ cat normal1 | ||||
normal22 | ||||
$ cat large1 | ||||
large22 | ||||
$ cat sub/normal2 | ||||
normal22 | ||||
$ cat sub/large2 | ||||
large22 | ||||
$ cd ../archive4 | ||||
$ cat normal3 | ||||
normal22 | ||||
$ cat large3 | ||||
large22 | ||||
$ cat sub/normal4 | ||||
normal22 | ||||
$ cat sub/large4 | ||||
large22 | ||||
Na'Tosha Bard
|
r15251 | |||
Greg Ward
|
r15328 | Commit corner case: specify files to commit. | ||
Na'Tosha Bard
|
r15251 | |||
$ cd ../a | ||||
$ echo normal3 > normal3 | ||||
$ echo large3 > large3 | ||||
$ echo normal4 > sub/normal4 | ||||
$ echo large4 > sub/large4 | ||||
$ hg commit normal3 large3 sub/normal4 sub/large4 -m "edit files again" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M large3 | ||||
M normal3 | ||||
M sub/large4 | ||||
M sub/normal4 | ||||
Na'Tosha Bard
|
r15251 | $ cat normal3 | ||
normal3 | ||||
$ cat large3 | ||||
large3 | ||||
$ cat sub/normal4 | ||||
normal4 | ||||
$ cat sub/large4 | ||||
large4 | ||||
Greg Ward
|
r15328 | One more commit corner case: commit from a subdirectory. | ||
Na'Tosha Bard
|
r15251 | |||
$ cd ../a | ||||
$ echo normal33 > normal3 | ||||
$ echo large33 > large3 | ||||
$ echo normal44 > sub/normal4 | ||||
$ echo large44 > sub/large4 | ||||
$ cd sub | ||||
$ hg commit -m "edit files yet again" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M large3 | ||||
M normal3 | ||||
M sub/large4 | ||||
M sub/normal4 | ||||
Na'Tosha Bard
|
r15251 | $ cat ../normal3 | ||
normal33 | ||||
$ cat ../large3 | ||||
large33 | ||||
$ cat normal4 | ||||
normal44 | ||||
$ cat large4 | ||||
large44 | ||||
Greg Ward
|
r15328 | Committing standins is not allowed. | ||
Na'Tosha Bard
|
r15251 | |||
$ cd .. | ||||
$ echo large3 > large3 | ||||
$ hg commit .hglf/large3 -m "try to commit standin" | ||||
Greg Ward
|
r15253 | abort: file ".hglf/large3" is a largefile standin | ||
(commit the largefile itself instead) | ||||
Na'Tosha Bard
|
r15251 | [255] | ||
Greg Ward
|
r15328 | Corner cases for adding largefiles. | ||
Na'Tosha Bard
|
r15251 | |||
$ echo large5 > large5 | ||||
$ hg add --large large5 | ||||
$ hg add --large large5 | ||||
large5 already a largefile | ||||
$ mkdir sub2 | ||||
$ echo large6 > sub2/large6 | ||||
$ echo large7 > sub2/large7 | ||||
$ hg add --large sub2 | ||||
Mads Kiilerich
|
r15447 | adding sub2/large6 as a largefile (glob) | ||
adding sub2/large7 as a largefile (glob) | ||||
Na'Tosha Bard
|
r15251 | $ hg st | ||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
Levi Bard
|
r18064 | Committing directories containing only largefiles. | ||
$ mkdir -p z/y/x/m | ||||
$ touch z/y/x/m/large1 | ||||
$ touch z/y/x/large2 | ||||
$ hg add --large z/y/x/m/large1 z/y/x/large2 | ||||
$ hg commit -m "Subdir with directory only containing largefiles" z | ||||
Invoking status precommit hook | ||||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
A z/y/x/large2 | ||||
A z/y/x/m/large1 | ||||
$ hg rollback --quiet | ||||
$ touch z/y/x/m/normal | ||||
$ hg add z/y/x/m/normal | ||||
$ hg commit -m "Subdir with mixed contents" z | ||||
Invoking status precommit hook | ||||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
A z/y/x/large2 | ||||
A z/y/x/m/large1 | ||||
A z/y/x/m/normal | ||||
$ hg st | ||||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
$ hg rollback --quiet | ||||
$ hg revert z/y/x/large2 z/y/x/m/large1 | ||||
$ rm z/y/x/large2 z/y/x/m/large1 | ||||
$ hg commit -m "Subdir with normal contents" z | ||||
Invoking status precommit hook | ||||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
A z/y/x/m/normal | ||||
$ hg st | ||||
M large3 | ||||
A large5 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
$ hg rollback --quiet | ||||
$ hg revert --quiet z | ||||
$ hg commit -m "Empty subdir" z | ||||
abort: z: no match under directory! | ||||
[255] | ||||
$ rm -rf z | ||||
$ hg ci -m "standin" .hglf | ||||
abort: file ".hglf" is a largefile standin | ||||
(commit the largefile itself instead) | ||||
[255] | ||||
FUJIWARA Katsunori
|
r16282 | Test "hg status" with combination of 'file pattern' and 'directory | ||
pattern' for largefiles: | ||||
$ hg status sub2/large6 sub2 | ||||
A sub2/large6 | ||||
A sub2/large7 | ||||
Greg Ward
|
r15328 | Config settings (pattern **.dat, minsize 2 MB) are respected. | ||
Na'Tosha Bard
|
r15251 | |||
$ echo testdata > test.dat | ||||
Greg Ward
|
r15330 | $ dd bs=1k count=2k if=/dev/zero of=reallylarge > /dev/null 2> /dev/null | ||
Na'Tosha Bard
|
r15251 | $ hg add | ||
adding reallylarge as a largefile | ||||
adding test.dat as a largefile | ||||
Greg Ward
|
r15329 | |||
Test that minsize and --lfsize handle float values; | ||||
also tests that --lfsize overrides largefiles.minsize. | ||||
(0.250 MB = 256 kB = 262144 B) | ||||
Na'Tosha Bard
|
r15251 | |||
Greg Ward
|
r15329 | $ dd if=/dev/zero of=ratherlarge bs=1024 count=256 > /dev/null 2> /dev/null | ||
$ dd if=/dev/zero of=medium bs=1024 count=128 > /dev/null 2> /dev/null | ||||
$ hg --config largefiles.minsize=.25 add | ||||
adding ratherlarge as a largefile | ||||
adding medium | ||||
$ hg forget medium | ||||
$ hg --config largefiles.minsize=.25 add --lfsize=.125 | ||||
adding medium as a largefile | ||||
$ dd if=/dev/zero of=notlarge bs=1024 count=127 > /dev/null 2> /dev/null | ||||
$ hg --config largefiles.minsize=.25 add --lfsize=.125 | ||||
adding notlarge | ||||
$ hg forget notlarge | ||||
Na'Tosha Bard
|
r15251 | |||
Test forget on largefiles. | ||||
Greg Ward
|
r15329 | $ hg forget large3 large5 test.dat reallylarge ratherlarge medium | ||
Levi Bard
|
r15795 | $ hg commit -m "add/edit more largefiles" | ||
Invoking status precommit hook | ||||
Na'Tosha Bard
|
r15251 | A sub2/large6 | ||
A sub2/large7 | ||||
R large3 | ||||
? large5 | ||||
Greg Ward
|
r15329 | ? medium | ||
? notlarge | ||||
? ratherlarge | ||||
Na'Tosha Bard
|
r15251 | ? reallylarge | ||
? test.dat | ||||
$ hg st | ||||
? large3 | ||||
? large5 | ||||
Greg Ward
|
r15329 | ? medium | ||
? notlarge | ||||
? ratherlarge | ||||
Na'Tosha Bard
|
r15251 | ? reallylarge | ||
? test.dat | ||||
Greg Ward
|
r15328 | Purge with largefiles: verify that largefiles are still in the working | ||
dir after a purge. | ||||
Na'Tosha Bard
|
r15251 | |||
$ hg purge --all | ||||
$ cat sub/large4 | ||||
large44 | ||||
$ cat sub2/large6 | ||||
large6 | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Na'Tosha Bard
|
r15792 | Test addremove: verify that files that should be added as largfiles are added as | ||
such and that already-existing largfiles are not added as normal files by | ||||
accident. | ||||
$ rm normal3 | ||||
$ rm sub/large4 | ||||
$ echo "testing addremove with patterns" > testaddremove.dat | ||||
$ echo "normaladdremove" > normaladdremove | ||||
$ hg addremove | ||||
removing sub/large4 | ||||
adding testaddremove.dat as a largefile | ||||
removing normal3 | ||||
adding normaladdremove | ||||
Matt Harbison
|
r17229 | Test addremove with -R | ||
$ hg up -C | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17229 | $ rm normal3 | ||
$ rm sub/large4 | ||||
$ echo "testing addremove with patterns" > testaddremove.dat | ||||
$ echo "normaladdremove" > normaladdremove | ||||
$ cd .. | ||||
$ hg -R a addremove | ||||
removing sub/large4 | ||||
adding a/testaddremove.dat as a largefile (glob) | ||||
removing normal3 | ||||
adding normaladdremove | ||||
$ cd a | ||||
Matt Harbison
|
r17230 | Test 3364 | ||
$ hg clone . ../addrm | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17230 | $ cd ../addrm | ||
$ cat >> .hg/hgrc <<EOF | ||||
> [hooks] | ||||
Jim Hague
|
r17462 | > post-commit.stat=sh -c "echo \\"Invoking status postcommit hook\\"; hg status -A" | ||
Matt Harbison
|
r17230 | > EOF | ||
$ touch foo | ||||
$ hg add --large foo | ||||
$ hg ci -m "add foo" | ||||
Invoking status precommit hook | ||||
A foo | ||||
Invoking status postcommit hook | ||||
C foo | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ rm foo | ||||
$ hg st | ||||
! foo | ||||
hmm.. no precommit invoked, but there is a postcommit?? | ||||
$ hg ci -m "will not checkin" | ||||
nothing changed | ||||
Invoking status postcommit hook | ||||
! foo | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
[1] | ||||
$ hg addremove | ||||
removing foo | ||||
$ hg st | ||||
R foo | ||||
$ hg ci -m "used to say nothing changed" | ||||
Invoking status precommit hook | ||||
R foo | ||||
Invoking status postcommit hook | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ hg st | ||||
Matt Harbison
|
r17231 | |||
Test 3507 (both normal files and largefiles were a problem) | ||||
$ touch normal | ||||
$ touch large | ||||
$ hg add normal | ||||
$ hg add --large large | ||||
$ hg ci -m "added" | ||||
Invoking status precommit hook | ||||
A large | ||||
A normal | ||||
Invoking status postcommit hook | ||||
C large | ||||
C normal | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ hg remove normal | ||||
$ hg addremove --traceback | ||||
$ hg ci -m "addremoved normal" | ||||
Invoking status precommit hook | ||||
R normal | ||||
Invoking status postcommit hook | ||||
C large | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ hg up -C '.^' | ||||
getting changed largefiles | ||||
0 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17231 | $ hg remove large | ||
$ hg addremove --traceback | ||||
$ hg ci -m "removed large" | ||||
Invoking status precommit hook | ||||
R large | ||||
created new head | ||||
Invoking status postcommit hook | ||||
C normal | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
Matt Harbison
|
r17658 | Test commit -A (issue 3542) | ||
$ echo large8 > large8 | ||||
$ hg add --large large8 | ||||
$ hg ci -Am 'this used to add large8 as normal and commit both' | ||||
Invoking status precommit hook | ||||
A large8 | ||||
Invoking status postcommit hook | ||||
C large8 | ||||
C normal | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ rm large8 | ||||
$ hg ci -Am 'this used to not notice the rm' | ||||
removing large8 | ||||
Invoking status precommit hook | ||||
R large8 | ||||
Invoking status postcommit hook | ||||
C normal | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
Matt Harbison
|
r17232 | Test that a standin can't be added as a large file | ||
$ touch large | ||||
$ hg add --large large | ||||
$ hg ci -m "add" | ||||
Invoking status precommit hook | ||||
A large | ||||
Invoking status postcommit hook | ||||
C large | ||||
C normal | ||||
C normal3 | ||||
C sub/large4 | ||||
C sub/normal4 | ||||
C sub2/large6 | ||||
C sub2/large7 | ||||
$ hg remove large | ||||
$ touch large | ||||
$ hg addremove --config largefiles.patterns=**large --traceback | ||||
adding large as a largefile | ||||
Matt Harbison
|
r17271 | Test that outgoing --large works (with revsets too) | ||
$ hg outgoing --rev '.^' --large | ||||
Matt Harbison
|
r17270 | comparing with $TESTTMP/a (glob) | ||
searching for changes | ||||
changeset: 8:c02fd3b77ec4 | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: add foo | ||||
changeset: 9:289dd08c9bbb | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: used to say nothing changed | ||||
changeset: 10:34f23ac6ac12 | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: added | ||||
changeset: 12:710c1b2f523c | ||||
parent: 10:34f23ac6ac12 | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: removed large | ||||
Matt Harbison
|
r17658 | changeset: 13:0a3e75774479 | ||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: this used to add large8 as normal and commit both | ||||
changeset: 14:84f3d378175c | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: this used to not notice the rm | ||||
Matt Harbison
|
r17270 | searching for changes | ||
largefiles to upload: | ||||
Mads Kiilerich
|
r18368 | foo | ||
Matt Harbison
|
r17270 | large | ||
Mads Kiilerich
|
r18368 | large8 | ||
Matt Harbison
|
r17270 | |||
Matt Harbison
|
r17230 | $ cd ../a | ||
Greg Ward
|
r15328 | Clone a largefiles repo. | ||
Na'Tosha Bard
|
r15251 | |||
Martin Geisler
|
r15548 | $ hg clone . ../b | ||
Na'Tosha Bard
|
r15251 | updating to branch default | ||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Martin Geisler
|
r15548 | $ cd ../b | ||
Na'Tosha Bard
|
r15384 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
7:daea875e9014 add/edit more largefiles | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15251 | $ cat normal3 | ||
normal33 | ||||
$ cat sub/normal4 | ||||
normal44 | ||||
$ cat sub/large4 | ||||
large44 | ||||
$ cat sub2/large6 | ||||
large6 | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Wei, Elson
|
r19472 | $ hg log -qf sub2/large7 | ||
7:daea875e9014 | ||||
Na'Tosha Bard
|
r15251 | $ cd .. | ||
$ hg clone a -r 3 c | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 4 changesets with 10 changes to 4 files | ||||
updating to branch default | ||||
getting changed largefiles | ||||
2 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15251 | $ cd c | ||
Na'Tosha Bard
|
r15384 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15251 | $ cat normal1 | ||
normal22 | ||||
$ cat large1 | ||||
large22 | ||||
$ cat sub/normal2 | ||||
normal22 | ||||
$ cat sub/large2 | ||||
large22 | ||||
Greg Ward
|
r15328 | Old revisions of a clone have correct largefiles content (this also | ||
tests update). | ||||
Na'Tosha Bard
|
r15251 | |||
Thomas Arendsen Hein
|
r17594 | $ hg update -r 1 | ||
Na'Tosha Bard
|
r15251 | getting changed largefiles | ||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15251 | $ cat large1 | ||
large11 | ||||
$ cat sub/large2 | ||||
large22 | ||||
Na'Tosha Bard
|
r16644 | $ cd .. | ||
Test cloning with --all-largefiles flag | ||||
Mads Kiilerich
|
r17092 | $ rm "${USERCACHE}"/* | ||
Na'Tosha Bard
|
r16644 | $ hg clone --all-largefiles a a-backup | ||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r16644 | 8 additional largefiles cached | ||
Na'Tosha Bard
|
r15251 | |||
Matt Harbison
|
r17598 | $ rm "${USERCACHE}"/* | ||
$ hg clone --all-largefiles -u 0 a a-clone0 | ||||
updating to branch default | ||||
getting changed largefiles | ||||
2 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17598 | 9 additional largefiles cached | ||
$ hg -R a-clone0 sum | ||||
parent: 0:30d30fe6a5be | ||||
add files | ||||
branch: default | ||||
commit: (clean) | ||||
update: 7 new changesets (update) | ||||
$ rm "${USERCACHE}"/* | ||||
$ hg clone --all-largefiles -u 1 a a-clone1 | ||||
updating to branch default | ||||
getting changed largefiles | ||||
2 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17598 | 8 additional largefiles cached | ||
Mads Kiilerich
|
r18485 | $ hg -R a-clone1 verify --large --lfa --lfc | ||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
10 files, 8 changesets, 24 total revisions | ||||
searching 8 changesets for largefiles | ||||
verified contents of 13 revisions of 6 largefiles | ||||
Matt Harbison
|
r17598 | $ hg -R a-clone1 sum | ||
parent: 1:ce8896473775 | ||||
edit files | ||||
branch: default | ||||
commit: (clean) | ||||
update: 6 new changesets (update) | ||||
$ rm "${USERCACHE}"/* | ||||
$ hg clone --all-largefiles -U a a-clone-u | ||||
Matt Harbison
|
r17599 | 11 additional largefiles cached | ||
Matt Harbison
|
r17598 | $ hg -R a-clone-u sum | ||
parent: -1:000000000000 (no revision checked out) | ||||
branch: default | ||||
commit: (clean) | ||||
update: 8 new changesets (update) | ||||
Mads Kiilerich
|
r18553 | Show computed destination directory: | ||
Matt Harbison
|
r17600 | $ mkdir xyz | ||
$ cd xyz | ||||
$ hg clone ../a | ||||
destination directory: a | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Matt Harbison
|
r17600 | $ cd .. | ||
Mads Kiilerich
|
r18553 | Clone URL without path: | ||
$ hg clone file:// | ||||
abort: repository / not found! | ||||
[255] | ||||
Matt Harbison
|
r17601 | Ensure base clone command argument validation | ||
$ hg clone -U -u 0 a a-clone-failure | ||||
abort: cannot specify both --noupdate and --updaterev | ||||
[255] | ||||
Levi Bard
|
r16723 | $ hg clone --all-largefiles a ssh://localhost/a | ||
abort: --all-largefiles is incompatible with non-local destination ssh://localhost/a | ||||
[255] | ||||
Matt Harbison
|
r17847 | Test pulling with --all-largefiles flag. Also test that the largefiles are | ||
downloaded from 'default' instead of 'default-push' when no source is specified | ||||
(issue3584) | ||||
Na'Tosha Bard
|
r16692 | |||
$ rm -Rf a-backup | ||||
$ hg clone -r 1 a a-backup | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 2 changesets with 8 changes to 4 files | ||||
updating to branch default | ||||
getting changed largefiles | ||||
2 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Mads Kiilerich
|
r17092 | $ rm "${USERCACHE}"/* | ||
Na'Tosha Bard
|
r16692 | $ cd a-backup | ||
Matt Harbison
|
r17847 | $ hg pull --all-largefiles --config paths.default-push=bogus/path | ||
Adrian Buehlmann
|
r17088 | pulling from $TESTTMP/a (glob) | ||
Na'Tosha Bard
|
r16692 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 6 changesets with 16 changes to 8 files | ||||
(run 'hg update' to get a working copy) | ||||
Mads Kiilerich
|
r18981 | 6 largefiles cached | ||
Mads Kiilerich
|
r18976 | |||
Mads Kiilerich
|
r18978 | redo pull with --lfrev and check it pulls largefiles for the right revs | ||
$ hg rollback | ||||
repository tip rolled back to revision 1 (undo pull) | ||||
Mads Kiilerich
|
r18979 | $ hg pull -v --lfrev 'heads(pulled())+min(pulled())' | ||
Mads Kiilerich
|
r18978 | pulling from $TESTTMP/a (glob) | ||
searching for changes | ||||
all local heads known remotely | ||||
6 changesets found | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 6 changesets with 16 changes to 8 files | ||||
calling hook changegroup.lfiles: <function checkrequireslfiles at *> (glob) | ||||
(run 'hg update' to get a working copy) | ||||
pulling largefiles for revision 7 | ||||
found 971fb41e78fea4f8e0ba5244784239371cb00591 in store | ||||
found 0d6d75887db61b2c7e6c74b5dd8fc6ad50c0cc30 in store | ||||
found bb3151689acb10f0c3125c560d5e63df914bc1af in store | ||||
Mads Kiilerich
|
r18979 | pulling largefiles for revision 2 | ||
found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store | ||||
Mads Kiilerich
|
r18978 | 0 largefiles cached | ||
Mads Kiilerich
|
r18976 | lfpull | ||
$ hg lfpull -r : --config largefiles.usercache=usercache-lfpull | ||||
2 largefiles cached | ||||
$ hg lfpull -v -r 4+2 --config largefiles.usercache=usercache-lfpull | ||||
pulling largefiles for revision 4 | ||||
found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store | ||||
found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store | ||||
pulling largefiles for revision 2 | ||||
found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store | ||||
0 largefiles cached | ||||
$ ls usercache-lfpull/* | sort | ||||
usercache-lfpull/1deebade43c8c498a3c8daddac0244dc55d1331d | ||||
usercache-lfpull/4669e532d5b2c093a78eca010077e708a071bb64 | ||||
Na'Tosha Bard
|
r16692 | $ cd .. | ||
Greg Ward
|
r15328 | Rebasing between two repositories does not revert largefiles to old | ||
Na'Tosha Bard
|
r15251 | revisions (this was a very bad bug that took a lot of work to fix). | ||
$ hg clone a d | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15251 | $ cd b | ||
$ echo large4-modified > sub/large4 | ||||
$ echo normal3-modified > normal3 | ||||
$ hg commit -m "modify normal file and largefile in repo b" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M normal3 | ||||
M sub/large4 | ||||
Na'Tosha Bard
|
r15251 | $ cd ../d | ||
$ echo large6-modified > sub2/large6 | ||||
$ echo normal4-modified > sub/normal4 | ||||
$ hg commit -m "modify normal file largefile in repo d" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M sub/normal4 | ||||
M sub2/large6 | ||||
Na'Tosha Bard
|
r15297 | $ cd .. | ||
$ hg clone d e | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15297 | $ cd d | ||
Matt Harbison
|
r17847 | |||
More rebase testing, but also test that the largefiles are downloaded from | ||||
Mads Kiilerich
|
r18721 | 'default-push' when no source is specified (issue3584). (The largefile from the | ||
pulled revision is however not downloaded but found in the local cache.) | ||||
Largefiles are fetched for the new pulled revision, not for existing revisions, | ||||
rebased or not. | ||||
$ [ ! -f .hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 ] | ||||
Matt Harbison
|
r17847 | $ hg pull --rebase --all-largefiles --config paths.default-push=bogus/path --config paths.default=../b | ||
pulling from $TESTTMP/b (glob) | ||||
Na'Tosha Bard
|
r15251 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 2 changes to 2 files (+1 heads) | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M sub/normal4 | ||||
M sub2/large6 | ||||
Mads Kiilerich
|
r16900 | saved backup bundle to $TESTTMP/d/.hg/strip-backup/f574fb32bb45-backup.hg (glob) | ||
Mads Kiilerich
|
r18981 | 0 largefiles cached | ||
Na'Tosha Bard
|
r15251 | nothing to rebase | ||
Mads Kiilerich
|
r18721 | $ [ -f .hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 ] | ||
Na'Tosha Bard
|
r15384 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
7:daea875e9014 add/edit more largefiles | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15251 | $ cat normal3 | ||
normal3-modified | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-modified | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Na'Tosha Bard
|
r15297 | $ cd ../e | ||
$ hg pull ../b | ||||
pulling from ../b | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 2 changes to 2 files (+1 heads) | ||||
(run 'hg heads' to see heads, 'hg merge' to merge) | ||||
$ hg rebase | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M sub/normal4 | ||||
M sub2/large6 | ||||
Mads Kiilerich
|
r16900 | saved backup bundle to $TESTTMP/e/.hg/strip-backup/f574fb32bb45-backup.hg (glob) | ||
Na'Tosha Bard
|
r15784 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
7:daea875e9014 add/edit more largefiles | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15297 | $ cat normal3 | ||
normal3-modified | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-modified | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Mads Kiilerich
|
r18341 | Log on largefiles | ||
- same output | ||||
$ hg log --template '{rev}:{node|short} {desc|firstline}\n' .hglf/sub/large4 | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
$ hg log --template '{rev}:{node|short} {desc|firstline}\n' sub/large4 | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
- .hglf only matches largefiles, without .hglf it matches 9 bco sub/normal | ||||
$ hg log --template '{rev}:{node|short} {desc|firstline}\n' .hglf/sub | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
$ hg log --template '{rev}:{node|short} {desc|firstline}\n' sub | ||||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
- globbing gives same result | ||||
$ hg log --template '{rev}:{node|short} {desc|firstline}\n' 'glob:sub/*' | ||||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Greg Ward
|
r15328 | Rollback on largefiles. | ||
Na'Tosha Bard
|
r15297 | |||
Thomas Arendsen Hein
|
r17594 | $ echo large4-modified-again > sub/large4 | ||
Na'Tosha Bard
|
r15297 | $ hg commit -m "Modify large4 again" | ||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M sub/large4 | ||||
Na'Tosha Bard
|
r15297 | $ hg rollback | ||
repository tip rolled back to revision 9 (undo commit) | ||||
working directory now based on revision 9 | ||||
$ hg st | ||||
M sub/large4 | ||||
Na'Tosha Bard
|
r15784 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
7:daea875e9014 add/edit more largefiles | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15297 | $ cat sub/large4 | ||
large4-modified-again | ||||
Greg Ward
|
r15365 | "update --check" refuses to update with uncommitted changes. | ||
$ hg update --check 8 | ||||
Siddharth Agarwal
|
r19801 | abort: uncommitted changes | ||
Greg Ward
|
r15365 | [255] | ||
Mads Kiilerich
|
r18292 | "update --clean" leaves correct largefiles in working copy, even when there is | ||
.orig files from revert in .hglf. | ||||
Na'Tosha Bard
|
r15297 | |||
Mads Kiilerich
|
r18292 | $ echo mistake > sub2/large7 | ||
$ hg revert sub2/large7 | ||||
$ hg -q update --clean -r null | ||||
Thomas Arendsen Hein
|
r17594 | $ hg update --clean | ||
Na'Tosha Bard
|
r15297 | getting changed largefiles | ||
Mads Kiilerich
|
r18292 | 3 largefiles updated, 0 removed | ||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15297 | $ cat normal3 | ||
normal3-modified | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-modified | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Mads Kiilerich
|
r18292 | $ cat sub2/large7.orig | ||
mistake | ||||
$ cat .hglf/sub2/large7.orig | ||||
9dbfb2c79b1c40981b258c3efa1b10b03f18ad31 | ||||
demonstrate misfeature: .orig file is overwritten on every update -C, | ||||
also when clean: | ||||
$ hg update --clean | ||||
getting changed largefiles | ||||
0 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Mads Kiilerich
|
r18292 | $ cat sub2/large7.orig | ||
large7 | ||||
$ rm sub2/large7.orig .hglf/sub2/large7.orig | ||||
Na'Tosha Bard
|
r15297 | |||
Greg Ward
|
r15365 | Now "update check" is happy. | ||
$ hg update --check 8 | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Greg Ward
|
r15365 | $ hg update --check | ||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Greg Ward
|
r15365 | |||
Patrick Mezard
|
r15900 | Test removing empty largefiles directories on update | ||
$ test -d sub2 && echo "sub2 exists" | ||||
sub2 exists | ||||
$ hg update -q null | ||||
$ test -d sub2 && echo "error: sub2 should not exist anymore" | ||||
[1] | ||||
$ hg update -q | ||||
Patrick Mezard
|
r15930 | Test hg remove removes empty largefiles directories | ||
$ test -d sub2 && echo "sub2 exists" | ||||
sub2 exists | ||||
$ hg remove sub2/* | ||||
$ test -d sub2 && echo "error: sub2 should not exist anymore" | ||||
[1] | ||||
$ hg revert sub2/large6 sub2/large7 | ||||
Greg Ward
|
r15366 | "revert" works on largefiles (and normal files too). | ||
$ echo hack3 >> normal3 | ||||
$ echo hack4 >> sub/normal4 | ||||
$ echo hack4 >> sub/large4 | ||||
Na'Tosha Bard
|
r15983 | $ rm sub2/large6 | ||
$ hg revert sub2/large6 | ||||
Greg Ward
|
r15366 | $ hg rm sub2/large6 | ||
$ echo new >> sub2/large8 | ||||
$ hg add --large sub2/large8 | ||||
# XXX we don't really want to report that we're reverting the standin; | ||||
# that's just an implementation detail. But I don't see an obvious fix. ;-( | ||||
$ hg revert sub | ||||
Mads Kiilerich
|
r15447 | reverting .hglf/sub/large4 (glob) | ||
reverting sub/normal4 (glob) | ||||
Greg Ward
|
r15366 | $ hg status | ||
M normal3 | ||||
A sub2/large8 | ||||
R sub2/large6 | ||||
? sub/large4.orig | ||||
? sub/normal4.orig | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-modified | ||||
$ hg revert -a --no-backup | ||||
Mads Kiilerich
|
r15447 | undeleting .hglf/sub2/large6 (glob) | ||
forgetting .hglf/sub2/large8 (glob) | ||||
Greg Ward
|
r15366 | reverting normal3 | ||
$ hg status | ||||
? sub/large4.orig | ||||
? sub/normal4.orig | ||||
? sub2/large8 | ||||
$ cat normal3 | ||||
normal3-modified | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ rm sub/*.orig sub2/large8 | ||||
revert some files to an older revision | ||||
$ hg revert --no-backup -r 8 sub2 | ||||
Mads Kiilerich
|
r15447 | reverting .hglf/sub2/large6 (glob) | ||
Greg Ward
|
r15366 | $ cat sub2/large6 | ||
large6 | ||||
Matt Harbison
|
r17268 | $ hg revert --no-backup -C -r '.^' sub2 | ||
reverting .hglf/sub2/large6 (glob) | ||||
Greg Ward
|
r15366 | $ hg revert --no-backup sub2 | ||
Mads Kiilerich
|
r15447 | reverting .hglf/sub2/large6 (glob) | ||
Greg Ward
|
r15366 | $ hg status | ||
Eli Carter
|
r15370 | "verify --large" actually verifies largefiles | ||
Na'Tosha Bard
|
r15297 | |||
Mads Kiilerich
|
r18485 | - Where Do We Come From? What Are We? Where Are We Going? | ||
$ pwd | ||||
$TESTTMP/e | ||||
$ hg paths | ||||
Mads Kiilerich
|
r18506 | default = $TESTTMP/d (glob) | ||
Mads Kiilerich
|
r18485 | |||
Na'Tosha Bard
|
r15297 | $ hg verify --large | ||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
10 files, 10 changesets, 28 total revisions | ||||
searching 1 changesets for largefiles | ||||
verified existence of 3 revisions of 3 largefiles | ||||
Na'Tosha Bard
|
r15298 | |||
Mads Kiilerich
|
r18485 | - introduce missing blob in local store repo and make sure that this is caught: | ||
$ mv $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 . | ||||
$ hg verify --large | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
10 files, 10 changesets, 28 total revisions | ||||
searching 1 changesets for largefiles | ||||
Mads Kiilerich
|
r18557 | changeset 9:598410d3eb9a: sub/large4 references missing $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 (glob) | ||
Mads Kiilerich
|
r18486 | verified existence of 3 revisions of 3 largefiles | ||
Mads Kiilerich
|
r18485 | [1] | ||
- introduce corruption and make sure that it is caught when checking content: | ||||
$ echo '5 cents' > $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 | ||||
$ hg verify -q --large --lfc | ||||
Mads Kiilerich
|
r18557 | changeset 9:598410d3eb9a: sub/large4 references corrupted $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 (glob) | ||
Mads Kiilerich
|
r18485 | [1] | ||
- cleanup | ||||
$ mv e166e74c7303192238d60af5a9c4ce9bef0b7928 $TESTTMP/d/.hg/largefiles/ | ||||
- verifying all revisions will fail because we didn't clone all largefiles to d: | ||||
$ echo 'T-shirt' > $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 | ||||
Mads Kiilerich
|
r18547 | $ hg verify -q --lfa --lfc | ||
Mads Kiilerich
|
r18557 | changeset 0:30d30fe6a5be: large1 references missing $TESTTMP/d/.hg/largefiles/4669e532d5b2c093a78eca010077e708a071bb64 (glob) | ||
changeset 0:30d30fe6a5be: sub/large2 references missing $TESTTMP/d/.hg/largefiles/1deebade43c8c498a3c8daddac0244dc55d1331d (glob) | ||||
changeset 1:ce8896473775: large1 references missing $TESTTMP/d/.hg/largefiles/5f78770c0e77ba4287ad6ef3071c9bf9c379742f (glob) | ||||
changeset 1:ce8896473775: sub/large2 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) | ||||
changeset 3:9e8fbc4bce62: large1 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) | ||||
changeset 4:74c02385b94c: large3 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) | ||||
changeset 4:74c02385b94c: sub/large4 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) | ||||
Simon Heimberg
|
r18833 | changeset 5:9d5af5072dbd: large3 references missing $TESTTMP/d/.hg/largefiles/baaf12afde9d8d67f25dab6dced0d2bf77dba47c (glob) | ||
changeset 5:9d5af5072dbd: sub/large4 references missing $TESTTMP/d/.hg/largefiles/aeb2210d19f02886dde00dac279729a48471e2f9 (glob) | ||||
changeset 6:4355d653f84f: large3 references missing $TESTTMP/d/.hg/largefiles/7838695e10da2bb75ac1156565f40a2595fa2fa0 (glob) | ||||
Mads Kiilerich
|
r18486 | [1] | ||
Mads Kiilerich
|
r18485 | |||
- cleanup | ||||
$ rm $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 | ||||
Mads Kiilerich
|
r18726 | $ rm -f .hglf/sub/*.orig | ||
Update to revision with missing largefile - and make sure it really is missing | ||||
$ rm ${USERCACHE}/7838695e10da2bb75ac1156565f40a2595fa2fa0 | ||||
$ hg up -r 6 | ||||
getting changed largefiles | ||||
Mads Kiilerich
|
r19950 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file://$TESTTMP/d (glob) | ||
Mads Kiilerich
|
r18726 | 1 largefiles updated, 2 removed | ||
4 files updated, 0 files merged, 2 files removed, 0 files unresolved | ||||
$ rm normal3 | ||||
$ echo >> sub/normal4 | ||||
$ hg ci -m 'commit with missing files' | ||||
Invoking status precommit hook | ||||
M sub/normal4 | ||||
! large3 | ||||
! normal3 | ||||
created new head | ||||
$ hg st | ||||
! large3 | ||||
! normal3 | ||||
$ hg up -r. | ||||
0 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg st | ||||
! large3 | ||||
! normal3 | ||||
$ hg up -Cr. | ||||
getting changed largefiles | ||||
Mads Kiilerich
|
r19950 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file://$TESTTMP/d (glob) | ||
Mads Kiilerich
|
r18726 | 0 largefiles updated, 0 removed | ||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg st | ||||
! large3 | ||||
$ hg rollback | ||||
repository tip rolled back to revision 9 (undo commit) | ||||
working directory now based on revision 6 | ||||
Mads Kiilerich
|
r18485 | |||
Mads Kiilerich
|
r18729 | Merge with revision with missing largefile - and make sure it tries to fetch it. | ||
$ hg up -Cqr null | ||||
$ echo f > f | ||||
$ hg ci -Am branch | ||||
adding f | ||||
Invoking status precommit hook | ||||
A f | ||||
created new head | ||||
$ hg merge -r 6 | ||||
4 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
(branch merge, don't forget to commit) | ||||
getting changed largefiles | ||||
Mads Kiilerich
|
r19950 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file://$TESTTMP/d (glob) | ||
Mads Kiilerich
|
r18729 | 1 largefiles updated, 0 removed | ||
$ hg rollback -q | ||||
$ hg up -Cq | ||||
Mads Kiilerich
|
r18722 | Pulling 0 revisions with --all-largefiles should not fetch for all revisions | ||
$ hg pull --all-largefiles | ||||
pulling from $TESTTMP/d (glob) | ||||
searching for changes | ||||
no changes found | ||||
Na'Tosha Bard
|
r15916 | Merging does not revert to old versions of largefiles and also check | ||
that merging after having pulled from a non-default remote works | ||||
correctly. | ||||
Na'Tosha Bard
|
r15298 | |||
$ cd .. | ||||
Na'Tosha Bard
|
r15916 | $ hg clone -r 7 e temp | ||
Na'Tosha Bard
|
r15298 | adding changesets | ||
adding manifests | ||||
adding file changes | ||||
added 8 changesets with 24 changes to 10 files | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15916 | $ hg clone temp f | ||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15916 | # Delete the largefiles in the largefiles system cache so that we have an | ||
# opportunity to test that caching after a pull works. | ||||
Mads Kiilerich
|
r17089 | $ rm "${USERCACHE}"/* | ||
Na'Tosha Bard
|
r15298 | $ cd f | ||
$ echo "large4-merge-test" > sub/large4 | ||||
$ hg commit -m "Modify large4 to test merge" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M sub/large4 | ||||
Na'Tosha Bard
|
r18704 | # Test --cache-largefiles flag | ||
Mads Kiilerich
|
r18980 | $ hg pull --lfrev 'heads(pulled())' ../e | ||
Na'Tosha Bard
|
r15298 | pulling from ../e | ||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 2 changesets with 4 changes to 4 files (+1 heads) | ||||
(run 'hg heads' to see heads, 'hg merge' to merge) | ||||
Na'Tosha Bard
|
r15916 | 2 largefiles cached | ||
Na'Tosha Bard
|
r15298 | $ hg merge | ||
merging sub/large4 | ||||
largefile sub/large4 has a merge conflict | ||||
keep (l)ocal or take (o)ther? l | ||||
3 files updated, 1 files merged, 0 files removed, 0 files unresolved | ||||
(branch merge, don't forget to commit) | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
$ hg commit -m "Merge repos e and f" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M normal3 | ||||
M sub/normal4 | ||||
M sub2/large6 | ||||
Na'Tosha Bard
|
r15298 | $ cat normal3 | ||
normal3-modified | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-merge-test | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Na'Tosha Bard
|
r15382 | |||
Martin Geisler
|
r15629 | Test status after merging with a branch that introduces a new largefile: | ||
$ echo large > large | ||||
$ hg add --large large | ||||
$ hg commit -m 'add largefile' | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A large | ||||
Martin Geisler
|
r15629 | $ hg update -q ".^" | ||
$ echo change >> normal3 | ||||
$ hg commit -m 'some change' | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
M normal3 | ||||
Martin Geisler
|
r15629 | created new head | ||
$ hg merge | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
(branch merge, don't forget to commit) | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
$ hg status | ||||
M large | ||||
Mads Kiilerich
|
r18300 | - make sure update of merge with removed largefiles fails as expected | ||
$ hg rm sub2/large6 | ||||
$ hg up -r. | ||||
abort: outstanding uncommitted merges | ||||
[255] | ||||
Mads Kiilerich
|
r18299 | - revert should be able to revert files introduced in a pending merge | ||
$ hg revert --all -r . | ||||
Mads Kiilerich
|
r18506 | removing .hglf/large (glob) | ||
undeleting .hglf/sub2/large6 (glob) | ||||
Mads Kiilerich
|
r18299 | |||
Na'Tosha Bard
|
r15382 | Test that a normal file and a largefile with the same name and path cannot | ||
coexist. | ||||
$ rm sub2/large7 | ||||
$ echo "largeasnormal" > sub2/large7 | ||||
$ hg add sub2/large7 | ||||
sub2/large7 already a largefile | ||||
Na'Tosha Bard
|
r15383 | |||
Test that transplanting a largefile change works correctly. | ||||
$ cd .. | ||||
$ hg clone -r 8 d g | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 9 changesets with 26 changes to 10 files | ||||
updating to branch default | ||||
getting changed largefiles | ||||
3 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Na'Tosha Bard
|
r15383 | $ cd g | ||
Thomas Arendsen Hein
|
r17594 | $ hg transplant -s ../d 598410d3eb9a | ||
Na'Tosha Bard
|
r15383 | searching for changes | ||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 2 changes to 2 files | ||||
Na'Tosha Bard
|
r16246 | getting changed largefiles | ||
1 largefiles updated, 0 removed | ||||
Na'Tosha Bard
|
r15384 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' | ||
9:598410d3eb9a modify normal file largefile in repo d | ||||
8:a381d2c8c80e modify normal file and largefile in repo b | ||||
7:daea875e9014 add/edit more largefiles | ||||
6:4355d653f84f edit files yet again | ||||
5:9d5af5072dbd edit files again | ||||
4:74c02385b94c move files | ||||
3:9e8fbc4bce62 copy files | ||||
2:51a0ae4d5864 remove files | ||||
1:ce8896473775 edit files | ||||
0:30d30fe6a5be add files | ||||
Na'Tosha Bard
|
r15383 | $ cat normal3 | ||
normal3-modified | ||||
$ cat sub/normal4 | ||||
normal4-modified | ||||
$ cat sub/large4 | ||||
large4-modified | ||||
$ cat sub2/large6 | ||||
large6-modified | ||||
$ cat sub2/large7 | ||||
large7 | ||||
Na'Tosha Bard
|
r15598 | |||
Na'Tosha Bard
|
r16439 | Cat a largefile | ||
$ hg cat normal3 | ||||
normal3-modified | ||||
$ hg cat sub/large4 | ||||
large4-modified | ||||
Mads Kiilerich
|
r17089 | $ rm "${USERCACHE}"/* | ||
Na'Tosha Bard
|
r16439 | $ hg cat -r a381d2c8c80e -o cat.out sub/large4 | ||
$ cat cat.out | ||||
large4-modified | ||||
$ rm cat.out | ||||
$ hg cat -r a381d2c8c80e normal3 | ||||
normal3-modified | ||||
Matt Harbison
|
r17269 | $ hg cat -r '.^' normal3 | ||
normal3-modified | ||||
Mads Kiilerich
|
r18491 | $ hg cat -r '.^' sub/large4 doesntexist | ||
Matt Harbison
|
r17269 | large4-modified | ||
Mads Kiilerich
|
r18491 | doesntexist: no such file in rev a381d2c8c80e | ||
Mads Kiilerich
|
r18974 | $ hg --cwd sub cat -r '.^' large4 | ||
large4-modified | ||||
$ hg --cwd sub cat -r '.^' ../normal3 | ||||
normal3-modified | ||||
Na'Tosha Bard
|
r16439 | |||
Na'Tosha Bard
|
r15598 | Test that renaming a largefile results in correct output for status | ||
$ hg rename sub/large4 large4-renamed | ||||
Levi Bard
|
r15795 | $ hg commit -m "test rename output" | ||
Invoking status precommit hook | ||||
Na'Tosha Bard
|
r15598 | A large4-renamed | ||
R sub/large4 | ||||
$ cat large4-renamed | ||||
large4-modified | ||||
$ cd sub2 | ||||
$ hg rename large6 large6-renamed | ||||
$ hg st | ||||
A sub2/large6-renamed | ||||
R sub2/large6 | ||||
Na'Tosha Bard
|
r15944 | $ cd .. | ||
Test --normal flag | ||||
Mads Kiilerich
|
r16494 | $ dd if=/dev/zero bs=2k count=11k > new-largefile 2> /dev/null | ||
Na'Tosha Bard
|
r15944 | $ hg add --normal --large new-largefile | ||
abort: --normal cannot be used with --large | ||||
[255] | ||||
$ hg add --normal new-largefile | ||||
new-largefile: up to 69 MB of RAM may be required to manage this file | ||||
(use 'hg revert new-largefile' to cancel the pending addition) | ||||
$ cd .. | ||||
Eli Carter
|
r15303 | |||
Mads Kiilerich
|
r17089 | #if serve | ||
Andrew Pritchard
|
r15336 | vanilla clients not locked out from largefiles servers on vanilla repos | ||
$ mkdir r1 | ||||
$ cd r1 | ||||
$ hg init | ||||
$ echo c1 > f1 | ||||
$ hg add f1 | ||||
Levi Bard
|
r15795 | $ hg commit -m "m1" | ||
Invoking status precommit hook | ||||
A f1 | ||||
Andrew Pritchard
|
r15336 | $ cd .. | ||
Thomas Arendsen Hein
|
r15378 | $ hg serve -R r1 -d -p $HGPORT --pid-file hg.pid | ||
$ cat hg.pid >> $DAEMON_PIDS | ||||
Thomas Arendsen Hein
|
r15377 | $ hg --config extensions.largefiles=! clone http://localhost:$HGPORT r2 | ||
Andrew Pritchard
|
r15336 | requesting all changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
updating to branch default | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
largefiles clients still work with vanilla servers | ||||
Thomas Arendsen Hein
|
r15378 | $ hg --config extensions.largefiles=! serve -R r1 -d -p $HGPORT1 --pid-file hg.pid | ||
$ cat hg.pid >> $DAEMON_PIDS | ||||
$ hg clone http://localhost:$HGPORT1 r3 | ||||
Andrew Pritchard
|
r15336 | requesting all changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
updating to branch default | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
Mads Kiilerich
|
r17089 | #endif | ||
Andrew Pritchard
|
r15336 | |||
vanilla clients locked out from largefiles http repos | ||||
$ mkdir r4 | ||||
$ cd r4 | ||||
$ hg init | ||||
$ echo c1 > f1 | ||||
$ hg add --large f1 | ||||
Levi Bard
|
r15795 | $ hg commit -m "m1" | ||
Invoking status precommit hook | ||||
A f1 | ||||
Andrew Pritchard
|
r15336 | $ cd .. | ||
Mads Kiilerich
|
r17089 | |||
Matt Harbison
|
r17411 | largefiles can be pushed locally (issue3583) | ||
$ hg init dest | ||||
$ cd r4 | ||||
Matt Harbison
|
r17575 | $ hg outgoing ../dest | ||
comparing with ../dest | ||||
searching for changes | ||||
changeset: 0:639881c12b4c | ||||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: m1 | ||||
Matt Harbison
|
r17411 | $ hg push ../dest | ||
pushing to ../dest | ||||
searching for changes | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
Thomas Arendsen Hein
|
r17594 | |||
Matt Harbison
|
r17575 | exit code with nothing outgoing (issue3611) | ||
$ hg outgoing ../dest | ||||
comparing with ../dest | ||||
searching for changes | ||||
no changes found | ||||
[1] | ||||
Matt Harbison
|
r17411 | $ cd .. | ||
Mads Kiilerich
|
r17089 | #if serve | ||
Thomas Arendsen Hein
|
r15378 | $ hg serve -R r4 -d -p $HGPORT2 --pid-file hg.pid | ||
$ cat hg.pid >> $DAEMON_PIDS | ||||
$ hg --config extensions.largefiles=! clone http://localhost:$HGPORT2 r5 | ||||
Andrew Pritchard
|
r15336 | abort: remote error: | ||
This repository uses the largefiles extension. | ||||
Please enable it in your Mercurial config file. | ||||
[255] | ||||
Thomas Arendsen Hein
|
r15378 | |||
used all HGPORTs, kill all daemons | ||||
Patrick Mezard
|
r17466 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS | ||
Mads Kiilerich
|
r17089 | #endif | ||
Andrew Pritchard
|
r15336 | |||
vanilla clients locked out from largefiles ssh repos | ||||
Mads Kiilerich
|
r16541 | $ hg --config extensions.largefiles=! clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy/r4 r5 | ||
Andrew Pritchard
|
r15336 | abort: remote error: | ||
This repository uses the largefiles extension. | ||||
Please enable it in your Mercurial config file. | ||||
[255] | ||||
Mads Kiilerich
|
r17089 | #if serve | ||
Andrew Pritchard
|
r15336 | largefiles clients refuse to push largefiles repos to vanilla servers | ||
$ mkdir r6 | ||||
$ cd r6 | ||||
$ hg init | ||||
$ echo c1 > f1 | ||||
$ hg add f1 | ||||
Levi Bard
|
r15795 | $ hg commit -m "m1" | ||
Invoking status precommit hook | ||||
A f1 | ||||
Andrew Pritchard
|
r15336 | $ cat >> .hg/hgrc <<! | ||
> [web] | ||||
> push_ssl = false | ||||
> allow_push = * | ||||
> ! | ||||
$ cd .. | ||||
$ hg clone r6 r7 | ||||
updating to branch default | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ cd r7 | ||||
$ echo c2 > f2 | ||||
$ hg add --large f2 | ||||
Levi Bard
|
r15795 | $ hg commit -m "m2" | ||
Invoking status precommit hook | ||||
A f2 | ||||
Thomas Arendsen Hein
|
r15378 | $ hg --config extensions.largefiles=! -R ../r6 serve -d -p $HGPORT --pid-file ../hg.pid | ||
$ cat ../hg.pid >> $DAEMON_PIDS | ||||
Thomas Arendsen Hein
|
r15377 | $ hg push http://localhost:$HGPORT | ||
pushing to http://localhost:$HGPORT/ | ||||
Andrew Pritchard
|
r15336 | searching for changes | ||
Thomas Arendsen Hein
|
r15377 | abort: http://localhost:$HGPORT/ does not appear to be a largefile store | ||
Andrew Pritchard
|
r15336 | [255] | ||
$ cd .. | ||||
Kevin Gessner
|
r15778 | putlfile errors are shown (issue3123) | ||
Mads Kiilerich
|
r18487 | Corrupt the cached largefile in r7 and move it out of the servers usercache | ||
$ mv r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 . | ||||
$ echo 'client side corruption' > r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 | ||||
$ rm "$USERCACHE/4cdac4d8b084d0b599525cf732437fb337d422a8" | ||||
Kevin Gessner
|
r15778 | $ hg init empty | ||
$ hg serve -R empty -d -p $HGPORT1 --pid-file hg.pid \ | ||||
> --config 'web.allow_push=*' --config web.push_ssl=False | ||||
$ cat hg.pid >> $DAEMON_PIDS | ||||
$ hg push -R r7 http://localhost:$HGPORT1 | ||||
pushing to http://localhost:$HGPORT1/ | ||||
searching for changes | ||||
remote: largefiles: failed to put 4cdac4d8b084d0b599525cf732437fb337d422a8 into store: largefile contents do not match hash | ||||
Adrian Buehlmann
|
r17088 | abort: remotestore: could not put $TESTTMP/r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 to remote store http://localhost:$HGPORT1/ (glob) | ||
Kevin Gessner
|
r15778 | [255] | ||
Mads Kiilerich
|
r18487 | $ mv 4cdac4d8b084d0b599525cf732437fb337d422a8 r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 | ||
Mads Kiilerich
|
r18488 | Push of file that exists on server but is corrupted - magic healing would be nice ... but too magic | ||
Mads Kiilerich
|
r18487 | $ echo "server side corruption" > empty/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 | ||
$ hg push -R r7 http://localhost:$HGPORT1 | ||||
pushing to http://localhost:$HGPORT1/ | ||||
searching for changes | ||||
searching for changes | ||||
remote: adding changesets | ||||
remote: adding manifests | ||||
remote: adding file changes | ||||
remote: added 2 changesets with 2 changes to 2 files | ||||
$ cat empty/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 | ||||
Mads Kiilerich
|
r18488 | server side corruption | ||
Kevin Gessner
|
r15778 | $ rm -rf empty | ||
hlian
|
r16594 | Push a largefiles repository to a served empty repository | ||
$ hg init r8 | ||||
$ echo c3 > r8/f1 | ||||
$ hg add --large r8/f1 -R r8 | ||||
$ hg commit -m "m1" -R r8 | ||||
Invoking status precommit hook | ||||
A f1 | ||||
$ hg init empty | ||||
$ hg serve -R empty -d -p $HGPORT2 --pid-file hg.pid \ | ||||
> --config 'web.allow_push=*' --config web.push_ssl=False | ||||
$ cat hg.pid >> $DAEMON_PIDS | ||||
Mads Kiilerich
|
r17089 | $ rm "${USERCACHE}"/* | ||
Mads Kiilerich
|
r18489 | $ hg push -R r8 http://localhost:$HGPORT2/#default | ||
hlian
|
r16594 | pushing to http://localhost:$HGPORT2/ | ||
searching for changes | ||||
searching for changes | ||||
remote: adding changesets | ||||
remote: adding manifests | ||||
remote: adding file changes | ||||
remote: added 1 changesets with 1 changes to 1 files | ||||
Mads Kiilerich
|
r18482 | $ [ -f "${USERCACHE}"/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] | ||
$ [ -f empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] | ||||
Mads Kiilerich
|
r18156 | |||
Mads Kiilerich
|
r18482 | Clone over http, no largefiles pulled on clone. | ||
Mads Kiilerich
|
r18489 | $ hg clone http://localhost:$HGPORT2/#default http-clone -U | ||
Mads Kiilerich
|
r18482 | adding changesets | ||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
test 'verify' with remotestore: | ||||
$ rm "${USERCACHE}"/02a439e5c31c526465ab1a0ca1f431f76b827b90 | ||||
$ mv empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 . | ||||
$ hg -R http-clone verify --large --lfa | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
1 files, 1 changesets, 1 total revisions | ||||
searching 1 changesets for largefiles | ||||
changeset 0:cf03e5bb9936: f1 missing | ||||
verified existence of 1 revisions of 1 largefiles | ||||
[1] | ||||
$ mv 02a439e5c31c526465ab1a0ca1f431f76b827b90 empty/.hg/largefiles/ | ||||
$ hg -R http-clone -q verify --large --lfa | ||||
Mads Kiilerich
|
r18156 | |||
Mads Kiilerich
|
r18482 | largefiles pulled on update - a largefile missing on the server: | ||
$ mv empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 . | ||||
$ hg -R http-clone up --config largefiles.usercache=http-clone-usercache | ||||
getting changed largefiles | ||||
Mads Kiilerich
|
r19008 | f1: largefile 02a439e5c31c526465ab1a0ca1f431f76b827b90 not available from http://localhost:$HGPORT2/ | ||
0 largefiles updated, 0 removed | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg -R http-clone st | ||||
! f1 | ||||
Mads Kiilerich
|
r18482 | $ hg -R http-clone up -Cqr null | ||
Mads Kiilerich
|
r18156 | |||
Mads Kiilerich
|
r18482 | largefiles pulled on update - a largefile corrupted on the server: | ||
$ echo corruption > empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 | ||||
$ hg -R http-clone up --config largefiles.usercache=http-clone-usercache | ||||
getting changed largefiles | ||||
Mads Kiilerich
|
r18488 | f1: data corruption (expected 02a439e5c31c526465ab1a0ca1f431f76b827b90, got 6a7bb2556144babe3899b25e5428123735bb1e27) | ||
0 largefiles updated, 0 removed | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
Mads Kiilerich
|
r18482 | $ hg -R http-clone st | ||
Mads Kiilerich
|
r18483 | ! f1 | ||
$ [ ! -f http-clone/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] | ||||
$ [ ! -f http-clone/f1 ] | ||||
Mads Kiilerich
|
r18482 | $ [ ! -f http-clone-usercache ] | ||
$ hg -R http-clone verify --large --lfc | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
1 files, 1 changesets, 1 total revisions | ||||
searching 1 changesets for largefiles | ||||
verified contents of 1 revisions of 1 largefiles | ||||
$ hg -R http-clone up -Cqr null | ||||
largefiles pulled on update - no server side problems: | ||||
$ mv 02a439e5c31c526465ab1a0ca1f431f76b827b90 empty/.hg/largefiles/ | ||||
Mads Kiilerich
|
r18156 | $ hg -R http-clone --debug up --config largefiles.usercache=http-clone-usercache | ||
resolving manifests | ||||
Siddharth Agarwal
|
r18605 | branchmerge: False, force: False, partial: False | ||
Mads Kiilerich
|
r18156 | ancestor: 000000000000, local: 000000000000+, remote: cf03e5bb9936 | ||
.hglf/f1: remote created -> g | ||||
Bryan O'Sullivan
|
r18631 | getting .hglf/f1 | ||
Mads Kiilerich
|
r18156 | updating: .hglf/f1 1/1 files (100.00%) | ||
getting changed largefiles | ||||
using http://localhost:$HGPORT2/ | ||||
sending capabilities command | ||||
Mads Kiilerich
|
r19008 | sending batch command | ||
Mads Kiilerich
|
r18156 | getting largefiles: 0/1 lfile (0.00%) | ||
getting f1:02a439e5c31c526465ab1a0ca1f431f76b827b90 | ||||
sending getlfile command | ||||
found 02a439e5c31c526465ab1a0ca1f431f76b827b90 in store | ||||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Mads Kiilerich
|
r18156 | |||
$ ls http-clone-usercache/* | ||||
http-clone-usercache/02a439e5c31c526465ab1a0ca1f431f76b827b90 | ||||
Mads Kiilerich
|
r18482 | $ rm -rf empty http-clone* | ||
hlian
|
r16594 | |||
used all HGPORTs, kill all daemons | ||||
Patrick Mezard
|
r17466 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS | ||
hlian
|
r16594 | |||
Mads Kiilerich
|
r17089 | #endif | ||
Mads Kiilerich
|
r16986 | #if unix-permissions | ||
Eli Carter
|
r15318 | Clone a local repository owned by another user | ||
We have to simulate that here by setting $HOME and removing write permissions | ||||
$ ORIGHOME="$HOME" | ||||
$ mkdir alice | ||||
$ HOME="`pwd`/alice" | ||||
$ cd alice | ||||
$ hg init pubrepo | ||||
$ cd pubrepo | ||||
Mads Kiilerich
|
r16494 | $ dd if=/dev/zero bs=1k count=11k > a-large-file 2> /dev/null | ||
Eli Carter
|
r15318 | $ hg add --large a-large-file | ||
$ hg commit -m "Add a large file" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A a-large-file | ||||
Eli Carter
|
r15318 | $ cd .. | ||
$ chmod -R a-w pubrepo | ||||
$ cd .. | ||||
$ mkdir bob | ||||
$ HOME="`pwd`/bob" | ||||
$ cd bob | ||||
Matt Mackall
|
r15374 | $ hg clone --pull ../alice/pubrepo pubrepo | ||
Eli Carter
|
r15318 | requesting all changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
updating to branch default | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
Benoit Boissinot
|
r18459 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Eli Carter
|
r15318 | $ cd .. | ||
Mads Kiilerich
|
r15514 | $ chmod -R u+w alice/pubrepo | ||
Eli Carter
|
r15318 | $ HOME="$ORIGHOME" | ||
Eli Carter
|
r15369 | |||
Mads Kiilerich
|
r16986 | #endif | ||
Mads Kiilerich
|
r16908 | #if symlink | ||
Eli Carter
|
r15369 | Symlink to a large largefile should behave the same as a symlink to a normal file | ||
$ hg init largesymlink | ||||
$ cd largesymlink | ||||
$ dd if=/dev/zero bs=1k count=10k of=largefile 2>/dev/null | ||||
$ hg add --large largefile | ||||
$ hg commit -m "commit a large file" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A largefile | ||||
Eli Carter
|
r15369 | $ ln -s largefile largelink | ||
$ hg add largelink | ||||
$ hg commit -m "commit a large symlink" | ||||
Levi Bard
|
r15795 | Invoking status precommit hook | ||
A largelink | ||||
Eli Carter
|
r15369 | $ rm -f largelink | ||
$ hg up >/dev/null | ||||
Matt Mackall
|
r15372 | $ test -f largelink | ||
Eli Carter
|
r15369 | [1] | ||
$ test -L largelink | ||||
[1] | ||||
$ rm -f largelink # make next part of the test independent of the previous | ||||
$ hg up -C >/dev/null | ||||
Matt Mackall
|
r15372 | $ test -f largelink | ||
Eli Carter
|
r15369 | $ test -L largelink | ||
$ cd .. | ||||
Mads Kiilerich
|
r16908 | #endif | ||
FUJIWARA Katsunori
|
r16110 | test for pattern matching on 'hg status': | ||
to boost performance, largefiles checks whether specified patterns are | ||||
related to largefiles in working directory (NOT to STANDIN) or not. | ||||
Eli Carter
|
r15369 | |||
FUJIWARA Katsunori
|
r16110 | $ hg init statusmatch | ||
$ cd statusmatch | ||||
$ mkdir -p a/b/c/d | ||||
$ echo normal > a/b/c/d/e.normal.txt | ||||
$ hg add a/b/c/d/e.normal.txt | ||||
$ echo large > a/b/c/d/e.large.txt | ||||
$ hg add --large a/b/c/d/e.large.txt | ||||
$ mkdir -p a/b/c/x | ||||
$ echo normal > a/b/c/x/y.normal.txt | ||||
$ hg add a/b/c/x/y.normal.txt | ||||
$ hg commit -m 'add files' | ||||
Invoking status precommit hook | ||||
A a/b/c/d/e.large.txt | ||||
A a/b/c/d/e.normal.txt | ||||
A a/b/c/x/y.normal.txt | ||||
(1) no pattern: no performance boost | ||||
$ hg status -A | ||||
C a/b/c/d/e.large.txt | ||||
C a/b/c/d/e.normal.txt | ||||
C a/b/c/x/y.normal.txt | ||||
(2) pattern not related to largefiles: performance boost | ||||
$ hg status -A a/b/c/x | ||||
C a/b/c/x/y.normal.txt | ||||
(3) pattern related to largefiles: no performance boost | ||||
$ hg status -A a/b/c/d | ||||
C a/b/c/d/e.large.txt | ||||
C a/b/c/d/e.normal.txt | ||||
(4) pattern related to STANDIN (not to largefiles): performance boost | ||||
$ hg status -A .hglf/a | ||||
C .hglf/a/b/c/d/e.large.txt | ||||
(5) mixed case: no performance boost | ||||
$ hg status -A a/b/c/x a/b/c/d | ||||
C a/b/c/d/e.large.txt | ||||
C a/b/c/d/e.normal.txt | ||||
C a/b/c/x/y.normal.txt | ||||
Dan Villiom Podlaski Christiansen
|
r16141 | verify that largefiles doesn't break filesets | ||
$ hg log --rev . --exclude "set:binary()" | ||||
changeset: 0:41bd42f10efa | ||||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: add files | ||||
Matt Harbison
|
r16515 | verify that large files in subrepos handled properly | ||
$ hg init subrepo | ||||
$ echo "subrepo = subrepo" > .hgsub | ||||
$ hg add .hgsub | ||||
$ hg ci -m "add subrepo" | ||||
Invoking status precommit hook | ||||
A .hgsub | ||||
? .hgsubstate | ||||
$ echo "rev 1" > subrepo/large.txt | ||||
$ hg -R subrepo add --large subrepo/large.txt | ||||
Matt Harbison
|
r16516 | $ hg sum | ||
parent: 1:8ee150ea2e9c tip | ||||
add subrepo | ||||
branch: default | ||||
commit: 1 subrepos | ||||
update: (current) | ||||
Matt Harbison
|
r16515 | $ hg st | ||
$ hg st -S | ||||
A subrepo/large.txt | ||||
Matt Harbison
|
r16516 | $ hg ci -S -m "commit top repo" | ||
committing subrepository subrepo | ||||
Matt Harbison
|
r16515 | Invoking status precommit hook | ||
A large.txt | ||||
Invoking status precommit hook | ||||
M .hgsubstate | ||||
Matt Harbison
|
r16516 | # No differences | ||
Matt Harbison
|
r16515 | $ hg st -S | ||
Matt Harbison
|
r16516 | $ hg sum | ||
parent: 2:ce4cd0c527a6 tip | ||||
commit top repo | ||||
branch: default | ||||
commit: (clean) | ||||
update: (current) | ||||
Matt Harbison
|
r16515 | $ echo "rev 2" > subrepo/large.txt | ||
$ hg st -S | ||||
M subrepo/large.txt | ||||
Matt Harbison
|
r16516 | $ hg sum | ||
parent: 2:ce4cd0c527a6 tip | ||||
commit top repo | ||||
branch: default | ||||
commit: 1 subrepos | ||||
update: (current) | ||||
$ hg ci -m "this commit should fail without -S" | ||||
abort: uncommitted changes in subrepo subrepo | ||||
(use --subrepos for recursive commit) | ||||
[255] | ||||
Matt Harbison
|
r16578 | |||
Martin Geisler
|
r16581 | Add a normal file to the subrepo, then test archiving | ||
Matt Harbison
|
r16578 | $ echo 'normal file' > subrepo/normal.txt | ||
$ hg -R subrepo add subrepo/normal.txt | ||||
Martin Geisler
|
r16581 | |||
Lock in subrepo, otherwise the change isn't archived | ||||
Matt Harbison
|
r16578 | $ hg ci -S -m "add normal file to top level" | ||
committing subrepository subrepo | ||||
Invoking status precommit hook | ||||
M large.txt | ||||
A normal.txt | ||||
Invoking status precommit hook | ||||
M .hgsubstate | ||||
Benoit Boissinot
|
r18459 | $ hg archive -S ../lf_subrepo_archive | ||
$ find ../lf_subrepo_archive | sort | ||||
../lf_subrepo_archive | ||||
../lf_subrepo_archive/.hg_archival.txt | ||||
../lf_subrepo_archive/.hgsub | ||||
../lf_subrepo_archive/.hgsubstate | ||||
../lf_subrepo_archive/a | ||||
../lf_subrepo_archive/a/b | ||||
../lf_subrepo_archive/a/b/c | ||||
../lf_subrepo_archive/a/b/c/d | ||||
../lf_subrepo_archive/a/b/c/d/e.large.txt | ||||
../lf_subrepo_archive/a/b/c/d/e.normal.txt | ||||
../lf_subrepo_archive/a/b/c/x | ||||
../lf_subrepo_archive/a/b/c/x/y.normal.txt | ||||
../lf_subrepo_archive/subrepo | ||||
../lf_subrepo_archive/subrepo/large.txt | ||||
../lf_subrepo_archive/subrepo/normal.txt | ||||
Test update with subrepos. | ||||
$ hg update 0 | ||||
getting changed largefiles | ||||
0 largefiles updated, 1 removed | ||||
0 files updated, 0 files merged, 2 files removed, 0 files unresolved | ||||
$ hg status -S | ||||
$ hg update tip | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg status -S | ||||
# modify a large file | ||||
$ echo "modified" > subrepo/large.txt | ||||
$ hg st -S | ||||
M subrepo/large.txt | ||||
# update -C should revert the change. | ||||
$ hg update -C | ||||
getting changed largefiles | ||||
1 largefiles updated, 0 removed | ||||
getting changed largefiles | ||||
0 largefiles updated, 0 removed | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg status -S | ||||
Matt Harbison
|
r16578 | |||
Matt Harbison
|
r17695 | Test archiving a revision that references a subrepo that is not yet | ||
cloned (see test-subrepo-recursion.t): | ||||
$ hg clone -U . ../empty | ||||
$ cd ../empty | ||||
Mads Kiilerich
|
r17743 | $ hg archive --subrepos -r tip ../archive.tar.gz | ||
Matt Harbison
|
r17695 | cloning subrepo subrepo from $TESTTMP/statusmatch/subrepo | ||
FUJIWARA Katsunori
|
r16110 | $ cd .. | ||
Matt Harbison
|
r17659 | |||
Test that addremove picks up largefiles prior to the initial commit (issue3541) | ||||
$ hg init addrm2 | ||||
$ cd addrm2 | ||||
$ touch large.dat | ||||
$ touch large2.dat | ||||
$ touch normal | ||||
$ hg add --large large.dat | ||||
$ hg addremove -v | ||||
adding large2.dat as a largefile | ||||
adding normal | ||||
Test that forgetting all largefiles reverts to islfilesrepo() == False | ||||
(addremove will add *.dat as normal files now) | ||||
$ hg forget large.dat | ||||
$ hg forget large2.dat | ||||
$ hg addremove -v | ||||
adding large.dat | ||||
adding large2.dat | ||||
Test commit's addremove option prior to the first commit | ||||
$ hg forget large.dat | ||||
$ hg forget large2.dat | ||||
$ hg add --large large.dat | ||||
$ hg ci -Am "commit" | ||||
adding large2.dat as a largefile | ||||
Invoking status precommit hook | ||||
A large.dat | ||||
A large2.dat | ||||
A normal | ||||
Patrick Mezard
|
r17678 | $ find .hglf | sort | ||
.hglf | ||||
Matt Harbison
|
r17659 | .hglf/large.dat | ||
.hglf/large2.dat | ||||
Mads Kiilerich
|
r18490 | Test actions on largefiles using relative paths from subdir | ||
$ mkdir sub | ||||
$ cd sub | ||||
$ echo anotherlarge > anotherlarge | ||||
$ hg add --large anotherlarge | ||||
$ hg st | ||||
A sub/anotherlarge | ||||
$ hg st anotherlarge | ||||
A anotherlarge | ||||
$ hg commit -m anotherlarge anotherlarge | ||||
Invoking status precommit hook | ||||
A sub/anotherlarge | ||||
$ hg log anotherlarge | ||||
changeset: 1:9627a577c5e9 | ||||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: anotherlarge | ||||
$ echo more >> anotherlarge | ||||
$ hg st . | ||||
M anotherlarge | ||||
Mads Kiilerich
|
r18491 | $ hg cat anotherlarge | ||
anotherlarge | ||||
Mads Kiilerich
|
r18490 | $ hg revert anotherlarge | ||
$ hg st | ||||
? sub/anotherlarge.orig | ||||
$ cd .. | ||||
Matt Harbison
|
r17659 | $ cd .. | ||
FUJIWARA Katsunori
|
r17835 | |||
issue3651: summary/outgoing with largefiles shows "no remote repo" | ||||
unexpectedly | ||||
$ mkdir issue3651 | ||||
$ cd issue3651 | ||||
$ hg init src | ||||
$ echo a > src/a | ||||
$ hg -R src add --large src/a | ||||
$ hg -R src commit -m '#0' | ||||
Invoking status precommit hook | ||||
A a | ||||
check messages when no remote repository is specified: | ||||
"no remote repo" route for "hg outgoing --large" is not tested here, | ||||
because it can't be reproduced easily. | ||||
$ hg init clone1 | ||||
$ hg -R clone1 -q pull src | ||||
$ hg -R clone1 -q update | ||||
$ hg -R clone1 paths | grep default | ||||
[1] | ||||
$ hg -R clone1 summary --large | ||||
parent: 0:fc0bd45326d3 tip | ||||
#0 | ||||
branch: default | ||||
commit: (clean) | ||||
update: (current) | ||||
FUJIWARA Katsunori
|
r17894 | largefiles: (no remote repo) | ||
FUJIWARA Katsunori
|
r17835 | |||
check messages when there is no files to upload: | ||||
$ hg -q clone src clone2 | ||||
$ hg -R clone2 paths | grep default | ||||
Adrian Buehlmann
|
r17843 | default = $TESTTMP/issue3651/src (glob) | ||
FUJIWARA Katsunori
|
r17835 | |||
$ hg -R clone2 summary --large | ||||
parent: 0:fc0bd45326d3 tip | ||||
#0 | ||||
branch: default | ||||
commit: (clean) | ||||
update: (current) | ||||
searching for changes | ||||
largefiles: (no files to upload) | ||||
$ hg -R clone2 outgoing --large | ||||
Adrian Buehlmann
|
r17843 | comparing with $TESTTMP/issue3651/src (glob) | ||
FUJIWARA Katsunori
|
r17835 | searching for changes | ||
no changes found | ||||
searching for changes | ||||
largefiles: no files to upload | ||||
[1] | ||||
check messages when there are files to upload: | ||||
$ echo b > clone2/b | ||||
$ hg -R clone2 add --large clone2/b | ||||
$ hg -R clone2 commit -m '#1' | ||||
Invoking status precommit hook | ||||
A b | ||||
$ hg -R clone2 summary --large | ||||
parent: 1:1acbe71ce432 tip | ||||
#1 | ||||
branch: default | ||||
commit: (clean) | ||||
update: (current) | ||||
searching for changes | ||||
largefiles: 1 to upload | ||||
$ hg -R clone2 outgoing --large | ||||
Adrian Buehlmann
|
r17843 | comparing with $TESTTMP/issue3651/src (glob) | ||
FUJIWARA Katsunori
|
r17835 | searching for changes | ||
changeset: 1:1acbe71ce432 | ||||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: #1 | ||||
searching for changes | ||||
largefiles to upload: | ||||
b | ||||
$ cd .. | ||||
FUJIWARA Katsunori
|
r19779 | |||
Check whether "largefiles" feature is supported only in repositories | ||||
enabling largefiles extension. | ||||
$ mkdir individualenabling | ||||
$ cd individualenabling | ||||
$ hg init enabledlocally | ||||
$ echo large > enabledlocally/large | ||||
$ hg -R enabledlocally add --large enabledlocally/large | ||||
$ hg -R enabledlocally commit -m '#0' | ||||
Invoking status precommit hook | ||||
A large | ||||
$ hg init notenabledlocally | ||||
$ echo large > notenabledlocally/large | ||||
$ hg -R notenabledlocally add --large notenabledlocally/large | ||||
$ hg -R notenabledlocally commit -m '#0' | ||||
Invoking status precommit hook | ||||
A large | ||||
$ cat >> $HGRCPATH <<EOF | ||||
> [extensions] | ||||
> # disable globally | ||||
> largefiles=! | ||||
> EOF | ||||
$ cat >> enabledlocally/.hg/hgrc <<EOF | ||||
> [extensions] | ||||
> # enable locally | ||||
> largefiles= | ||||
> EOF | ||||
$ hg -R enabledlocally root | ||||
$TESTTMP/individualenabling/enabledlocally | ||||
$ hg -R notenabledlocally root | ||||
abort: unknown repository format: requires features 'largefiles' (upgrade Mercurial)! | ||||
[255] | ||||
$ hg init push-dst | ||||
$ hg -R enabledlocally push push-dst | ||||
pushing to push-dst | ||||
abort: required features are not supported in the destination: largefiles | ||||
[255] | ||||
$ hg init pull-src | ||||
$ hg -R pull-src pull enabledlocally | ||||
pulling from enabledlocally | ||||
abort: required features are not supported in the destination: largefiles | ||||
[255] | ||||
$ hg clone enabledlocally clone-dst | ||||
abort: unknown repository format: requires features 'largefiles' (upgrade Mercurial)! | ||||
[255] | ||||
$ test -d clone-dst | ||||
[1] | ||||
$ hg clone --pull enabledlocally clone-pull-dst | ||||
abort: required features are not supported in the destination: largefiles | ||||
[255] | ||||
$ test -d clone-pull-dst | ||||
[1] | ||||
$ cd .. | ||||