mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 00:43:06 -06:00
DCD-224: Create a role for installation with the binary installer.
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
import os
|
||||
import json
|
||||
import urllib.request
|
||||
|
||||
import testinfra.utils.ansible_runner
|
||||
|
||||
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
||||
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
||||
|
||||
def get_latest():
|
||||
data = urllib.request.urlopen("https://marketplace.atlassian.com/rest/2/products/key/jira-servicedesk/versions/latest")
|
||||
meta = json.loads(data.read().decode("UTF-8"))
|
||||
servicedesk = meta['name']
|
||||
jira = meta['compatibilities'][0]['hosting']['server']['max']['version']
|
||||
return (servicedesk, jira)
|
||||
|
||||
(sd, jira) = get_latest()
|
||||
|
||||
def test_version_is_correct(host):
|
||||
verfile = host.file('/media/atl/jira/shared/jira-servicedesk.version')
|
||||
assert verfile.exists
|
||||
|
||||
assert verfile.content.decode("UTF-8").strip() == sd
|
||||
|
||||
def test_is_downloaded(host):
|
||||
installer = host.file('/opt/atlassian/tmp/jira-software.'+jira+'.tar.gz')
|
||||
assert installer.exists
|
||||
assert installer.user == 'root'
|
||||
|
||||
def test_is_unpacked(host):
|
||||
installer = host.file('/opt/atlassian/jira-servicedesk/'+jira)
|
||||
assert installer.exists
|
||||
assert installer.is_directory
|
||||
assert installer.user == 'jira'
|
||||
assert installer.mode == 0o0755
|
||||
|
||||
def test_sd_is_downloaded(host):
|
||||
installer = host.file('/opt/atlassian/tmp/jira-servicedesk.'+sd+'.obr')
|
||||
assert installer.exists
|
||||
assert installer.user == 'root'
|
||||
|
||||
def test_is_unpacked(host):
|
||||
installer = host.file('/media/atl/jira/shared/plugins/installed-plugins/jira-servicedesk-application-'+sd+'.jar')
|
||||
assert installer.exists
|
||||
assert installer.user == 'jira'
|
||||
assert installer.mode == 0o0750
|
||||
Reference in New Issue
Block a user