2018-01-04 18:22:19 +03:00
|
|
|
$ . "$TESTDIR/hgsql/library.sh"
|
2019-05-28 13:12:27 +03:00
|
|
|
$ setconfig extensions.treemanifest=!
|
2016-04-29 19:55:23 +03:00
|
|
|
|
|
|
|
# Populate the db with an initial commit
|
|
|
|
|
|
|
|
$ initclient client
|
|
|
|
$ cd client
|
|
|
|
$ echo x > x
|
|
|
|
$ hg commit -qAm x
|
|
|
|
$ cd ..
|
|
|
|
|
|
|
|
$ initserver master masterrepo
|
|
|
|
$ cd master
|
|
|
|
$ hg log
|
|
|
|
$ hg pull -q ../client
|
|
|
|
|
|
|
|
Test that hgsql is a requirement
|
2017-05-08 23:19:01 +03:00
|
|
|
$ grep hgsql .hg/requires
|
|
|
|
hgsql
|
2016-04-29 19:55:23 +03:00
|
|
|
$ hg log -r tip --config extensions.hgsql=!
|
|
|
|
abort: repository requires features unknown to this Mercurial: hgsql!
|
|
|
|
(see https://mercurial-scm.org/wiki/MissingRequirement for more information)
|
|
|
|
[255]
|
|
|
|
$ hg log -r tip
|
|
|
|
changeset: 0:b292c1e3311f
|
|
|
|
user: test
|
|
|
|
date: Thu Jan 01 00:00:00 1970 +0000
|
|
|
|
summary: x
|
|
|
|
|
2017-05-08 23:19:01 +03:00
|
|
|
|
|
|
|
Ensure streaming clones to non-hgsql repos work
|
|
|
|
$ cd ..
|
|
|
|
$ hg clone --config extensions.hgsql=! --config ui.ssh='python "$TESTDIR/dummyssh"' --uncompressed ssh://user@dummy/master client2 | grep "streaming all changes"
|
|
|
|
streaming all changes
|
|
|
|
|
2018-05-09 15:58:03 +03:00
|
|
|
Ensure streaming clones to hgsql repos work
|
|
|
|
$ hg clone --config extensions.hgsql= --config ui.ssh='python "$TESTDIR/dummyssh"' --uncompressed ssh://user@dummy/master client3
|
|
|
|
streaming all changes
|
2019-08-31 00:56:12 +03:00
|
|
|
4 files to transfer, 294 bytes of data
|
2018-05-09 15:58:03 +03:00
|
|
|
transferred 294 bytes in * seconds (*) (glob)
|
|
|
|
updating to branch default
|
|
|
|
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
|