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
|
import json
from testapiclient.utils import command
from testapiclient.utils import urlparse
def deployresults_url():
return urlparse.resource_join('deployresults')
def deployresult_url(parsed_args):
return urlparse.path_join(deployresults_url(), parsed_args.deployresult_id)
class DeployresultGet(command.Lister):
def get_parser(self, prog_name):
parser = super(DeployresultGet, self).get_parser(prog_name)
parser.add_argument('-build-id',
help='Search deployresults using build tag')
parser.add_argument('-from',
help='Search deployresults using from date')
parser.add_argument('-scenario',
help='Search deployresults using scenario')
parser.add_argument('-period',
help='Search deployresults using period')
parser.add_argument('-page',
help='Search deployresults using page')
parser.add_argument('-to',
help='Search deployresults using to')
parser.add_argument('---version',
help='Search deployresults using version')
parser.add_argument('-last',
help='Search deployresults using last date')
parser.add_argument('-pod-name',
help='Search deployresults using pod')
parser.add_argument('-criteria',
help='Search deployresults using version')
parser.add_argument('-installer',
help='Search deployresults using installer')
parser.add_argument('-job-name',
help='Search deployresults using project')
return parser
def take_action(self, parsed_args):
columns = (
'_id',
'pod_name',
'version',
'criteria',
'start_date',
'stop_date',
'scenario',
'installer',
)
data = self.app.client_manager.get(
urlparse.query_by(deployresults_url(),
['build_id', 'from', 'last',
'scenario', 'period', 'job_name',
'to', 'version',
'criteria', 'installer', 'pod_name', 'page'],
parsed_args))
return self.format_output(columns, data.get('deployresults', []))
class DeployresultGetOne(command.ShowOne):
def get_parser(self, prog_name):
parser = super(DeployresultGetOne, self).get_parser(prog_name)
parser.add_argument('deployresult_id',
help='Search deployresult by deployresult id')
return parser
def take_action(self, parsed_args):
return self.format_output(
self.app.client_manager.get(deployresult_url(parsed_args)))
class DeployresultCreate(command.ShowOne):
def get_parser(self, prog_name):
parser = super(DeployresultCreate, self).get_parser(prog_name)
parser.add_argument('deployresult',
type=json.loads,
help='Deployresult create request format:\n'
'\'{"job_name" : "","scenario" : "",'
'"stop_date" : "", "build_id" : "",'
'"upstream_job_name": "",'
'"version" : "", "pod_name" : "",'
'"criteria" : "", "installer" : "",'
'"upstream_build_id" : "",'
'"start_date" : "", "details" : ""}\'')
return parser
def take_action(self, parsed_args):
return self.format_output(
self.app.client_manager.post(
deployresults_url(), parsed_args.deployresult))
|