0

我有 curl 命令,但不确定如何在 python 脚本中运行它。

curl -H "Content-Type: application/json" -u "username:password" -d '{ "name":"something" }' "https://xxxxxxxx"

我打算使用子流程,但是 api 文档不是很有帮助。

还有人知道如何从 testrail 中获取 sectionId 吗?

4

2 回答 2

1

来自 TestRail 的比尔在这里。您可以在此处找到我们的 Python 绑定的链接:

http://docs.gurock.com/testrail-api2/bindings-python

关于获取部分 ID,您可以使用项目/套件的 get_sections 方法返回所有部分详细信息,包括 ID。您可以在此处找到更多信息:

http://docs.gurock.com/testrail-api2/reference-sections#get_sections

如果您要查找特定测试用例的部分 ID,可以从 get_case 方法中获取。

于 2015-07-08T08:16:27.417 回答
0

您可能想为此使用该requests软件包。curl 命令转换为如下内容:

import json
import requests

response = requests.post('https://xxxxxxxx',
                         data=json.dumps({'name': 'something'}),
                         headers={'Content-Type': 'application/json'},
                         auth=('username', 'password'))
response_data = response.json()

如果你真的想使用subprocess,你可以这样做:

import subprocess

curl_args = ['curl', '-H', 'Content-Type: application/json', '-u', 'username:password',
             '-d', '{ "name":"something" }', 'https://xxxxxxxx']
curl_output = subprocess.check_output(curl_args)

我认为后一种方法不那么“Pythonic”。

于 2015-07-08T06:16:40.047 回答