You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
i am trying to upload a picture as evidence to a testRun in the execution Issue
image_path = "C:/work/screenshots/repo2.png"
is_file = os.path.isfile(image_path)
print(is_file)
def get_base64_encoded_image(image_path):
with open(image_path, "rb") as img_file:
return base64.b64encode(img_file.read()).decode('utf-8')
deco = get_base64_encoded_image(image_path)
print(deco)
data = {
"data": deco,
"filename": "test1.png",
"contentType": "image/jpg"
}
url = "https://my_site/rest/raven/1.0/api/testrun/39340/attachment"
req = requests.post(url=url, json=data, auth=(user, password))
print(req)
but i get 500 i am missing a step? or this is a bug? i am following https://docs.getxray.app/display/XRAY/Test+Runs+-+REST#TestRunsREST-Evidence,
if i do "get" just to see if there is any evidence (checking if i was able to upload something) i also get 500
req = requests.get(url=url, json=data, auth=(user, password))
print(req)
=( my bad, i was putting the wrong user and password, but i was expecting a more descriptive error, or like run not found, wrong password, you are doing something wrong etc... 500 server error
Hi @demian kurejwowski ,
I also agree that the error should be more clear.
Some time ago, I've released some collections for Postman as open-source, that contains calls for all endpoints. You may eventually find it useful: https://github.com/Xray-App/xray-postman-collections
Regards
Sérgio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you already heard about Smart Commits in Bitbucket, know that you just stumbled upon something even better (and smarter!): Genius Commits by Better DevOps Automation for Jira Data Center (+ Server...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.