docker-atlassian-confluence.../func-tests/smoketests/tests/test_smoketests.py
Nasser Ghazali-Beiklar 2a28ea5182 Merged in DCKUBE-136-RunSmoketestsInReleasePipeline (pull request #83)
DCKUBE-135, DCKUBE-136, DCKUBE_137, and DCKUBE-138: Add Smoke tests in Confluence Pipeline
This PR contains code change for three tickets which are related and should merge to master together.

KUBEDCKUBE-135:
Applied security scan to bitbucket pipeline for branch builds in confluence - for releases, the test script will run by run.py for releases and for branch builds and custom releases will directly runs snyk scanner
Created a smoke testing suite via REST and included these scenarios: Create a space, Create a page, Search for the page, View page, Add attachments, Delete the page, and Delete the space

KUBEDCKUBE-136:
Added a separated docker for confluence to based on the docker image to copy confluence home directory
Injected target confluence image to Dockerfile
set the number of concurrent builds to one in pipeline
clean docker-compose before start and force to recreate the containers
Modified the script in order to install netcat-openbsd using apkfor Alpine (apt-getis not available in Alpine)
Replaced colfuence-home directory and postgres scripts with confluence 6.0.1 compatible to avoid downgrade version in release images
Increased database connection numbers to 125
Addressed some review points, replaced the confluence home directory and sql with version 6.0.1
Addressed a review points, renamed CONFLUENCE_USER to CONFLUENCE_ADMIN
divided pipeline into batches to avoid pipeline timeout

KUBEDCKUBE-137:
Run smoketests in branch builds after each commit
Completed smoketests and also addressed some review points

KUBEDCKUBE-138:
Added development document

Approved-by: Adam Brokes
2021-03-12 03:30:51 +00:00

212 lines
6.2 KiB
Python

import pytest
import requests
import os
import time
import json
from requests.auth import HTTPBasicAuth
import file_helper
def test_create_space(space_key):
url = f"{REST_API_URL}/space"
data = {
"key": space_key,
"name": "Test new space",
"description": {
"plain": {
"value": "test space generated by api for smoketest",
"representation": "plain"
}
},
"metadata": {}
}
headers = {'Content-Type': 'application/json'}
r = requests.post(url, data=json.dumps(data), headers=headers, auth=auth)
assert r.status_code == 200, \
f'failed to create space {space_key}! status:{r.status_code}'
def test_create_content(space_key, title, content, content_id):
url = f"{REST_API_URL}/content"
data = {
"type": "page",
"status": "current",
"title": title,
"space": {"key": space_key},
"representation": "storage",
"body":
{
"storage":
{
"value": f"<p>{content}</p>",
"representation": "storage"
}
}
}
headers = {'Content-Type': 'application/json'}
r = requests.post(url, data=json.dumps(data), headers=headers, auth=auth)
assert r.status_code == 200, \
f'failed to create page "{title}"! status:{r.status_code}'
result = json.loads(r.text)
content_id['val'] = result['id']
def test_search_content(content):
url = f"{REST_API_URL}/content/search?cql=text~'{content}'"
attempts = 0
while True:
r = requests.get(url, auth=auth)
if r.status_code == 200:
if len(json.loads(r.text)['results']) > 0:
break
attempts += 1
if attempts > max_wait_for_response:
break
# Add more delay if index still updating and no result is returned
time.sleep(1)
assert r.status_code == 200, \
f'failed to search content! status:{r.status_code}'
assert len(json.loads(r.text)['results']) > 0, \
f'failed to find the search term!'
def test_view_content(content_id):
url = f"{REST_API_URL}/content/{content_id['val']}?expand=body.view"
r = requests.get(url, auth=auth)
assert r.status_code == 200, \
f'failed to view the page! status:{r.status_code}'
assert len(json.loads(r.text)['body']['view']['value']) > 0, \
"no content is loaded"
def test_edit_content(content_id):
url = f"{REST_API_URL}/content/{content_id['val']}"
data = {
"version": {
"number": 2
},
"type": "page",
"title": "New Title",
"body":
{
"storage":
{
"value": "<p>This page is edited for smoketest!</p>",
"representation": "storage"
}
}
}
headers = {'Content-Type': 'application/json'}
r = requests.put(url, data=json.dumps(data), headers=headers, auth=auth)
assert r.status_code == 200, \
f'failed to edit page "{title}"! status:{r.status_code}'
def test_add_attachments(content_id, tempfile):
url = f"{REST_API_URL}/content/{content_id['val']}/child/attachment"
headers = {'X-Atlassian-Token': 'no-check'}
# no content-type here!
r = requests.post(url, headers=headers, files=tempfile, auth=auth)
assert r.status_code == 200, \
f'failed to upload the attachment! status:{r.status_code}'
def test_retrieve_attachment(content_id, tempfile):
url = f"{REST_API_URL}/content/{content_id['val']}/child/attachment"
headers = {'Content-Type': 'application/json'}
r = requests.get(url, headers=headers, auth=auth)
assert r.status_code == 200,\
f'failed to find the attachments! status:{r.status_code}'
result = json.loads(r.text)
assert tempfile['file'][0].endswith(result['results'][0]['title']), \
"The attachment file is not found!"
downloadurl = f"{BASE_URL}{result['results'][0]['_links']['download']}"
attempts = 0
while True:
r = requests.get(downloadurl, headers=headers, auth=auth)
assert r.status_code == 200, "Unable to download the attachment!"
file_content = open(tempfile['file'][0], 'r').read()
if file_content == r.text or attempts > max_wait_for_response:
break
# makes more delay to upload from last test get in place
attempts += 1
time.sleep(1)
assert file_content == r.text,\
"The content of downloaded file is not match with the original file"
def test_delete_content(content_id):
url = f"{REST_API_URL}/content/{content_id['val']}"
r = requests.delete(url, auth=auth)
# returns 200(trash) or 204(purge) on success and 404 or 409 if failed
assert r.status_code == 200 or r.status_code == 204,\
f'failed to delete the page! status:{r.status_code}'
confirm_status_404(url)
def test_delete_space(space_key):
url = f"{REST_API_URL}/space/{space_key}"
r = requests.delete(url, auth=auth)
# returns 202 on success and 404 if failed
assert r.status_code == 202, \
f'failed to delete the space! status:{r.status_code}'
confirm_status_404(url)
def confirm_status_404(url):
attempts = 0
while True:
r = requests.get(url, auth=auth)
if r.status_code == 404 or attempts >= max_wait_for_response:
break
attempts += 1
time.sleep(1)
assert r.status_code == 404, f'failed to confirm status code 404!'
@pytest.fixture
def space_key():
return 'testspace01'
@pytest.fixture
def title():
return 'second page'
@pytest.fixture
def content():
return 'This page is created for smoketest!'
@pytest.fixture
def tempfile():
return files
@pytest.fixture
def content_id():
return os.environ.get('GENERATED_CONTENT_ID')
@pytest.fixture(scope='session')
def content_id():
return {'val': 0}
# global variablea
BASE_URL = os.environ.get('CONFLUENCE_BASE_URL', "http://localhost:8090")
REST_API_URL = f"{BASE_URL}/rest/api"
password = os.environ.get('CONFLUENCE_ADMIN_PWD', 'admin')
user = os.environ.get('CONFLUENCE_ADMIN', 'admin')
auth = HTTPBasicAuth(user, password)
max_wait_for_response = 30
files = file_helper.create_temp_files()