-
Notifications
You must be signed in to change notification settings - Fork 5
/
xray_syncRepositoryFolder.py
205 lines (177 loc) · 8.68 KB
/
xray_syncRepositoryFolder.py
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# Copyright (c) 2020, Xblend Software, Lda
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the Xblend Software, Lda.
# 4. Neither the name of the Xblend Software, Lda nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ''AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import requests
import json
from collections import namedtuple
from collections import Counter
from jira import JIRA
from requests.auth import HTTPBasicAuth
from xray_helper import *
from pyfiglet import Figlet
import argparse
from xray_variables import *
import logging
import os.path
import time
from os import path
import sys
import pandas as pd
import numpy as np
from datetime import datetime
# Command line arguments
parser = argparse.ArgumentParser(description='Repository folder Sync')
parser.add_argument('-export',
help='Export list of issues processed (default: information is logged but no file is created).'
)
commandExecutionExceptions = parser.parse_args()
start = time.time()
# Logging
for handler in logging.root.handlers[:]:
logging.root.removeHandler(handler)
rootLogger = logging.getLogger()
logFormatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fileHandler = logging.FileHandler(filename=os.path.basename(__file__ + str(datetime.now().strftime("%H_%M_%d_%m_%Y")) +".log"), mode='a')
fileHandler.setFormatter(logFormatter)
rootLogger.addHandler(fileHandler)
consoleHandler = logging.StreamHandler(sys.stdout)
consoleHandler.setFormatter(logFormatter)
rootLogger.addHandler(consoleHandler)
logging.info("------------------- ##### Starting ##### ------------------- ")
# Build ignore list if required
if commandExecutionExceptions.export != None:
fileExport = open(commandExecutionExceptions.export,"w")
f = Figlet(font='slant')
print (f.renderText('Your Xray Generic Test definition synchronizer !'))
#Get auth token and build header for requests
response = requests.post('https://xray.cloud.getxray.app/api/v1/authenticate', data={"client_id": GLOBAL_client_id,"client_secret":GLOBAL_client_secret})
token=response.text.replace("\"","")
#print(response.text)
headers = {'Authorization':'Bearer %s' % token}
jira = JIRA(basic_auth=(GLOBAL_basic_auth_user, GLOBAL_basic_auth_pass),options={"server": GLOBAL_onPremiseURL}) # a username/password tuple
jiraCloud = JIRA(basic_auth=(GLOBAL_cloudUser, GLOBAL_apitoken),options={"server": GLOBAL_onCloudMig}) # a username/password tuple
# Get all Tests
logging.info("-------")
logging.info("======= Collecting INFO [START] =========")
logging.info("Processing Tests...")
mutation = ""
paths = []
def processFolders(repository, project,mutation,headers):
if "name" in repository:
path = repository["testRepositoryPath"] + "/" + repository["name"]
if path not in paths:
paths.append(path)
createFolder(headers,GLOBAL_url_xray,project.id,path,mutation)
page = 1
while True:
if "id" in repository and "totalTestCount" in repository:
nTests = repository["totalTestCount"]
if nTests > 0:
# Get all Tests linked to OnPremise test execution
r = requests.get('' + GLOBAL_onPremiseURL+'/rest/raven/1.0/api/testrepository/'+project.key +'/folders/' + str(repository['id']) +'/tests?limit=100&page=' + str(page) +'', auth=HTTPBasicAuth(GLOBAL_basic_auth_user, GLOBAL_basic_auth_pass))
if r.text == "" or r.text == None or r.text=="[]":
break
else :
try:
json_data = json.loads(r.text)
except:
logging.error(r.text)
break
listOfTests= []
listofCloudIds = []
if "tests" in json_data and str(json_data["tests"])!="[]":
for test in json_data["tests"]:
listOfTests.append(test['key'])
block_size = 100
block_num = 0
while True:
start_idx = block_num*block_size
issues = jiraCloud.search_issues("issue in (" + str(listOfTests).replace('\'','\"').replace(']','').replace('[','') + ")", start_idx,block_size)
if len(issues) == 0:
# Retrieve issues until there are no more to come
break
block_num += 1
for issue in issues:
listofCloudIds.append(str(issue.id))
formatedListOfTests = str(listofCloudIds).replace('\'','\"')
addTestsToFolder(headers,project.id, path,formatedListOfTests,mutation)
else:
break
page = page +1
else:
break
else:
break
if repository['folders'] == "[]":
logging.debug("No more folders.")
packUpdateandSend(headers,GLOBAL_url_xray,mutation)
mutation = ""
return
else:
for folder in repository['folders']:
processFolders(folder,project,mutation,headers)
keyStats = []
timeStats = []
count= 0
for project in GLOBAL_projectRepositoryList:
startExec = time.time()
cloudproject = jiraCloud.project(project)
r = requests.get('' + GLOBAL_onPremiseURL+'/rest/raven/1.0/api/testrepository/'+ project +'/folders', auth=HTTPBasicAuth(GLOBAL_basic_auth_user, GLOBAL_basic_auth_pass))
if r.text == "" or r.text == None or r.text=="[]":
break
else :
try:
json_data = json.loads(r.text)
except:
logging.error("An error as occurred - Skipping " + project +" Project")
logging.error(r.text)
break
repository = json.loads(r.text)
processFolders(repository,cloudproject,mutation,headers)
if commandExecutionExceptions.export != None:
fileExport.write("%s\n" % project)
fileExport.flush()
keyStats.append(project)
timeStats.append(time.time()-startExec)
count = count +1
logging.info('Done ' + str(count) + ' of ' + str(len(GLOBAL_projectRepositoryList)) )
logging.info("======= Collecting INFO [END] =========")
logging.info('It took ' + str(time.time()-start) + 'seconds.')
logging.info("------------------- ##### End ##### ------------------- ")
if keyStats:
keysSeries = pd.Series(keyStats)
timeSeries = pd.Series(timeStats)
d = {'Key':keysSeries,
'Time':timeSeries
}
pd.set_option('display.max_rows', None)
df = pd.DataFrame(d)
logging.info("------------------- ##### STATISTICS - Full list ##### ------------------- ")
print (df)
logging.info("------------------- ##### STATISTICS - Aggregated data ##### ------------------- ")
print (df.describe())
if commandExecutionExceptions.export != None:
fileExport.close()