Testlink接口使用方法-python语言远程调用

发表于:2016-7-20 10:56

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:向闸北    来源:51Testing软件测试网采编

1 deepin@deepin-pc:~/test$ cat libclienttestlink.py
2 #!/usr/bin/env python3
3 # -*- coding: utf-8 -*-
4
5 #! /usr/bin/python
6 #
7 # Testlink API Sample Python 3.1.2 getProjects() - Client implementation
8 #
9 import xmlrpc.client
10
11 class TestlinkAPIClient:
12     # substitute your server URL Here
13     SERVER_URL = "https://******************************/xmlrpc.php"
14
15     def __init__(self):
16         self.server = xmlrpc.client.ServerProxy(self.SERVER_URL)
17         self.devKey = "your user key"
18
19     def getInfo(self):
20         return self.server.tl.about()
21
22     def getProjects(self):
23         return self.server.tl.getProjects(dict(devKey=self.devKey))
24
25     def getClientTL(self):
26         return self.server.tl
27
28 client = TestlinkAPIClient()
29 tlclient = client.getClientTL()
30
31 args = {}
32 args["devKey"] = client.devKey
33 args["testplanname"] = "pythontest"
34 args["testprojectname"] = "LSTest"
35
36 client = TestlinkAPIClient()
37 tlclient = client.getClientTL()
38
39 print(client.getInfo())
40 print("-" * 80)
41 print(tlclient.getTestPlanByName(args))
  把代码中变量设置为本地环境后就可以实现远程调用Testlink了。
  输出结果:
1 deepin@deepin-pc:~/test$ python3 libclienttestlink.py
2  Testlink API Version: 1.0 initially written by Asiel Brumfield
3  with contributions by TestLink development Team
4 --------------------------------------------------------------------------------
5 [{'name': 'pythontest', 'is_public': '1', 'testproject_id': '56567', 'notes': '', 'is_open': '1', 'id': '56582', 'api_key': 'c48e5b0e375c13c847b4148fcf4e283615619e52b427c11ff023e4a7d9b78bd1', 'active': '1'}]
6 deepin@deepin-pc:~/test$
21/212>
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号