I am getting this Error: Invalid URI "mycompany.testrail.io/index.php?/api/v2/get_cases/39" when integrating with cucumber -supertest

huangapple go评论149阅读模式
英文:

I am getting this Error: Invalid URI "mycompany.testrail.io/index.php?/api/v2/get_cases/39" when integrating with cucumber -supertest

问题

当我在浏览器中访问mycompany.testrail.io/index.php?/api/v2/get_cases/39时,我会收到包含所有所需详细信息的JSON响应。

当我在终端中使用curl(不太了解curl)输入相同的内容时,我收到以下响应:

  1. `>> curl mycompany.testrail.io/index.php?/api/v2/get_cases/39
  2. <html>
  3. <head><title>301 Moved Permanently</title></head>
  4. <body>
  5. <center><h1>301 Moved Permanently</h1></center>
  6. </body>
  7. </html>`

在浏览器中我可以获得所有响应。

我怀疑这与授权有关:

  1. const TestRail = require('testrail-api');
  2. const config = require('../../cucumber/support/config.json');
  3. const testRail = new TestRail({
  4. host: config.testRail.host,
  5. user: config.testRail.user,
  6. password: config.testRail.apiKey
  7. });
  8. function getAlltestCases(projectid){
  9. testRail.getCases(projectid,function (err, response, cases) {
  10. console.log(response);
  11. console.log(err);
  12. console.log(cases);
  13. });
  14. }
  15. module.exports = getAlltestCases;

配置文件中包含了我的TestRail API密钥,该密钥在TestRail中以名称"supertest"生成(可疑吗?因为只有在我将密钥命名为"Newman"后,我的Newman代码才成功)。

格式如下:

  1. `用户名 - mytestrail@email.com
  2. API密钥 - mysecretapikeyfromtestrail.io
  3. 我的域名 - mycompany.testrail.io`

步骤定义如下:

  1. ...
  2. Then('get all test cases', function () {
  3. const projectid = 39
  4. console.log("this worked?")
  5. getAlltestCases(projectid);
  6. });

在BDD中调用如下:

  1. ...
  2. Then get all test cases

当运行npm run test时,我在控制台上收到以下错误:

I am getting this Error: Invalid URI "mycompany.testrail.io/index.php?/api/v2/get_cases/39" when integrating with cucumber -supertest

英文:

When I get mycompany.testrail.io/index.php?/api/v2/get_cases/39 in browser I do get a json response with all the needed detail.

When I give the same in terminal with curl (not very knowledgeable in curl) I get:

  1. `>> curl mycompany.testrail.io/index.php?/api/v2/get_cases/39
  2. <html>
  3. <head><title>301 Moved Permanently</title></head>
  4. <body>
  5. <center><h1>301 Moved Permanently</h1></center>
  6. </body>
  7. </html>`

and in browser I am getting all the response.

I suspect this has to do something with authorization:

  1. const TestRail = require('testrail-api');
  2. const config = require('../../cucumber/support/config.json');
  3. const testRail = new TestRail({
  4. host: config.testRail.host,
  5. user: config.testRail.user,
  6. password: config.testRail.apiKey
  7. });
  8. function getAlltestCases(projectid){
  9. testRail.getCases(projectid,function (err, response, cases) {
  10. console.log(response);
  11. console.log(err);
  12. console.log(cases);
  13. });
  14. }
  15. module.exports = getAlltestCases;

where the config files do contain my testrailapikey generated in testrail with name supertest -(suspicious!? Because. My newman code only successed after creating the key as 'Newman')

in the format

  1. `username - mytestrail@email.com
  2. apikey -mysecretapikeyfromtestrail.io
  3. my domain - mycompany.testrail.io`

and step definition as

  1. ...
  2. Then('get all test cases', function () {
  3. const projectid = 39
  4. console.log("this worked?")
  5. getAlltestCases(projectid);
  6. });

called in BDD as

  1. ...
  2. Then get all test cases

... And when call the npm run test

I am getting this in console.

I am getting this Error: Invalid URI "mycompany.testrail.io/index.php?/api/v2/get_cases/39" when integrating with cucumber -supertest

答案1

得分: 1

你的TestRail对象中有一个格式不正确的URL,请在开头添加https://以修复它。

英文:

You have a malformed URL in TestRail object, add https:// in the beginning to fix it

huangapple
  • 本文由 发表于 2023年7月13日 21:05:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/76679709.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定