File size: 5,799 Bytes
2c17839 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | # coding=utf-8
import json
import os
import tempfile
import unittest
from atlassian import Confluence
class TestConfluenceAttach(unittest.TestCase):
secret_file = "../credentials.secret"
"""
Keep the credentials private, the file is excluded. There is an example for credentials.secret
See also: http://www.blacktechdiva.com/hide-api-keys/
{
"host" : "https://localhost:8080",
"username" : "john_doe",
"password" : "12345678"
}
"""
@unittest.skipIf(
not os.path.exists("../credentials.secret"),
"credentials.secret missing, skipping test",
)
def test_confluence_attach_file_1(self):
try:
with open(self.secret_file) as json_file:
credentials = json.load(json_file)
except Exception as err:
self.fail("[{0}]: {1}".format(self.secret_file, err))
confluence = Confluence(
url=credentials["host"],
username=credentials["username"],
password=credentials["password"],
)
# individual configuration
space = "SAN"
title = "atlassian-python-rest-api-wrapper"
# TODO: check if page are exists
fd, filename = tempfile.mkstemp("w")
os.write(fd, b"Hello World - Version 1")
# upload a new file
result = confluence.attach_file(filename, "", title=title, space=space, comment="upload from unittest")
# attach_file() returns: {'results': [{'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("results" in result)
self.assertFalse("statusCode" in result)
# upload a new version of an existing file
os.lseek(fd, 0, 0)
os.write(fd, b"Hello Universe - Version 2")
result = confluence.attach_file(filename, "", title=title, space=space, comment="upload from unittest")
# attach_file() returns: {'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("id" in result)
self.assertFalse("statusCode" in result)
os.close(fd)
os.remove(filename)
@unittest.skipIf(
not os.path.exists("../credentials.secret"),
"credentials.secret missing, skipping test",
)
def test_confluence_attach_file_2(self):
try:
with open(self.secret_file) as json_file:
credentials = json.load(json_file)
except Exception as err:
self.fail("[{0}]: {1}".format(self.secret_file, err))
confluence = Confluence(
url=credentials["host"],
username=credentials["username"],
password=credentials["password"],
)
# individual configuration
space = "SAN"
title = "atlassian-python-rest-api-wrapper"
# TODO: check if page are exists
fd, filename = tempfile.mkstemp("w")
os.write(fd, b"Hello World - Version 1")
name = os.path.basename(tempfile.mktemp()) + ".txt"
# upload a new file
result = confluence.attach_file(
filename,
name,
content_type="text/plain",
title=title,
space=space,
comment="upload from unittest",
)
# attach_file() returns: {'results': [{'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("results" in result)
self.assertFalse("statusCode" in result)
# upload a new version of an existing file
os.lseek(fd, 0, 0)
os.write(fd, b"Hello Universe - Version 2")
result = confluence.attach_file(
filename,
name,
content_type="text/plain",
title=title,
space=space,
comment="upload from unittest",
)
# attach_file() returns: {'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("id" in result)
self.assertFalse("statusCode" in result)
os.close(fd)
os.remove(filename)
@unittest.skipIf(
not os.path.exists("../credentials.secret"),
"credentials.secret missing, skipping test",
)
def test_confluence_attach_content(self):
try:
with open(self.secret_file) as json_file:
credentials = json.load(json_file)
except Exception as err:
self.fail("[{0}]: {1}".format(self.secret_file, err))
confluence = Confluence(
url=credentials["host"],
username=credentials["username"],
password=credentials["password"],
)
# individual configuration
space = "SAN"
title = "atlassian-python-rest-api-wrapper"
attachment_name = os.path.basename(tempfile.mktemp())
# upload a new file
content = b"Hello World - Version 1"
result = confluence.attach_content(
content,
attachment_name,
"text/plain",
title=title,
space=space,
comment="upload from unittest",
)
# attach_file() returns: {'results': [{'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("results" in result)
self.assertFalse("statusCode" in result)
# upload a new version of an existing file
content = b"Hello Universe - Version 2"
result = confluence.attach_content(
content,
attachment_name,
"text/plain",
title=title,
space=space,
comment="upload from unittest",
)
# attach_file() returns: {'id': 'att144005326', 'type': 'attachment', ...
self.assertTrue("id" in result)
self.assertFalse("statusCode" in result)
if __name__ == "__main__":
unittest.main()
|