##// END OF EJS Templates
check-code: tighten the check for `ls -R`...
check-code: tighten the check for `ls -R` Otherwise, this was flagging `... lfs.serve=False -R server ...` in the tests.

File last commit:

r37171:f51c2780 default
r37258:79af9ae4 default
Show More
test-lfs-test-server.t
924 lines | 34.9 KiB | text/troff | Tads3Lexer
/ tests / test-lfs-test-server.t
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #testcases git-server hg-server
#if git-server
Matt Harbison
hghave: add a check for lfs-test-server...
r35137 #require lfs-test-server
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #else
#require serve
#endif
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #if git-server
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ LFS_LISTEN="tcp://:$HGPORT"
$ LFS_HOST="localhost:$HGPORT"
$ LFS_PUBLIC=1
$ export LFS_LISTEN LFS_HOST LFS_PUBLIC
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #else
$ LFS_HOST="localhost:$HGPORT/.git/info/lfs"
#endif
#if no-windows git-server
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ lfs-test-server &> lfs-server.log &
$ echo $! >> $DAEMON_PIDS
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #endif
#if windows git-server
Matt Harbison
test-lfs: allow the test server to be killed on Windows...
r35139 $ cat >> $TESTTMP/spawn.py <<EOF
> import os
> import subprocess
> import sys
>
> for path in os.environ["PATH"].split(os.pathsep):
> exe = os.path.join(path, 'lfs-test-server.exe')
> if os.path.exists(exe):
> with open('lfs-server.log', 'wb') as out:
> p = subprocess.Popen(exe, stdout=out, stderr=out)
> sys.stdout.write('%s\n' % p.pid)
> sys.exit(0)
> sys.exit(1)
> EOF
$ $PYTHON $TESTTMP/spawn.py >> $DAEMON_PIDS
#endif
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097
$ cat >> $HGRCPATH <<EOF
> [extensions]
> lfs=
> [lfs]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 > url=http://foo:bar@$LFS_HOST
Matt Harbison
lfs: migrate most file filtering from threshold to custom filter...
r35636 > track=all()
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 > [web]
> push_ssl = False
> allow-push = *
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 > EOF
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Use a separate usercache, otherwise the server sees what the client commits, and
never requests a transfer.
#if hg-server
$ hg init server
$ hg --config "lfs.usercache=$TESTTMP/servercache" -R server serve -d \
> -p $HGPORT --pid-file=hg.pid -A $TESTTMP/access.log -E $TESTTMP/errors.log
$ cat hg.pid >> $DAEMON_PIDS
#endif
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ hg init repo1
$ cd repo1
$ echo THIS-IS-LFS > a
$ hg commit -m a -A a
Matt Harbison
lfs: use the local store method for opening a blob...
r35544 A push can be serviced directly from the usercache if it isn't in the local
store.
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ hg init ../repo2
Matt Harbison
lfs: use the local store method for opening a blob...
r35544 $ mv .hg/store/lfs .hg/store/lfs_
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg push ../repo2 --debug
http auth: user foo, password ***
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 pushing to ../repo2
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 http auth: user foo, password ***
query 1; heads
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 searching for changes
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 1 total queries in *s (glob)
listing keys for "phases"
checking for updated bookmarks
listing keys for "bookmarks"
lfs: computing set of blobs to upload
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 309 (git-server !)
Content-Length: 350 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"upload": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (git-server !)
"href": "http://localhost:$HGPORT/.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 lfs: uploading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Status: 200 (git-server !)
Status: 201 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Length: 0
Content-Type: text/plain; charset=utf-8
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Wojciech Lis
lfs: using workers in lfs prefetch...
r35449 lfs: processed: 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b
Matt Harbison
lfs: emit a status message to indicate how many blobs were uploaded...
r35899 lfs: uploaded 1 files (12 bytes)
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 1 changesets found
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 list of changesets:
99a7098854a3984a5c9eab0fc7a2906697b7cb5c
bundle2-output-bundle: "HG20", 4 parts total
Matt Harbison
test-lfs: glob over some output changes...
r37005 bundle2-output-part: "replycaps" * bytes payload (glob)
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-output-part: "check:heads" streamed payload
bundle2-output-part: "changegroup" (params: 1 mandatory) streamed payload
bundle2-output-part: "phase-heads" 24 bytes payload
bundle2-input-bundle: with-transaction
bundle2-input-part: "replycaps" supported
Matt Harbison
test-lfs: glob over some output changes...
r37005 bundle2-input-part: total payload size * (glob)
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-input-part: "check:heads" supported
bundle2-input-part: total payload size 20
bundle2-input-part: "changegroup" (params: 1 mandatory) supported
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 adding changesets
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 add changeset 99a7098854a3
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 adding manifests
adding file changes
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 adding a revisions
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 added 1 changesets with 1 changes to 1 files
Matt Harbison
lfs: add the 'lfs' requirement in the changegroup transaction introducing lfs...
r35520 calling hook pretxnchangegroup.lfs: hgext.lfs.checkrequireslfs
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-input-part: total payload size 617
bundle2-input-part: "phase-heads" supported
bundle2-input-part: total payload size 24
bundle2-input-bundle: 3 parts total
updating the branch cache
bundle2-output-bundle: "HG20", 1 parts total
bundle2-output-part: "reply:changegroup" (advisory) (params: 0 advisory) empty payload
bundle2-input-bundle: no-transaction
bundle2-input-part: "reply:changegroup" (advisory) (params: 0 advisory) supported
bundle2-input-bundle: 0 parts total
listing keys for "phases"
Matt Harbison
lfs: use the local store method for opening a blob...
r35544 $ mv .hg/store/lfs_ .hg/store/lfs
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097
Matt Harbison
lfs: introduce a user level cache for lfs files...
r35281 Clear the cache to force a download
$ rm -rf `hg config lfs.usercache`
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ cd ../repo2
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg update tip --debug
http auth: user foo, password ***
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 resolving manifests
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 branchmerge: False, force: False, partial: False
ancestor: 000000000000, local: 000000000000+, remote: 99a7098854a3
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 311 (git-server !)
Content-Length: 352 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 lfs: downloading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 12
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: add note messages indicating what store holds the lfs blob...
r35489 lfs: adding 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b to the usercache
Wojciech Lis
lfs: using workers in lfs prefetch...
r35449 lfs: processed: 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 a: remote created -> g
Matt Harbison
lfs: prefetch lfs blobs when applying merge updates...
r35940 getting a
Matt Harbison
lfs: add note messages indicating what store holds the lfs blob...
r35489 lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 When the server has some blobs already. `hg serve` doesn't offer to upload
blobs that it already knows about. Note that lfs-test-server is simply
toggling the action to 'download'. The Batch API spec says it should omit the
actions property completely.
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097
$ hg mv a b
$ echo ANOTHER-LARGE-FILE > c
$ echo ANOTHER-LARGE-FILE2 > d
$ hg commit -m b-and-c -A b c d
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg push ../repo1 --debug
http auth: user foo, password ***
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 pushing to ../repo1
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 http auth: user foo, password ***
query 1; heads
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 searching for changes
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 all remote heads known locally
listing keys for "phases"
checking for updated bookmarks
listing keys for "bookmarks"
listing keys for "bookmarks"
lfs: computing set of blobs to upload
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 901 (git-server !)
Content-Length: 755 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "actions": { (git-server !)
"download": { (git-server !)
"expires_at": "$ISO_8601_DATE_TIME$" (git-server !)
"header": { (git-server !)
"Accept": "application/vnd.git-lfs" (git-server !)
} (git-server !)
"href": "http://localhost:$HGPORT/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (git-server !)
} (git-server !)
} (git-server !)
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"upload": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 20
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"upload": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 lfs: need to transfer 2 objects (39 bytes)
lfs: uploading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Status: 200 (git-server !)
Status: 201 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Length: 0
Content-Type: text/plain; charset=utf-8
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Wojciech Lis
lfs: using workers in lfs prefetch...
r35449 lfs: processed: 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 lfs: uploading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Status: 200 (git-server !)
Status: 201 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Length: 0
Content-Type: text/plain; charset=utf-8
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Wojciech Lis
lfs: using workers in lfs prefetch...
r35449 lfs: processed: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
Matt Harbison
lfs: emit a status message to indicate how many blobs were uploaded...
r35899 lfs: uploaded 2 files (39 bytes)
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 1 changesets found
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 list of changesets:
dfca2c9e2ef24996aa61ba2abd99277d884b3d63
bundle2-output-bundle: "HG20", 5 parts total
Matt Harbison
test-lfs: glob over some output changes...
r37005 bundle2-output-part: "replycaps" * bytes payload (glob)
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-output-part: "check:phases" 24 bytes payload
bundle2-output-part: "check:heads" streamed payload
bundle2-output-part: "changegroup" (params: 1 mandatory) streamed payload
bundle2-output-part: "phase-heads" 24 bytes payload
bundle2-input-bundle: with-transaction
bundle2-input-part: "replycaps" supported
Matt Harbison
test-lfs: glob over some output changes...
r37005 bundle2-input-part: total payload size * (glob)
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-input-part: "check:phases" supported
bundle2-input-part: total payload size 24
bundle2-input-part: "check:heads" supported
bundle2-input-part: total payload size 20
bundle2-input-part: "changegroup" (params: 1 mandatory) supported
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 adding changesets
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 add changeset dfca2c9e2ef2
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 adding manifests
adding file changes
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 adding b revisions
adding c revisions
adding d revisions
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 added 1 changesets with 3 changes to 3 files
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 bundle2-input-part: total payload size 1315
bundle2-input-part: "phase-heads" supported
bundle2-input-part: total payload size 24
bundle2-input-bundle: 4 parts total
updating the branch cache
bundle2-output-bundle: "HG20", 1 parts total
bundle2-output-part: "reply:changegroup" (advisory) (params: 0 advisory) empty payload
bundle2-input-bundle: no-transaction
bundle2-input-part: "reply:changegroup" (advisory) (params: 0 advisory) supported
bundle2-input-bundle: 0 parts total
listing keys for "phases"
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097
Matt Harbison
lfs: introduce a user level cache for lfs files...
r35281 Clear the cache to force a download
$ rm -rf `hg config lfs.usercache`
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg --repo ../repo1 update tip --debug
http auth: user foo, password ***
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 resolving manifests
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 branchmerge: False, force: False, partial: False
ancestor: 99a7098854a3, local: 99a7098854a3+, remote: dfca2c9e2ef2
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 608 (git-server !)
Content-Length: 670 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 20
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: prefetch lfs blobs when applying merge updates...
r35940 lfs: need to transfer 2 objects (39 bytes)
lfs: downloading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 20
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: prefetch lfs blobs when applying merge updates...
r35940 lfs: adding 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 to the usercache
lfs: processed: 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 19
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: add note messages indicating what store holds the lfs blob...
r35489 lfs: adding d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 to the usercache
Wojciech Lis
lfs: using workers in lfs prefetch...
r35449 lfs: processed: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 b: remote created -> g
Matt Harbison
lfs: prefetch lfs blobs when applying merge updates...
r35940 getting b
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 c: remote created -> g
Matt Harbison
lfs: prefetch lfs blobs when applying merge updates...
r35940 getting c
Matt Harbison
lfs: add note messages indicating what store holds the lfs blob...
r35489 lfs: found d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 in the local lfs store
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 d: remote created -> g
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 getting d
Matt Harbison
lfs: add note messages indicating what store holds the lfs blob...
r35489 lfs: found 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 in the local lfs store
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
Matt Harbison
lfs: verify lfs object content when transferring to and from the remote store...
r35492 Test a corrupt file download, but clear the cache first to force a download.
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 `hg serve` indicates a corrupt file without transferring it, unlike
lfs-test-server.
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490
$ rm -rf `hg config lfs.usercache`
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #if git-server
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 $ cp $TESTTMP/lfs-content/d1/1e/1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 blob
$ echo 'damage' > $TESTTMP/lfs-content/d1/1e/1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #else
$ cp $TESTTMP/server/.hg/store/lfs/objects/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 blob
$ echo 'damage' > $TESTTMP/server/.hg/store/lfs/objects/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
#endif
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 $ rm ../repo1/.hg/store/lfs/objects/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
$ rm ../repo1/*
Matt Harbison
lfs: verify lfs object content when transferring to and from the remote store...
r35492
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 TODO: give the proper error indication from `hg serve`
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg --repo ../repo1 update -C tip --debug
http auth: user foo, password ***
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 resolving manifests
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 branchmerge: False, force: True, partial: False
ancestor: dfca2c9e2ef2+, local: dfca2c9e2ef2+, remote: dfca2c9e2ef2
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 311 (git-server !)
Content-Length: 183 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "actions": { (git-server !)
"download": { (git-server !)
"expires_at": "$ISO_8601_DATE_TIME$" (git-server !)
"header": { (git-server !)
"Accept": "application/vnd.git-lfs" (git-server !)
} (git-server !)
"href": "http://localhost:$HGPORT/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (git-server !)
} (git-server !)
"error": { (hg-server !)
"code": 422 (hg-server !)
"message": "The object is corrupt" (hg-server !)
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes) (git-server !)
Status: 200 (git-server !)
Content-Length: 7 (git-server !)
Content-Type: text/plain; charset=utf-8 (git-server !)
Date: $HTTP_DATE$ (git-server !)
abort: corrupt remote lfs object: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (git-server !)
abort: LFS server error. Remote object for "c" not found: *! (glob) (hg-server !)
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 [255]
Matt Harbison
lfs: verify lfs object content when transferring to and from the remote store...
r35492 The corrupted blob is not added to the usercache or local store
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490
Matt Harbison
lfs: verify lfs object content when transferring to and from the remote store...
r35492 $ test -f ../repo1/.hg/store/lfs/objects/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
[1]
$ test -f `hg config lfs.usercache`/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
[1]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #if git-server
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 $ cp blob $TESTTMP/lfs-content/d1/1e/1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #else
$ cp blob $TESTTMP/server/.hg/store/lfs/objects/d1/1e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
#endif
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490
Test a corrupted file upload
$ echo 'another lfs blob' > b
$ hg ci -m 'another blob'
$ echo 'damage' > .hg/store/lfs/objects/e6/59058e26b07b39d2a9c7145b3f99b41f797b6621c8076600e9cb7ee88291f0
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg push --debug ../repo1
http auth: user foo, password ***
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 pushing to ../repo1
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 http auth: user foo, password ***
query 1; heads
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 searching for changes
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 all remote heads known locally
listing keys for "phases"
checking for updated bookmarks
listing keys for "bookmarks"
listing keys for "bookmarks"
lfs: computing set of blobs to upload
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 309 (git-server !)
Content-Length: 350 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"upload": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/e659058e26b07b39d2a9c7145b3f99b41f797b6621c8076600e9cb7ee88291f0" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "e659058e26b07b39d2a9c7145b3f99b41f797b6621c8076600e9cb7ee88291f0"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 17
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 lfs: uploading e659058e26b07b39d2a9c7145b3f99b41f797b6621c8076600e9cb7ee88291f0 (17 bytes)
Matt Harbison
lfs: verify lfs object content when transferring to and from the remote store...
r35492 abort: detected corrupt lfs object: e659058e26b07b39d2a9c7145b3f99b41f797b6621c8076600e9cb7ee88291f0
(run hg verify)
Matt Harbison
test-lfs: add tests around corrupted lfs objects...
r35490 [255]
Matt Harbison
archive: call the storage prefetch hook
r35943 Archive will prefetch blobs in a group
$ rm -rf .hg/store/lfs `hg config lfs.usercache`
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg archive --debug -r 1 ../archive
http auth: user foo, password ***
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 905 (git-server !)
Content-Length: 988 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 20
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: deduplicate oids in the transfer...
r35945 lfs: need to transfer 3 objects (51 bytes)
Matt Harbison
archive: call the storage prefetch hook
r35943 lfs: downloading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 12
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
archive: call the storage prefetch hook
r35943 lfs: adding 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b to the usercache
lfs: processed: 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b
lfs: downloading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 20
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
archive: call the storage prefetch hook
r35943 lfs: adding 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 to the usercache
lfs: processed: 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19
lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 19
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
archive: call the storage prefetch hook
r35943 lfs: adding d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 to the usercache
lfs: processed: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
lfs: found d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 in the local lfs store
lfs: found 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 in the local lfs store
$ find ../archive | sort
../archive
../archive/.hg_archival.txt
../archive/a
../archive/b
../archive/c
../archive/d
Matt Harbison
cat: call the storage prefetch hook...
r35944 Cat will prefetch blobs in a group
$ rm -rf .hg/store/lfs `hg config lfs.usercache`
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg cat --debug -r 1 a b c
http auth: user foo, password ***
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 608 (git-server !)
Content-Length: 670 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: deduplicate oids in the transfer...
r35945 lfs: need to transfer 2 objects (31 bytes)
Matt Harbison
cat: call the storage prefetch hook...
r35944 lfs: downloading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 12
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
cat: call the storage prefetch hook...
r35944 lfs: adding 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b to the usercache
lfs: processed: 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b
lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 19
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
cat: call the storage prefetch hook...
r35944 lfs: adding d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 to the usercache
lfs: processed: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
THIS-IS-LFS
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
THIS-IS-LFS
lfs: found d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 in the local lfs store
ANOTHER-LARGE-FILE
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 Revert will prefetch blobs in a group
$ rm -rf .hg/store/lfs
$ rm -rf `hg config lfs.usercache`
$ rm *
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg revert --all -r 1 --debug
http auth: user foo, password ***
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 adding a
reverting b
reverting c
reverting d
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 905 (git-server !)
Content-Length: 988 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 12
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 20
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"actions": {
"download": {
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 "expires_at": "$ISO_8601_DATE_TIME$"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "header": {
"Accept": "application/vnd.git-lfs"
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "href": "http://localhost:$HGPORT/*/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998" (glob)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 19
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: deduplicate oids in the transfer...
r35945 lfs: need to transfer 3 objects (51 bytes)
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 lfs: downloading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 12
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 lfs: adding 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b to the usercache
lfs: processed: 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b
lfs: downloading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 20
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 lfs: adding 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 to the usercache
lfs: processed: 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19
lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Content-Length: 19
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Type: text/plain; charset=utf-8 (git-server !)
Content-Type: application/octet-stream (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: prefetch lfs blobs during revert...
r35942 lfs: adding d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 to the usercache
lfs: processed: d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
lfs: found d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 in the local lfs store
lfs: found 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 in the local lfs store
lfs: found 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b in the local lfs store
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 Check error message when the remote missed a blob:
$ echo FFFFF > b
$ hg commit -m b -A b
$ echo FFFFF >> b
$ hg commit -m b b
$ rm -rf .hg/store/lfs
Matt Harbison
lfs: introduce a user level cache for lfs files...
r35281 $ rm -rf `hg config lfs.usercache`
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg update -C '.^' --debug
http auth: user foo, password ***
resolving manifests
branchmerge: False, force: True, partial: False
ancestor: 62fdbaf221c6+, local: 62fdbaf221c6+, remote: ef0564edf47e
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 308 (git-server !)
Content-Length: 186 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "actions": { (git-server !)
"upload": { (git-server !)
"expires_at": "$ISO_8601_DATE_TIME$" (git-server !)
"header": { (git-server !)
"Accept": "application/vnd.git-lfs" (git-server !)
} (git-server !)
"href": "http://localhost:$HGPORT/objects/8e6ea5f6c066b44a0efa43bcce86aea73f17e6e23f0663df0251e7524e140a13" (git-server !)
} (git-server !)
"error": { (hg-server !)
"code": 404 (hg-server !)
"message": "The object does not exist" (hg-server !)
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "8e6ea5f6c066b44a0efa43bcce86aea73f17e6e23f0663df0251e7524e140a13"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 6
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Jun Wu
lfs: remove internal url in test...
r35684 abort: LFS server error. Remote object for "b" not found:(.*)! (re)
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 [255]
Check error message when object does not exist:
Jun Wu
lfs: remove internal url in test...
r35684 $ cd $TESTTMP
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 $ hg init test && cd test
$ echo "[extensions]" >> .hg/hgrc
$ echo "lfs=" >> .hg/hgrc
$ echo "[lfs]" >> .hg/hgrc
$ echo "threshold=1" >> .hg/hgrc
$ echo a > a
$ hg add a
$ hg commit -m 'test'
$ echo aaaaa > a
$ hg commit -m 'largefile'
$ hg debugdata .hg/store/data/a.i 1 # verify this is no the file content but includes "oid", the LFS "pointer".
version https://git-lfs.github.com/spec/v1
oid sha256:bdc26931acfb734b142a8d675f205becf27560dc461f501822de13274fe6fc8a
size 6
x-is-binary 0
$ cd ..
Matt Harbison
lfs: introduce a user level cache for lfs files...
r35281 $ rm -rf `hg config lfs.usercache`
Jun Wu
lfs: remove internal url in test...
r35684
(Restart the server in a different location so it no longer has the content)
$ $PYTHON $RUNTESTDIR/killdaemons.py $DAEMON_PIDS
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171
#if hg-server
$ cat $TESTTMP/access.log $TESTTMP/errors.log
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "PUT /.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b HTTP/1.1" 201 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "PUT /.hg/lfs/objects/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 HTTP/1.1" 201 - (glob)
$LOCALIP - - [$LOGDATE$] "PUT /.hg/lfs/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 HTTP/1.1" 201 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "GET /.hg/lfs/objects/d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 HTTP/1.1" 200 - (glob)
$LOCALIP - - [$LOGDATE$] "POST /.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
#endif
Jun Wu
lfs: remove internal url in test...
r35684 $ rm $DAEMON_PIDS
$ mkdir $TESTTMP/lfs-server2
$ cd $TESTTMP/lfs-server2
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #if no-windows git-server
Jun Wu
lfs: remove internal url in test...
r35684 $ lfs-test-server &> lfs-server.log &
$ echo $! >> $DAEMON_PIDS
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #endif
#if windows git-server
Jun Wu
lfs: remove internal url in test...
r35684 $ $PYTHON $TESTTMP/spawn.py >> $DAEMON_PIDS
#endif
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 #if hg-server
$ hg init server2
$ hg --config "lfs.usercache=$TESTTMP/servercache2" -R server2 serve -d \
> -p $HGPORT --pid-file=hg.pid -A $TESTTMP/access.log -E $TESTTMP/errors.log
$ cat hg.pid >> $DAEMON_PIDS
#endif
Jun Wu
lfs: remove internal url in test...
r35684 $ cd $TESTTMP
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 $ hg --debug clone test test2
http auth: user foo, password ***
linked 6 files
http auth: user foo, password ***
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 updating to branch default
Matt Harbison
test-lfs: dial up the debugging on commands that interact with the server...
r36943 resolving manifests
branchmerge: False, force: False, partial: False
ancestor: 000000000000, local: 000000000000+, remote: d2a338f184a8
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Status: 200
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Content-Length: 308 (git-server !)
Content-Length: 186 (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 Content-Type: application/vnd.git-lfs+json
Date: $HTTP_DATE$
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 Server: testing stub value (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 {
"objects": [
{
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "actions": { (git-server !)
"upload": { (git-server !)
"expires_at": "$ISO_8601_DATE_TIME$" (git-server !)
"header": { (git-server !)
"Accept": "application/vnd.git-lfs" (git-server !)
} (git-server !)
"href": "http://localhost:$HGPORT/objects/bdc26931acfb734b142a8d675f205becf27560dc461f501822de13274fe6fc8a" (git-server !)
} (git-server !)
"error": { (hg-server !)
"code": 404 (hg-server !)
"message": "The object does not exist" (hg-server !)
Matt Harbison
test-lfs: drop trailing ', ' item separators from debug JSON output...
r37164 }
"oid": "bdc26931acfb734b142a8d675f205becf27560dc461f501822de13274fe6fc8a"
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 "size": 6
}
]
Matt Harbison
test-lfs-test-server: add a testcase for `hg serve`...
r37171 "transfer": "basic" (hg-server !)
Matt Harbison
lfs: debug print HTTP headers and JSON payload received from the server...
r36944 }
Matt Harbison
lfs: improve the error message for a missing remote blob...
r35584 abort: LFS server error. Remote object for "a" not found:(.*)! (re)
Matt Harbison
lfs: import the Facebook git-lfs client extension...
r35097 [255]
Matt Harbison
test-lfs: allow the test server to be killed on Windows...
r35139
$ $PYTHON $RUNTESTDIR/killdaemons.py $DAEMON_PIDS