Mercurial > public > mercurial-scm > python-hglib
annotate tests/test-manifest.py @ 141:ea80bd2775f6
hglib: introduce util.b() (issue4520)
The util.b() function will be used to mark all string literals in the
code base which should be treated as bytes instead of text. This is to
help with supporting Python 3.
author | Brett Cannon <brett@python.org> |
---|---|
date | Sat, 07 Mar 2015 10:08:52 -0500 |
parents | e89dd99638ce |
children | 4359cabcb0cc |
rev | line source |
---|---|
64 | 1 import common, hglib, os, stat |
2 | |
3 class test_manifest(common.basetest): | |
4 def test_basic(self): | |
5 self.append('a', 'a') | |
69
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
6 files = ['a'] |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
7 manifest = [('047b75c6d7a3ef6a2243bd0e99f94f6ea6683597', '644', False, |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
8 False, 'a')] |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
9 |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
10 if os.name == 'posix': |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
11 self.append('b', 'b') |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
12 os.chmod('b', os.stat('b')[0] | stat.S_IEXEC) |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
13 os.symlink('b', 'c') |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
14 |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
15 files.extend(['b', 'c']) |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
16 manifest.extend([('62452855512f5b81522aa3895892760bb8da9f3f', '755', |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
17 True, False, 'b'), |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
18 ('62452855512f5b81522aa3895892760bb8da9f3f', '644', |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
19 False, True, 'c')]) |
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
20 |
64 | 21 self.client.commit('first', addremove=True) |
22 | |
69
e89dd99638ce
test-manifest: Windows doesn't have symlink or executable bit
Idan Kamara <idankk86@gmail.com>
parents:
64
diff
changeset
|
23 self.assertEquals(list(self.client.manifest(all=True)), files) |
64 | 24 |
25 self.assertEquals(list(self.client.manifest()), manifest) |