fetch-mock嘲笑所有请求

时间:2017-01-26 07:34:31

标签: reactjs webpack mocking fetch fetch-mock

我正在使用fetch-mock来模拟对服务器的一些请求。这是所有请求的地方:

import fetchMock from 'fetch-mock'
import initialState from 'src/initial-state'

if (process.env.NODE_ENV === 'development') {
  fetchMock.post('/some/endpoint', initialState.entities.multichannelEngagement)
}

但不仅这个端点是模拟的,而且是使用isomorphic-fetch

进行的所有请求
import 'isomorphic-fetch'
export function makeRequest(endpoint, config = {}) {
  return window.fetch(endpoint, config)
  .then(response => {
    return response.json()
  .then(json => ({ json, response }))
  .catch(() => ({ response }))
})
.then(({ json, response }) => {
  if (!response.ok) {
    throw json ? json : new Error(response.statusText)
  } else {
    return json
  }
})
.catch((e) => {
  return Promise.reject(e)
})

}

我的webpack.config.js如下:

import path from 'path'
import dotenv from 'dotenv'
import webpack from 'webpack'
import info from './package.json'

const resolvePath = p => path.join(__dirname, p)

const __DEV__ = process.env.NODE_ENV !== 'production'

const { parsed: env } = dotenv.load()
env.NODE_ENV = process.env.NODE_ENV
Object.keys(env).forEach(k => env[k] = JSON.stringify(env[k]))

const config = {
  name: info.name,

  entry: {
    app: 'src/index',
    vendor: Object.keys(info.dependencies)
  },

  output: {
    path: __DEV__ ? resolvePath('public') : resolvePath('../analytics-server/server/public'),
    filename: '/js/[name].js',
    publicPath: '/',
    debug: __DEV__,
    pathinfo: __DEV__
  },

  module: {
    preLoaders: [{
      // NOTE: Run linter before transpiling
      test: /\.js$/,
      loader: 'eslint-loader',
      exclude: /node_modules/
    }],
    loaders: [{
      test: /\.js$/,
      loader: 'babel',
      exclude: /node_modules/
    }, {
      // TODO: Remove after upgrading to webpack 2
      test: /\.json$/,
      loader: 'json'
    }]
  },

  resolve: {
    alias: {
      src: resolvePath('src'),
      core: resolvePath('src/core'),
      components: resolvePath('src/components'),
      modules: resolvePath('src/modules'),
      services: resolvePath('src/services'),
      resources: resolvePath('src/resources'),
      locales: resolvePath('src/locales')
    },
    // NOTE: Empty string to properly resolve when providing extension
    // TODO: Remove after upgrading to webpack 2
    extensions: ['', '.js']
  },

  plugins: [
    // NOTE: `NoErrorsPlugin` causes eslint warnings to stop the build   process
    // new webpack.NoErrorsPlugin(),
    new webpack.optimize.CommonsChunkPlugin('commons', '/js/commons.js'),
    new webpack.DefinePlugin({ process: { env } })
// new webpack.NormalModuleReplacementPlugin( /^fetch-mock$/, path.resolve( __dirname, 'node_modules', 'fetch-mock/src/client.js' ) )
  ],

  eslint: {
    configFile: resolvePath('.eslintrc')
  }
}

if (__DEV__) {
  config.devtool = 'source-map'

  config.devServer = {
    contentBase: 'public',
    // NOTE: Options `inline` and `hot` shall be passed as CLI arguments
    // inline: true,
    // hot: true,
    historyApiFallback: true
  }
} else {
  config.plugins.push(...[
    new webpack.optimize.DedupePlugin(),
    new webpack.optimize.OccurenceOrderPlugin(),
    new webpack.optimize.UglifyJsPlugin({
      compress: true,
      acorn: true
    })
  ])
}

export default config

我运行应用程序时遇到的错误是 “fetch-mock.js:93未捕获错误:没有为GET定义回复响应http://localhost:3000/api/session” 这是应用程序中的第一个请求。

不知道为什么fetch-mock会嘲笑所有请求。在chrome控制台上进行评估时,makeRequest函数上fetch的值是fetch-mock函数,但据我所知这是正确的。

顺便说一句,我不是在测试环境,我正在开发,因为我需要我的后端嘲笑,因为它还没有完成。

知道为什么会这样吗?

提前致谢

2 个答案:

答案 0 :(得分:4)

问题是由于catch的主要目标是帮助测试。在测试环境中,如果您为任何非模拟的调用获得异常,则会更好。

但是,您可以添加委托给原始fetch的{​​{1}}处理程序,以便将任何非模拟请求传递给实际提取。如下所示:

/* FAKE FETCH ME */
  fetchMock.get('/session', function getSession(url, opts) {
    const jwt = extractToken(opts)
    if (!jwt || jwt !== fakeToken) {
      return delay({
        status: 401,
        body: JSON.stringify({
          details: 'Unauthorized'
        })
      })
    }
    return delay({
      status: 200,
      body: JSON.stringify({
        success: true,
        data: fakeUserDetails
      })
    })
  })
  .catch(unmatchedUrl => {
    // fallover call original fetch, because fetch-mock treats
    // any unmatched call as an error - its target is testing
    return realFetch(unmatchedUrl)
  })

该库曾经有一个选项,但它已在V5中删除。请参阅此处的文档:

  

在以前的版本中,fetch-mock有一个greed属性,设置为

     
      
  • 好 - 不匹配的电话以200
  • 回应   
  • bad - 不匹配的通话错误
  •   
  • none - 允许不匹配的调用以使用本机提取和网络
  •   
     

现在已经被接受相同的.catch()方法取代了   作为对.mock(匹配器,响应)的正常调用的响应类型。它可以   还采取任意函数来完全自定义行为   无与伦比的电话。它是可链接的,可以在之前或之后调用   其他调用.mock()。检查无法匹配的呼叫的api仍然存在   不变。

https://github.com/wheresrhys/fetch-mock/blob/master/V4_V5_UPGRADE_NOTES.md#handling-unmatched-calls-greed

答案 1 :(得分:0)

自fetch-mock v.6.5版本以来,有一个名为fallbackToNetwork的新配置属性,可让您控制fetch-mock处理未处理(未匹配)的调用的方式

http://www.wheresrhys.co.uk/fetch-mock/#usageconfiguration