hc99's picture
Add files using upload-large-folder tool
2c17839 verified
# 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()