Mercurial > python-hglib
annotate tests/test-manifest.py @ 75:f4f636ecca3e
tests: add a nose plugin that allows specifying a custom hg to run tests
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Sat, 15 Oct 2011 20:03:04 +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) |