sapling/tests/test-hgsql-encoding.t
Mark Thomas 742cd624f7 hgsql: integrate with hg-crew
Summary:
Move hgsql into the hgext directory, and the tests to tests/test-hgsql-*.

Update the tests to refer to the new places for things.

Test Plan: Run the hgsql tests and make sure they pass.

Reviewers: #sourcecontrol

Differential Revision: https://phabricator.intern.facebook.com/D6660499

Tasks: T24908724
2018-01-04 07:22:19 -08:00

84 lines
2.0 KiB
Perl

no-check-code
Python2 is required for its binary path handling
$ hash python2 &>/dev/null || { echo 'skipped: missing python2'; exit 80; }
$ . "$TESTDIR/hgsql/library.sh"
Create a repo with non-ascii paths
$ initclient client1
$ cd client1
..Create a file with tailing space (test the database will not eat the space)
$ echo a > 'a '
$ if [ $? -ne 0 ]; then
> echo 'skipped: filesystem does not support binary paths'
> exit 80
> fi
$ hg add . -q 2>/dev/null
$ hg commit -m 'tailing spaces' -q
..Create files with random raw characters
$ python2 2>/dev/null << EOF
> for i in range(1, 256):
> if chr(i) in '/.\n\r':
> continue
> name = chr(i) * (i % 7 + 1)
> with open(name, 'wb') as f:
> f.write(b'foo')
> EOF
$ if [ $? -ne 0 ]; then
> echo 'skipped: filesystem does not support binary paths'
> exit 80
> fi
$ hg add . -q 2>/dev/null
$ hg commit -m 'binary paths' -q
$ hg log -T '{rev}:{node} {desc}\n'
1:b0c761d3d09e5ad2bd8f9440e212fc43eecf6dbe binary paths
0:c2d59fc1ca219a78013735473161145cb4d7d7fc tailing spaces
$ hg bookmark nonasciipath
$ cd ..
Create the master repo
$ initserver master1 sqlreponame
$ cd master1
$ hg pull -q ../client1
$ hg log -T '{rev}:{node} {desc}\n'
1:b0c761d3d09e5ad2bd8f9440e212fc43eecf6dbe binary paths
0:c2d59fc1ca219a78013735473161145cb4d7d7fc tailing spaces
$ cd ..
Create another master repo, it should synchronize from the database
$ initserver master2 sqlreponame
$ cd master2
$ hg log -T '{rev}:{node} {desc}\n'
1:b0c761d3d09e5ad2bd8f9440e212fc43eecf6dbe binary paths
0:c2d59fc1ca219a78013735473161145cb4d7d7fc tailing spaces
$ hg bookmark
nonasciipath 1:b0c761d3d09e
$ hg up nonasciipath -q
$ [[ -f 'a ' ]] && echo good
good
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
252 files, 2 changesets, 252 total revisions
$ cd ..