robotframework-robotlog2rqm 1.2.1__tar.gz → 1.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/PKG-INFO +12 -12
  2. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/README.rst +28 -28
  3. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/CRQM.py +114 -111
  4. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RobotLog2RQM.pdf +0 -0
  5. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/__init__.py +1 -1
  6. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/__main__.py +2 -2
  7. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/robotlog2rqm.py +35 -35
  8. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/version.py +3 -3
  9. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/PKG-INFO +12 -12
  10. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/setup.py +1 -1
  11. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/LICENSE +0 -0
  12. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/buildrecord.xml +0 -0
  13. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/configuration.xml +0 -0
  14. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/executionresult.xml +0 -0
  15. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/executionworkitem.xml +0 -0
  16. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/suiteexecutionrecord.xml +0 -0
  17. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/testcase.xml +0 -0
  18. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/RobotLog2RQM/RQM_templates/testsuitelog.xml +0 -0
  19. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/SOURCES.txt +0 -0
  20. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/dependency_links.txt +0 -0
  21. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/entry_points.txt +0 -0
  22. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/requires.txt +0 -0
  23. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/robotframework_robotlog2rqm.egg-info/top_level.txt +0 -0
  24. {robotframework-robotlog2rqm-1.2.1 → robotframework-robotlog2rqm-1.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2rqm
3
- Version: 1.2.1
3
+ Version: 1.2.3
4
4
  Summary: Imports robot result(s) to IBM Rational Quality Manager (RQM)
5
5
  Home-page: https://github.com/test-fullautomation/robotframework-robotlog2rqm
6
6
  Author: Tran Duy Ngoan
@@ -128,15 +128,15 @@ Use below command to get tools\'s usage:
128
128
 
129
129
  The usage should be showed as below:
130
130
 
131
- usage: RobotLog2RQM (RobotXMLResult to RQM importer) [-h] [-v] [--recursive]
132
- [--createmissing] [--updatetestcase] [--dryrun]
131
+ usage: RobotLog2RQM (RobotXMLResult to RQM importer) [-h] [-v] [--recursive]
132
+ [--createmissing] [--updatetestcase] [--dryrun]
133
133
  resultxmlfile host project user password testplan
134
134
 
135
- RobotLog2RQM imports XML result files (default: output.xml) generated by the
135
+ RobotLog2RQM imports XML result files (default: output.xml) generated by the
136
136
  Robot Framework into an IBM Rational Quality Manager.
137
137
 
138
138
  positional arguments:
139
- resultxmlfile absolute or relative path to the xml result file
139
+ resultxmlfile absolute or relative path to the xml result file
140
140
  or directory of result files to be imported.
141
141
  host RQM host url.
142
142
  project project on RQM.
@@ -147,13 +147,13 @@ The usage should be showed as below:
147
147
  optional arguments:
148
148
  -h, --help show this help message and exit
149
149
  -v, --version Version of the RobotLog2RQM importer.
150
- --recursive if set, then the path is searched recursively for
150
+ --recursive if set, then the path is searched recursively for
151
151
  log files to be imported.
152
- --createmissing if set, then all testcases without tcid are created
152
+ --createmissing if set, then all testcases without tcid are created
153
153
  when importing.
154
- --updatetestcase if set, then testcase information on RQM will be updated
154
+ --updatetestcase if set, then testcase information on RQM will be updated
155
155
  bases on robot testfile.
156
- --dryrun if set, then verify all input arguments
156
+ --dryrun if set, then verify all input arguments
157
157
  (includes RQM authentication) and show what would be done.
158
158
 
159
159
  The below command is simple usage witth all required arguments to import
@@ -185,12 +185,12 @@ importing into RQM:
185
185
 
186
186
  *** Test Cases ***
187
187
  Testcase 01
188
- [Documentation] This test is traceable with provided tcid
188
+ [Documentation] This test is traceable with provided tcid
189
189
  [Tags] TCID-1001 FID-112 FID-111 robotfile-https://github.com/test-fullautomation
190
190
  Log This is Testcase 01
191
191
 
192
192
  Testcase 02
193
- [Documentation] This new testcase will be created if --createmissing argument
193
+ [Documentation] This new testcase will be created if --createmissing argument
194
194
  ... is provided when importing
195
195
  [Tags] FID-113 robotfile-https://github.com/test-fullautomation
196
196
  Log This is Testcase 02
@@ -242,7 +242,7 @@ Contributors
242
242
  License
243
243
  -------
244
244
 
245
- Copyright 2020-2022 Robert Bosch GmbH
245
+ Copyright 2020-2024 Robert Bosch GmbH
246
246
 
247
247
  Licensed under the Apache License, Version 2.0 (the \"License\"); you
248
248
  may not use this file except in compliance with the License. You may
@@ -1,4 +1,4 @@
1
- .. Copyright 2020-2022 Robert Bosch GmbH
1
+ .. Copyright 2020-2024 Robert Bosch GmbH
2
2
 
3
3
  .. Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -15,19 +15,19 @@
15
15
  RobotLog2RQM Description
16
16
  ========================
17
17
 
18
- The Python package **RobotLog2RQM** provides ability to import `Robot Framework
19
- test result`_ as ***.xml** format file(s) to `IBM® Rational® Quality Manager`_
18
+ The Python package **RobotLog2RQM** provides ability to import `Robot Framework
19
+ test result`_ as ***.xml** format file(s) to `IBM® Rational® Quality Manager`_
20
20
  (RQM) for test management.
21
21
 
22
22
  **RobotLog2RQM** tool helps to:
23
23
 
24
- * Create all required resources (*Test Case Excution Record*, *Test Case
24
+ * Create all required resources (*Test Case Excution Record*, *Test Case
25
25
  Execution Result*, ...) for new testcase on RQM.
26
26
  * Link all testcases to provided testplan.
27
27
  * Add new test result for existing testcase on RQM.
28
28
  * Update existing testcase on RQM.
29
29
 
30
- **RobotLog2RQM** tool is operating system independent and only works with
30
+ **RobotLog2RQM** tool is operating system independent and only works with
31
31
  Python 3.
32
32
 
33
33
  How to install
@@ -87,18 +87,18 @@ How to install
87
87
 
88
88
  python setup.py install
89
89
 
90
- After succesful installation, the executable file **RobotLog2RQM**
91
- will be available (under *Scripts* folder of Python on Windows
90
+ After succesful installation, the executable file **RobotLog2RQM**
91
+ will be available (under *Scripts* folder of Python on Windows
92
92
  and *~/.local/bin/* folder on Linux).
93
93
 
94
- In case above location is added to **PATH** environment variable
94
+ In case above location is added to **PATH** environment variable
95
95
  then you can run it directly as operation system's command.
96
96
 
97
97
  How to use
98
98
  ----------
99
99
 
100
- **RobotLog2RQM** tool requires the Robot Framework ``output.xml`` result file(s)
101
- which will be imported, RQM information(e.g. host url, project, ...) and user
100
+ **RobotLog2RQM** tool requires the Robot Framework ``output.xml`` result file(s)
101
+ which will be imported, RQM information(e.g. host url, project, ...) and user
102
102
  credential(user name and password) to interact with RQM resources.
103
103
 
104
104
  Use below command to get tools's usage:
@@ -112,15 +112,15 @@ The usage should be showed as below:
112
112
 
113
113
  ::
114
114
 
115
- usage: RobotLog2RQM (RobotXMLResult to RQM importer) [-h] [-v] [--recursive]
116
- [--createmissing] [--updatetestcase] [--dryrun]
115
+ usage: RobotLog2RQM (RobotXMLResult to RQM importer) [-h] [-v] [--recursive]
116
+ [--createmissing] [--updatetestcase] [--dryrun]
117
117
  resultxmlfile host project user password testplan
118
118
 
119
- RobotLog2RQM imports XML result files (default: output.xml) generated by the
119
+ RobotLog2RQM imports XML result files (default: output.xml) generated by the
120
120
  Robot Framework into an IBM Rational Quality Manager.
121
121
 
122
122
  positional arguments:
123
- resultxmlfile absolute or relative path to the xml result file
123
+ resultxmlfile absolute or relative path to the xml result file
124
124
  or directory of result files to be imported.
125
125
  host RQM host url.
126
126
  project project on RQM.
@@ -131,17 +131,17 @@ The usage should be showed as below:
131
131
  optional arguments:
132
132
  -h, --help show this help message and exit
133
133
  -v, --version Version of the RobotLog2RQM importer.
134
- --recursive if set, then the path is searched recursively for
134
+ --recursive if set, then the path is searched recursively for
135
135
  log files to be imported.
136
- --createmissing if set, then all testcases without tcid are created
136
+ --createmissing if set, then all testcases without tcid are created
137
137
  when importing.
138
- --updatetestcase if set, then testcase information on RQM will be updated
138
+ --updatetestcase if set, then testcase information on RQM will be updated
139
139
  bases on robot testfile.
140
- --dryrun if set, then verify all input arguments
140
+ --dryrun if set, then verify all input arguments
141
141
  (includes RQM authentication) and show what would be done.
142
142
 
143
143
 
144
- The below command is simple usage witth all required arguments to import
144
+ The below command is simple usage witth all required arguments to import
145
145
  Robot Framework results into RQM:
146
146
 
147
147
  ::
@@ -175,25 +175,25 @@ Sample Robot testcase which contains neccessary information for importing into R
175
175
 
176
176
  *** Test Cases ***
177
177
  Testcase 01
178
- [Documentation] This test is traceable with provided tcid
178
+ [Documentation] This test is traceable with provided tcid
179
179
  [Tags] TCID-1001 FID-112 FID-111 robotfile-https://github.com/test-fullautomation
180
180
  Log This is Testcase 01
181
181
 
182
182
  Testcase 02
183
- [Documentation] This new testcase will be created if --createmissing argument
183
+ [Documentation] This new testcase will be created if --createmissing argument
184
184
  ... is provided when importing
185
185
  [Tags] FID-113 robotfile-https://github.com/test-fullautomation
186
186
  Log This is Testcase 02
187
187
 
188
- After getting ``output.xml`` result file, use below command to import that
189
- result file into testplan ID ``720`` of ``ROBFW-AIO`` project which is hosted
190
- at ``https://sample-rqm-host.com``
188
+ After getting ``output.xml`` result file, use below command to import that
189
+ result file into testplan ID ``720`` of ``ROBFW-AIO`` project which is hosted
190
+ at ``https://sample-rqm-host.com``
191
191
 
192
192
  ::
193
193
 
194
194
  RobotLog2RQM output.xml https://sample-rqm-host.com ROBFW-AIO test_user test_pw 720
195
195
 
196
- Then, open RQM with your favourite browser and you will see that the test case
196
+ Then, open RQM with your favourite browser and you will see that the test case
197
197
  execution records and their results are imported in the given testplan ID.
198
198
 
199
199
  Sourcecode Documentation
@@ -207,7 +207,7 @@ Feedback
207
207
 
208
208
  To give us a feedback, you can send an email to `Thomas Pollerspöck`_.
209
209
 
210
- In case you want to report a bug or request any interesting feature,
210
+ In case you want to report a bug or request any interesting feature,
211
211
  please don't hesitate to raise a ticket.
212
212
 
213
213
  Maintainers
@@ -232,7 +232,7 @@ Contributors
232
232
  License
233
233
  -------
234
234
 
235
- Copyright 2020-2022 Robert Bosch GmbH
235
+ Copyright 2020-2024 Robert Bosch GmbH
236
236
 
237
237
  Licensed under the Apache License, Version 2.0 (the "License");
238
238
  you may not use this file except in compliance with the License.
@@ -257,4 +257,4 @@ limitations under the License.
257
257
  .. _Nguyen Huynh Tri Cuong: mailto:Cuong.NguyenHuynhTri@vn.bosch.com
258
258
  .. _Mai Dinh Nam Son: mailto:Son.MaiDinhNam@vn.bosch.com
259
259
  .. _Tran Hoang Nguyen: mailto:Nguyen.TranHoang@vn.bosch.com
260
- .. _Holger Queckenstedt: mailto:Holger.Queckenstedt@de.bosch.com
260
+ .. _Holger Queckenstedt: mailto:Holger.Queckenstedt@de.bosch.com