1

我正在使用 nock 来拦截对我的 API 主机的调用,并在返回响应之前进行一些本地数据库查找。

请参考以下代码。我拦截对“入口点”的调用,并希望回复从本地数据存储中获取的数据。

我相信这是 nock 模块本身的问题,我很少听到使用流的建议。你能帮忙解决这个问题吗?

// ... Code Block

var nock = require('nock'),
    request = require('request'),
    DataStore = require('nedb'),
    db = new DataStore({filename: './nedb.data'});

db.loadDatabase(function(err) {
    if (err) throw err;
});

db.insert ({'record1': { "key1" : "value1"} });
db.insert ({'record2': { "key2" : "value2"} });
db.insert ({'record3': { "key3" : "value3"} });
db.insert ({'record4': { "key4" : "value4"} });
db.insert ({'record5': { "key5" : "value5"} });

var n = nock('http://localhost:8000')
            .get ('/entrypoint')
            .reply (200, function () {
                db.find ({}, function(err, docs) {
                    if (err) throw err;
                    return docs;
                });
            });

request('http://localhost:8000/entrypoint', function (error, response, body) {
    if (!error && response.statusCode == 200) {
        console.log ('\nBEGIN: Body: ');
        console.log(body);
        console.log ('\n\nEND: Body: \n\n');
    }
});
4

1 回答 1

1

目前不可能,我已经创建了这个错误来开始修复这个问题。

https://github.com/pgte/nock/issues/283

于 2015-03-13T16:45:40.443 回答