0

几天来我一直在尝试解决这个问题;使用 mocha 为这种情况创建测试:

app.post('/approval', function(req, response){
request.post('https://git.ecommchannel.com/api/v4/users/' + req.body.content.id + '/' + req.body.content.state + '?private_token=blabla', function (error, resp, body) {
    if (resp.statusCode == 201) {
                //do something
            } else {
                response.send("failed"), response.end();
            }
        });  
    } else {
        response.send("failed"), response.end();
    }
});

});

我尝试了几种方法,使用 supertest 来测试 '/approval' 并使用 nock 来测试对 git api 的 post 请求。但它总是把“statusCode”变成未定义的。我认为这是因为 index.js 中对 git api 的请求不在某个函数内(?)所以我无法实现这样的东西: https ://codeburst.io/testing-mocking-http-requests-with- nock-480e3f164851https://scotch.io/tutorials/nodejs-tests-mocking-http-requests

    const nockingGit = () => {
    nock('https://git.ecommchannel.com/api/v4/users')
        .post('/1/yes', 'private_token=blabla')
        .reply(201, { "statusCode": 201 });
};

it('approval', (done) => {
let req = {
    content: {
        id: 1,
        state: 'yes'
    },
    _id: 1
}
request(_import.app)
    .post('/approval')
    .send(req)
    .expect(200)
    .expect('Content-Type', /html/)
    .end(function (err, res) {
        if (!err) {
            nockingGit();  
        } else {
            done(err);
        }
    });
done();

})

然后我尝试使用 supertest 作为承诺

    it('approve-block-using-promise', () => {
       return promise(_import.app)
        .post('/approval')
        .send(req = {
            content: {
                id: 1,
                state: 'yes'
            },
            _id: 1
        })
        .expect(200)
        .then(function(res){
            return promise(_import.app)
            .post("https://git.ecommchannel.com/api/v4/users/")
            .send('1/yes', 'private_token=blabla')
            .expect(201);
        })
})

但它给出了错误: ECONNEREFUSED:连接被拒绝。我没有找到解决该错误的任何解决方案。一些消息来源说它需要 done() .. 但它给出了另一个错误消息,'确保调用“done()”“>。<

那么我找到了另一种方法,使用异步(https://code-examples.net/en/q/141ce32

    it('should respond to only certain methods', function(done) {
    async.series([
        function(cb) { request(_import.app).post('/approval')
        .send(req = {
            content: {
                id: 1,
                state: 'yes'
            },
            _id: 1
        })
        .expect(200, cb); },
        function(cb) { request(_import.app).post('/https://git.ecommchannel.com/api/v4/users/').send('1/yes', 'private_token=blabla').expect(201, cb); },
    ], done);
});

它给出了这个错误:预期 201“已创建”,得到 404“未找到”。好吧,如果我在浏览器中打开https://git.ecommchannel.com/api/v4/users/1/yes?private_token=blabla它确实返回 404。但我期望的是我已经从单元测试;所以无论实际响应是什么,statusCode 都应该是 201,对吧?但是既然它给出了那个错误,这是否意味着单元测试真的将请求发送到api?请帮我解决这个问题;如何测试我分享的第一个代码。我真的是单元测试的新手。

4

1 回答 1

0

您发布的代码有一些问题,我会尝试列出它们,但我还在下面提供了一个完整的传递示例。

首先,您git.ecommchannel在控制器中调用,它是一个没有正文的 POST。虽然这不会导致您看到的错误并且在技术上不正确,但它很奇怪。所以你应该仔细检查你应该发送的数据是什么。

接下来,我假设这是您创建问题时的复制/粘贴问题,但控制器中请求的回调不是有效的 JS。括号不匹配,发送“失败”出现两次。

您的 Nock 设置有两个问题。首先,参数 tonock应该只有起源,没有路径。所以/api/v4/users不得不移到post方法的第一个参数中。另一个问题是传递给post它的第二个参数是 POST 正文的可选匹配。如上所述,您当前没有发送正文,因此 Nock 将始终无法匹配并替换该请求。在下面的示例中,private_token已移动 以匹配请求的查询字符串,正如所显示的那样。

的召唤nockingGit发生得太晚了。在您使用 Supertest 调用您的 Express 应用程序之前,Nock 需要注册模拟。你已经在end方法中调用了它,到那时为时已晚。

标记approve-block-using-promise为第二次调用应用程序的测试存在问题。它post通过 Express 应用程序上的 Supertest 调用,但是,该post方法的第一个参数是您对应用程序发出的请求的路径。它与调用无关git.ecommchannel。因此,在这种情况下,您的 Express 应用程序应该返回 404 Not Found。

const express = require('express')
const nock = require('nock')
const request = require('request')
const supertest = require('supertest')

const app = express()
app.use(express.json())

app.post('/approval', function(req, response) {
  const url = 'https://git.ecommchannel.com/api/v4/users/' + req.body.content.id + '/' + req.body.content.state
  request.post({
      url,
      qs: {private_token: 'blabla'}
      // body: {} // no body?
    },
    function(error, resp, body) {
      if (error) {
        response.status(500).json({message: error.message})
      } else if (resp.statusCode === 201) {
        response.status(200).send("OK")
      } else {
        response.status(500).send("failed").end();
      }
    });
});

const nockingGit = () => {
  nock('https://git.ecommchannel.com')
    .post('/api/v4/users/1/yes')
    .query({private_token: 'blabla'})
    .reply(201, {"data": "hello world"});
};

it('approval', (done) => {
  const reqPayload = {
    content: {
      id: 1,
      state: 'yes'
    },
    _id: 1
  }

  nockingGit();

  supertest(app)
    .post('/approval')
    .send(reqPayload)
    .expect(200)
    .expect('Content-Type', /html/)
    .end(function(err) {
      done(err);
    })
})
于 2019-11-11T15:00:48.873 回答