Mercurial > public > mercurial-scm > python-hglib
annotate tests/test-manifest.py @ 122:e05b0cf920bb
client: implement the 'in' keyword for a client object
Check if a revision number or a changeset hex matches a changeset in the client
repository. The internal tries to create a ctx object. Returns False If the ctx
creation fails.
This patch also adds the corresponding tests.
author | Paul Tonelli <paul.tonelli@logilab.fr> |
---|---|
date | Wed, 30 Apr 2014 16:44:59 +0200 |
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) |