コード例 #1
0
    def test_downloaded(self):
        '''
        Test to ensures that the artifact from artifactory exists at
        given location.
        '''
        name = 'jboss'
        arti_url = 'http://artifactory.intranet.example.com/artifactory'
        artifact = {
            'artifactory_url': arti_url,
            'artifact_id': 'module',
            'repository': 'libs-release-local',
            'packaging': 'jar',
            'group_id': 'com.company.module',
            'classifier': 'sources',
            'version': '1.0'
        }

        ret = {'name': name, 'result': False, 'changes': {}, 'comment': ''}

        mck = MagicMock(return_value={
            'status': False,
            'changes': {},
            'comment': ''
        })
        with patch.dict(artifactory.__salt__,
                        {'artifactory.get_release': mck}):
            self.assertDictEqual(artifactory.downloaded(name, artifact), ret)

        with patch.object(artifactory, '__fetch_from_artifactory',
                          MagicMock(side_effect=Exception('error'))):
            ret = artifactory.downloaded(name, artifact)
            self.assertEqual(ret['result'], False)
            self.assertEqual(ret['comment'], 'error')
コード例 #2
0
def test_downloaded():
    """
    Test to ensures that the artifact from artifactory exists at
    given location.
    """
    name = "jboss"
    arti_url = "http://artifactory.intranet.example.com/artifactory"
    artifact = {
        "artifactory_url": arti_url,
        "artifact_id": "module",
        "repository": "libs-release-local",
        "packaging": "jar",
        "group_id": "com.company.module",
        "classifier": "sources",
        "version": "1.0",
    }

    ret = {"name": name, "result": False, "changes": {}, "comment": ""}

    mck = MagicMock(return_value={
        "status": False,
        "changes": {},
        "comment": ""
    })
    with patch.dict(artifactory.__salt__, {"artifactory.get_release": mck}):
        assert artifactory.downloaded(name, artifact) == ret

    with patch.object(
            artifactory,
            "__fetch_from_artifactory",
            MagicMock(side_effect=Exception("error")),
    ):
        ret = artifactory.downloaded(name, artifact)
        assert ret["result"] is False
        assert ret["comment"] == "error"
コード例 #3
0
    def test_downloaded(self):
        '''
        Test to ensures that the artifact from artifactory exists at
        given location.
        '''
        name = 'jboss'
        arti_url = 'http://artifactory.intranet.example.com/artifactory'
        artifact = {'artifactory_url': arti_url, 'artifact_id': 'module',
                    'repository': 'libs-release-local', 'packaging': 'jar',
                    'group_id': 'com.company.module', 'classifier': 'sources',
                    'version': '1.0'}

        ret = {'name': name,
               'result': False,
               'changes': {},
               'comment': ''}

        mck = MagicMock(return_value={'status': False, 'changes': {},
                                      'comment': ''})
        with patch.dict(artifactory.__salt__, {'artifactory.get_release': mck}):
            self.assertDictEqual(artifactory.downloaded(name, artifact), ret)

        with patch.object(artifactory, '__fetch_from_artifactory',
                          MagicMock(side_effect=Exception('error'))):
            ret = artifactory.downloaded(name, artifact)
            self.assertEqual(ret['result'], False)
            self.assertEqual(repr(ret['comment']), repr(Exception('error')))