File: test-manifest.py

package info (click to toggle)
python-hglib 1.4-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 312 kB
  • sloc: python: 2,098; makefile: 20
file content (25 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import common, hglib, os, stat

class test_manifest(common.basetest):
    def test_basic(self):
        self.append('a', 'a')
        files = ['a']
        manifest = [('047b75c6d7a3ef6a2243bd0e99f94f6ea6683597', '644', False,
                     False, 'a')]

        if os.name == 'posix':
            self.append('b', 'b')
            os.chmod('b', os.stat('b')[0] | stat.S_IEXEC)
            os.symlink('b', 'c')

            files.extend(['b', 'c'])
            manifest.extend([('62452855512f5b81522aa3895892760bb8da9f3f', '755',
                              True, False, 'b'),
                             ('62452855512f5b81522aa3895892760bb8da9f3f', '644',
                              False, True, 'c')])

        self.client.commit('first', addremove=True)

        self.assertEquals(list(self.client.manifest(all=True)), files)

        self.assertEquals(list(self.client.manifest()), manifest)