Skip to content

Commit 93e918b

Browse files
author
Luiko Czub
committed
new api method removeTestCaseKeywords #46
1 parent d054b78 commit 93e918b

6 files changed

+66
-6
lines changed

CHANGES.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pull request `#36 <https://github.com/lczub/TestLink-API-Python-client/pull/36>`
1515
- Adds a new --proxy option in command line.
1616
- Recognizes "http_proxy" environment variable.
1717

18-
implement 1.9.13 new api methods #32 #41 #42 #44 #47
18+
implement 1.9.13 new api methods #32 #41 #42 #44 #47 #46
1919
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2020

2121
new TestlinkAPIGeneric and TestlinkAPIClient api methods
@@ -33,6 +33,13 @@ new TestlinkAPIGeneric and TestlinkAPIClient api methods
3333
- deleteTestPlan(<testplanid>)
3434

3535
- addTestCaseKeywords(<testcaseexternalid>, <keywords>)
36+
- Attention: with TL 1.9.14, this api method will change the interface (args)
37+
see `TL Mantis Task 6934 <http://mantis.testlink.org/view.php?id=6934>`_
38+
39+
- removeTestCaseKeywords(<testcaseexternalid>, <keywords>)
40+
- Attention: with TL 1.9.14, this api method will change the interface (args)
41+
see `TL Mantis Task 6907 <http://mantis.testlink.org/view.php?id=6907>`_
42+
3643

3744
examples see `<example/TestLinkExample.py>`_ and `<example/TestLinkExample_CF_KW.py>`_
3845

example/TestLinkExample_CF_KW.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
- testplan - testcase link
5555
could be requested via api, these example does not work currently.
5656
57-
Script adds keywords KeyWord01 KeyWord02 KeyWord03 to test case TESTCASE_B
58-
and returns the resulting keyword list
57+
Script adds keywords KeyWord01 KeyWord02 KeyWord03 to test case TESTCASE_B,
58+
removes keyword KeyWord02 again and returns the resulting keyword list.
5959
6060
"""
6161
from testlink import TestlinkAPIClient, TestLinkHelper
@@ -145,10 +145,14 @@
145145
newTestCaseID_B = response[0]['id']
146146
tc_b_full_ext_id = myTestLink.getTestCase(newTestCaseID_B)[0]['full_tc_external_id']
147147
print( "Test Case '%s' - id: %s - ext-id %s" % (NEWTESTCASE_B, newTestCaseID_B, tc_b_full_ext_id) )
148+
148149
# add keywords to TestCase B
149150
response = myTestLink.addTestCaseKeywords(tc_b_full_ext_id,
150151
['KeyWord01', 'KeyWord03', 'KeyWord02'])
151152
print( "addTestCaseKeywords", response )
153+
# remove keywords from TestCase B
154+
response = myTestLink.removeTestCaseKeywords(tc_b_full_ext_id, ['KeyWord02'])
155+
print( "removeTestCaseKeywords", response )
152156

153157

154158
# list test cases with assigned keywords

src/testlink/testlinkapigeneric.py

+19
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,26 @@ def callServerWithPosArgs(self, methodNameAPI, *argsPositional, **argsOptional):
13191319
def addTestCaseKeywords(self):
13201320
""" adds a list of keywords to a given Test case """
13211321

1322+
# /**
1323+
# * removeTestCaseKeywords
1324+
# * @param struct $args
1325+
# * @param string $args["devKey"]
1326+
# * @param string $args["testcaseexternalid"]
1327+
# * @param array $args["keywords"]: keywords
1328+
# *
1329+
# * @return mixed $resultInfo
1330+
# *
1331+
# * @internal revisions
1332+
# * @since 1.9.13
1333+
# */
1334+
# function removeTestCaseKeywords($args)
1335+
1336+
@decoApiCallAddDevKey
1337+
@decoMakerApiCallWithArgs(['testcaseexternalid', 'keywords'], [])
1338+
def removeTestCaseKeywords(self):
1339+
""" removes a list of keywords from a given Test case """
13221340

1341+
13231342
#
13241343
# internal methods for general server calls
13251344
#

src/testlink/version.py

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

20-
VERSION = '0.6.1-dev47'
20+
VERSION = '0.6.1-dev46'
2121
TL_RELEASE = '1.9.13'
2222

test/utest-online/testlinkapi_generic_online_test.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,25 @@ def test_deleteTestPlan_unknownID(self):
403403
with self.assertRaisesRegex(TLResponseError, '3000.*40000711'):
404404
self.client.deleteTestPlan(40000711)
405405

406-
def test_getTestCaseKeywords_unknownID(self):
406+
# test might fail during Travis test, cause used TestLink demo application
407+
# represents still a 1.9.13 dev state from 26/12/14
408+
# the keyword add method are added later and will be changed with 1.9.14
409+
# the interface (see TL Mantis Task 6934)
410+
@unittest.expectedFailure
411+
def test_addTestCaseKeywords_unknownID(self):
407412
with self.assertRaisesRegex(TLResponseError, '5040.*TC-40000712'):
408413
self.client.addTestCaseKeywords('TC-40000712',
409414
['KeyWord01', 'KeyWord03'])
415+
416+
# test might fail during Travis test, cause used TestLink demo application
417+
# represents still a 1.9.13 dev state from 26/12/14
418+
# the keyword remove method are added later and will be changed with 1.9.14
419+
# the interface (see TL Mantis Task 6907)
420+
@unittest.expectedFailure
421+
def test_removeTestCaseKeywords_unknownID(self):
422+
with self.assertRaisesRegex(TLResponseError, '5040.*TC-40000712'):
423+
self.client.removeTestCaseKeywords('TC-40000712',
424+
['KeyWord01'])
410425

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

test/utest-online/testlinkapi_online_test.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,25 @@ def test_deleteTestPlan_unknownID(self):
353353
with self.assertRaisesRegex(TLResponseError, '3000.*40000711'):
354354
self.client.deleteTestPlan(40000711)
355355

356-
def test_getTestCaseKeywords_unknownID(self):
356+
# test might fail during Travis test, cause used TestLink demo application
357+
# represents still a 1.9.13 dev state from 26/12/14
358+
# the keyword add method are added later and will be changed with 1.9.14
359+
# the interface (see TL Mantis Task 6934)
360+
@unittest.expectedFailure
361+
def test_addTestCaseKeywords_unknownID(self):
357362
with self.assertRaisesRegex(TLResponseError, '5040.*TC-40000712'):
358363
self.client.addTestCaseKeywords('TC-40000712',
359364
['KeyWord01', 'KeyWord03'])
365+
366+
# test might fail during Travis test, cause used TestLink demo application
367+
# represents still a 1.9.13 dev state from 26/12/14
368+
# the keyword remove method are added later and will be changed with 1.9.14
369+
# the interface (see TL Mantis Task 6907)
370+
@unittest.expectedFailure
371+
def test_removeTestCaseKeywords_unknownID(self):
372+
with self.assertRaisesRegex(TLResponseError, '5040.*TC-40000712'):
373+
self.client.removeTestCaseKeywords('TC-40000712',
374+
['KeyWord01'])
360375

361376

362377
if __name__ == "__main__":

0 commit comments

Comments
 (0)