我试图使用karma服务器和nock创建一些基本测试。 似乎nock根本没有拦截我的请求,有没有人有想法?我无法弄清楚遗漏了什么。我仍然得到真实的数据。
nock('https://api.github.com/users/' + username).log(console.log)
.get('/')
.query(true)
.reply(400, {
statusMessage: 'Bad Request',
foo: 'foo'
})
http.get('https://api.github.com/users/' + username, function(res) {
console.log('res', res)
})
我还添加了这个中间件
const middlewares = [thunk];
const mockStore = configureStore(middlewares);
====== 6月6日更新======
使用react-redux的全流程 这是我的测试:
import configureStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import axios from 'axios';
import expect from 'expect';
import * as actions from 'actions/test-actions'
import * as types from 'types';
import nock from 'nock'
import { username } from 'constansts'
const middlewares = [thunk];
const mockStore = configureStore(middlewares);
describe('Asynchronous actions', () => {
it('Basic example', done => {
nock('https://api.github.com')
.get('/users/' + username)
.reply(400, {
statusMessage: 'Bad Request',
foo: 'foo'
})
var expectedActions = []
let store = mockStore([], expectedActions, done)
store.dispatch(actions.testRequest())
.then(() => {
console.log('store.getActions() => ', store.getActions())
})
.then(done).catch((err) => {
console.log('ERROR==>', err)
done()
})
})
})
这是行动
export function testRequest () {
return axios.get('https://api.github.com/users/' + username)
.then(function (res) {
console.log('response =>', res.status)
})
.catch(function (err) {
console.log('error =>', err)
})
}
res.status是200,即使我使用nock更改为400
答案 0 :(得分:0)
您应该在get
方法中指定路径:
nock('https://api.github.com').log(console.log)
.get('/users/' + username)
.query(true)
.reply(400, {
statusMessage: 'Bad Request',
foo: 'foo'
});
答案 1 :(得分:0)
我找到了答案!
显然,没有与axios的兼容性,我也尝试过' fetch',' isomorphic-fetch'但没有运气。
' WHATWG取'是答案
非常感谢,我希望这篇文章可以帮助其他人。
import 'whatwg-fetch'
export function testRequest () {
return fetch('https://api.github.com/users/' + username)
.then(function (res) {
console.log('response =>', res.status)
})
.catch(function (err) {
console.log('error =>', err)
})
}
答案 2 :(得分:0)
您是在节点环境中还是在Web浏览器(如PhantomJS)中运行测试?
为了使用nock,你必须在节点中运行测试(使用Jest或mocha),nock覆盖节点http行为,因此它只能在节点中工作,而不能在浏览器中工作(如PhantomJS)。
要让您的测试运行,您可以:
答案 3 :(得分:0)
这是一个古老的问题,但我相信答案是您需要设置axios
http适配器:
import axios from 'axios';
axios.defaults.adapter = require('axios/lib/adapters/http');
使用jest
运行测试时,通常会在“类似浏览器”的环境中运行它们。要使axios使用节点http库,您需要专门告诉它使用http
适配器。