Esempio n. 1
0
 def testAsDictBranch(self):
     s = SourceStamp(branch='Br', revision='Rev')
     r = s.asDict()
     self.assertEqual(r, {
         'revision': 'Rev',
         'patch': None,
         'branch':  'Br',
         'changes': [],
       })
Esempio n. 2
0
 def testAsDictEmpty(self):
     s = SourceStamp()
     r = s.asDict()
     self.assertEqual(r, {
         'revision': None,
         'patch': None,
         'branch':  None,
         'changes': [],
       })
Esempio n. 3
0
 def testAsDictChanges(self):
     changes = [
         Change('nobody', [], 'Comment', branch='br2', revision='rev2'),
         Change('nob', ['file2', 'file3'],
                'Com',
                branch='br3',
                revision='rev3'),
     ]
     s = SourceStamp(branch='Br',
                     revision='Rev',
                     patch=(1, 'Pat'),
                     changes=changes)
     r = s.asDict()
     del r['changes'][0]['when']
     del r['changes'][1]['when']
     EXPECTED = {
         'revision':
         'rev3',
         'branch':
         'br3',
         'hasPatch':
         True,
         'project':
         '',
         'repository':
         '',
         'changes': [{
             'branch': 'br2',
             'category': None,
             'comments': 'Comment',
             'files': [],
             'number': None,
             'properties': [],
             'revision': 'rev2',
             'revlink': '',
             'project': '',
             'repository': '',
             'who': 'nobody'
         }, {
             'branch': 'br3',
             'category': None,
             'comments': 'Com',
             'files': ['file2', 'file3'],
             'number': None,
             'properties': [],
             'revision': 'rev3',
             'revlink': '',
             'who': 'nob',
             'project': '',
             'repository': '',
         }],
     }
     self.assertEqual(EXPECTED, r)
Esempio n. 4
0
 def testAsDictChanges(self):
     changes = [
         Change('nobody', [], 'Comment', branch='br2', revision='rev2'),
         Change('nob', ['file2', 'file3'], 'Com', branch='br3',
                revision='rev3'),
     ]
     s = SourceStamp(branch='Br', revision='Rev', patch=(1,'Pat'),
                     changes=changes)
     r = s.asDict()
     r['changes'][0]['when'] = 23
     r['changes'][1]['when'] = 42
     self.assertEqual(r, {
         'revision': 'rev3',
         'patch': (1,'Pat'),
         'branch': 'br3',
         'project': '',
         'repository':'',
         'changes': [
             {
                 'branch': 'br2',
                 'category': None,
                 'comments': 'Comment',
                 'files': [],
                 'number': None,
                 'properties': [],
                 'revision': 'rev2',
                 'revlink': '',
                 'when': 23,
                 'who': 'nobody',
                 'project' : '',
                 'repository' : '',
             },
             {
                 'branch': 'br3',
                 'category': None,
                 'comments': 'Com',
                 'files': ['file2', 'file3'],
                 'number': None,
                 'properties': [],
                 'revision': 'rev3',
                 'revlink': '',
                 'when': 42,
                 'who': 'nob',
                 'project' : '',
                 'repository' : '',
             }
         ],
       })