mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
64 lines
1.9 KiB
Python
64 lines
1.9 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
'''
|
||
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
||
|
'''
|
||
|
# Import Python libs
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
# Import Salt Testing Libs
|
||
|
from salttesting import skipIf, TestCase
|
||
|
from salttesting.mock import (
|
||
|
NO_MOCK,
|
||
|
NO_MOCK_REASON,
|
||
|
MagicMock,
|
||
|
patch)
|
||
|
|
||
|
from salttesting.helpers import ensure_in_syspath
|
||
|
|
||
|
ensure_in_syspath('../../')
|
||
|
|
||
|
# Import Salt Libs
|
||
|
from salt.states import artifactory
|
||
|
|
||
|
artifactory.__salt__ = {}
|
||
|
|
||
|
|
||
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||
|
class ArtifactoryTestCase(TestCase):
|
||
|
'''
|
||
|
Test cases for salt.states.artifactory
|
||
|
'''
|
||
|
# 'downloaded' function tests: 1
|
||
|
|
||
|
def test_downloaded(self):
|
||
|
'''
|
||
|
Test to ensures that the artifact from artifactory exists at
|
||
|
given location.
|
||
|
'''
|
||
|
name = 'jboss'
|
||
|
arti_url = 'http://artifactory.intranet.company.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'))):
|
||
|
self.assertEqual(artifactory.downloaded(name, artifact)['comment']
|
||
|
.message, 'error')
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
from integration import run_tests
|
||
|
run_tests(ArtifactoryTestCase, needs_daemon=False)
|