コード例 #1
0
ファイル: test_buildrequest.py プロジェクト: levitte/buildbot
    def test_asdict_with_patch(self):
        ssdatadict = {
            'ssid': '123',
            'branch': 'testbranch',
            'revision': 'testrev',
            'patch': {
                'patchid': 1234,
                'body': b'testbody',
                'level': 2,
                'author': 'testauthor',
                'comment': 'testcomment',
                'subdir': 'testsubdir',
            },
            'repository': 'testrepo',
            'codebase': 'testcodebase',
            'project': 'testproject',
            'created_at': datetime.datetime(2019, 4, 1, 23, 38, 33, 154354),
        }
        ss = buildrequest.TempSourceStamp(ssdatadict)

        self.assertEqual(
            ss.asDict(), {
                'branch': 'testbranch',
                'codebase': 'testcodebase',
                'patch_author': 'testauthor',
                'patch_body': b'testbody',
                'patch_comment': 'testcomment',
                'patch_level': 2,
                'patch_subdir': 'testsubdir',
                'project': 'testproject',
                'repository': 'testrepo',
                'revision': 'testrev'
            })
コード例 #2
0
ファイル: test_buildrequest.py プロジェクト: levitte/buildbot
    def test_asdict_minimal(self):
        ssdatadict = {
            'ssid': '123',
            'branch': None,
            'revision': None,
            'patch': None,
            'repository': 'testrepo',
            'codebase': 'testcodebase',
            'project': 'testproject',
            'created_at': datetime.datetime(2019, 4, 1, 23, 38, 33, 154354),
        }
        ss = buildrequest.TempSourceStamp(ssdatadict)

        self.assertEqual(
            ss.asDict(), {
                'branch': None,
                'codebase': 'testcodebase',
                'patch_author': None,
                'patch_body': None,
                'patch_comment': None,
                'patch_level': None,
                'patch_subdir': None,
                'project': 'testproject',
                'repository': 'testrepo',
                'revision': None
            })