Skip to content

Commit 102c2a7

Browse files
author
Luiko Czub
committed
new api method getTestCaseAssignedTester #29
1 parent 5146232 commit 102c2a7

7 files changed

+107
-7
lines changed

CHANGES.rst

+14-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,18 @@ TestLink-API-Python-client UNDER DEVELOP v0.5.2
55
-----------------------------------------------------------
66
support for future TL 1.9.12 release
77

8-
implement 1.9.12 new api - getTestCaseBugs #30
8+
implement 1.9.12 new api method - getTestCaseAssignedTester #29
9+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10+
11+
new TestlinkAPIGeneric and TestlinkAPIClient api method
12+
13+
- getTestCaseAssignedTester(<testplanid>, <testcaseexternalid>,
14+
[buildid=<buildid>], [buildname=<buildname>], [platformid=<platformid>],
15+
[platformname=<platformname>], [devKey=<devKey>])
16+
17+
examples see `<example/TestLinkExample.py>`_
18+
19+
implement 1.9.12 new api method - getTestCaseBugs #30
920
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1021

1122
new TestlinkAPIGeneric and TestlinkAPIClient api method
@@ -14,10 +25,9 @@ new TestlinkAPIGeneric and TestlinkAPIClient api method
1425
[testcaseid]=<testcaseid>], [testcaseexternalid=<testcaseexternalid>],
1526
[buildid=<buildid>], [buildname=<buildname>], [platformid=<platformid>],
1627
[platformname=<platformname>], [devKey=<devKey>])
17-
18-
examples see `<example/TestLinkExample.py>`_
19-
2028

29+
examples see `<example/TestLinkExample.py>`_
30+
2131
TestLink-API-Python-client release notes v0.5.1 (Aug. 2014)
2232
------------------------------------------------------------
2333

example/TestLinkExample.py

+19-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,21 @@
428428
newTestPlanID_A, tc_b_full_ext_id,
429429
buildname=NEWBUILD_A, platformname=NEWPLATFORM_B)
430430
print "assignTestCaseExecutionTask", response
431-
431+
432+
# get test case assigned tester
433+
response = myTestLink.getTestCaseAssignedTester(
434+
newTestPlanID_A, tc_aa_full_ext_id,
435+
buildid=newBuildID_A, platformname=NEWPLATFORM_A)
436+
print "getTestCaseAssignedTester TC_AA TP_A Platform A", response
437+
response = myTestLink.getTestCaseAssignedTester(
438+
newTestPlanID_A, tc_aa_full_ext_id,
439+
buildname=NEWBUILD_A, platformid=newPlatFormID_B)
440+
print "getTestCaseAssignedTester TC_AA TP_A Platform B", response
441+
response = myTestLink.getTestCaseAssignedTester(
442+
newTestPlanID_A, tc_b_full_ext_id,
443+
buildname=NEWBUILD_A, platformname=NEWPLATFORM_B)
444+
print "getTestCaseAssignedTester TC_B TP_A Platform B", response
445+
432446
# get bugs for test case TC_AA in test plan A - state TC not executed
433447
response = myTestLink.getTestCaseBugs(newTestPlanID_A,
434448
testcaseexternalid=tc_aa_full_ext_id)
@@ -487,6 +501,10 @@
487501
newTestPlanID_B, tc_b_full_ext_id, buildname=NEWBUILD_B)
488502
print "assignTestCaseExecutionTask", response
489503

504+
# get test case assigned tester
505+
response = myTestLink.getTestCaseAssignedTester(
506+
newTestPlanID_B, tc_b_full_ext_id, buildname=NEWBUILD_B)
507+
print "getTestCaseAssignedTester TC_B TP_B no Platform", response
490508

491509
# TC_B blocked (without platform), explicit build and some notes ,
492510
# TC identified with internal id, report by myTestUserName

example/TestLinkExampleGenericApi.py

+19
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,20 @@
353353
buildname=NEWBUILD_A, platformname=NEWPLATFORM_B)
354354
print "assignTestCaseExecutionTask", response
355355

356+
# get test case assigned tester
357+
response = myTestLink.getTestCaseAssignedTester(
358+
newTestPlanID_A, tc_aa_full_ext_id,
359+
buildid=newBuildID_A, platformname=NEWPLATFORM_A)
360+
print "getTestCaseAssignedTester TC_AA TP_A Platform A", response
361+
response = myTestLink.getTestCaseAssignedTester(
362+
newTestPlanID_A, tc_aa_full_ext_id,
363+
buildname=NEWBUILD_A, platformid=newPlatFormID_B)
364+
print "getTestCaseAssignedTester TC_AA TP_A Platform B", response
365+
response = myTestLink.getTestCaseAssignedTester(
366+
newTestPlanID_A, tc_b_full_ext_id,
367+
buildname=NEWBUILD_A, platformname=NEWPLATFORM_B)
368+
print "getTestCaseAssignedTester TC_B TP_A Platform B", response
369+
356370
# get bugs for test case TC_AA in test plan A - state TC not executed
357371
response = myTestLink.getTestCaseBugs(newTestPlanID_A,
358372
testcaseexternalid=tc_aa_full_ext_id)
@@ -412,6 +426,11 @@
412426
newTestPlanID_B, tc_b_full_ext_id, buildname=NEWBUILD_B)
413427
print "assignTestCaseExecutionTask", response
414428

429+
# get test case assigned tester
430+
response = myTestLink.getTestCaseAssignedTester(
431+
newTestPlanID_B, tc_b_full_ext_id, buildname=NEWBUILD_B)
432+
print "getTestCaseAssignedTester TC_B TP_B no Platform", response
433+
415434
# TC_B in test plan b (without platform)
416435
# first try failed (with bug), second blocked - all by user myTestUserName
417436
newResult = myTestLink.reportTCResult(newTestPlanID_B, 'f',

src/testlink/testlinkapigeneric.py

+41
Original file line numberDiff line numberDiff line change
@@ -1046,6 +1046,7 @@ def assignTestCaseExecutionTask(self):
10461046
""" assigns a user to a test case execution task
10471047
10481048
user login name => tester
1049+
testplanid test plan id
10491050
testcaseexternalid format PREFIX-NUMBER
10501051
10511052
args variations: buildid - buildname
@@ -1110,6 +1111,46 @@ def getTestCaseBugs(self):
11101111
test case information is general mandatory
11111112
"""
11121113

1114+
# /**
1115+
# * Gets the result of LAST EXECUTION for a particular testcase on a test plan.
1116+
# * If there are no filter criteria regarding platform and build,
1117+
# * result will be get WITHOUT checking for a particular platform and build.
1118+
# *
1119+
# * @param struct $args
1120+
# * @param string $args["devKey"]
1121+
# * @param int $args["tplanid"]
1122+
# * @param string $args["testcaseexternalid"] format PREFIX-NUMBER
1123+
# * @param int $args["buildid"] Mandatory => you can provide buildname as alternative
1124+
# * @param int $args["buildname"] Mandatory => you can provide buildid (DB ID) as alternative
1125+
# * @param int $args["platformid"] optional - BECOMES MANDATORY if Test plan has platforms
1126+
# * you can provide platformname as alternative
1127+
# *
1128+
# * @param int $args["platformname"] optional - BECOMES MANDATORY if Test plan has platforms
1129+
# * you can provide platformid as alternative
1130+
# *
1131+
# *
1132+
# * @return mixed $resultInfo
1133+
# *
1134+
# * @access public
1135+
# */
1136+
# public function getTestCaseAssignedTester($args)
1137+
1138+
@decoApiCallAddDevKey
1139+
@decoMakerApiCallWithArgs(['testplanid', 'testcaseexternalid'],
1140+
['buildid', 'buildname', 'platformid', 'platformname'])
1141+
def getTestCaseAssignedTester(self):
1142+
""" Gets the result of LAST EXECUTION for a particular testcase on a
1143+
test plan.
1144+
1145+
testplanid test plan id
1146+
testcaseexternalid format PREFIX-NUMBER
1147+
1148+
args variations: buildid - buildname
1149+
platformid - platformname
1150+
build information is general mandatory
1151+
platform information is required, when test plan has assigned platforms
1152+
"""
1153+
11131154
#
11141155
# public methods for general server calls
11151156
#

src/testlink/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.5.2-dev30'
20+
VERSION = '0.5.2-dev29'
2121
TL_RELEASE = 'DEV 1.9.12 (gitorious 9ca61c8)'
2222

test/utest-online/testlinkapi_online_test.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,12 @@ def test_getTestCaseBugs_unknownID(self):
304304
buildname='build 4713',
305305
platformname='platform 4714')
306306

307-
307+
def test_getTestCaseAssignedTester_unknownID(self):
308+
with self.assertRaisesRegexp(TLResponseError, '3000.*4711'):
309+
self.client.getTestCaseAssignedTester(4711, 'TC-4712',
310+
buildname='build 4713',
311+
platformname='platform 4714')
312+
308313

309314
if __name__ == "__main__":
310315
#import sys;sys.argv = ['', 'Test.testName']

test/utest-online/testlinkapigeneric_online_test.py

+7
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,13 @@ def test_getTestCaseBugs_unknownID(self):
356356
self.client.getTestCaseBugs(4711, testcaseexternalid='TC-4712',
357357
buildname='build 4713',
358358
platformname='platform 4714')
359+
360+
def test_getTestCaseAssignedTester_unknownID(self):
361+
with self.assertRaisesRegexp(TLResponseError, '3000.*4711'):
362+
self.client.getTestCaseAssignedTester(4711, 'TC-4712',
363+
buildname='build 4713',
364+
platformname='platform 4714')
365+
359366

360367
if __name__ == "__main__":
361368
#import sys;sys.argv = ['', 'Test.testName']

0 commit comments

Comments
 (0)