诺克和 google 地图客户端

Nock and google maps client

我正在尝试测试使用 @google/maps 客户端获取路线数据的服务。

这是该服务的简化版本:

'use strict'

const dotenv = require('dotenv')
const GoogleMaps = require('@google/maps')

dotenv.config()
const {GOOGLE_API_KEY: key} = process.env
const client = GoogleMaps.createClient({key, Promise})

const getData = exports.getData = async function({origin, destination}) {
  try {
    const options = {
      origin,
      destination,
      mode: 'transit',
      transit_mode: ['bus', 'rail']
    }
    const res = await client.directions(options).asPromise()
    return res
  } catch (err) {
    throw err
  }
}

这是一个展示案例的测试文件:

'use strict'

const dotenv = require('dotenv')
const nock = require('nock')

const gdService = require('./gd.service')

dotenv.config()
const {GOOGLE_API_KEY: key} = process.env
const response = {json: {name: 'custom'}}
const origin = {lat: 51.5187516, lng: -0.0836314}
const destination = {lat: 51.52018, lng: -0.0998361}
const opts = {origin, destination}

nock('https://maps.googleapis.com')
  .get('/maps/api/directions/json')
  .query({
    origin: `${origin.lat},${origin.lng}`,
    destination: `${destination.lat},${destination.lng}`,
    mode: 'transit',
    transit_mode: 'bus|rail',
    key
  })
  .reply(200, response)

gdService.getData(opts)
  .then(res => {
    console.log(res.json) // it's undefined!
  })
  .catch(err => {
    console.error(err)
  })

我期望得到定义的 response 作为服务方法调用的响应。但是我得到 undefined。这是为什么?

阅读 @google/maps 客户端的源代码后,我发现我必须向 nock 提供以下回复 header:

...
nock('https://maps.googleapis.com')
  .defaultReplyHeaders({
    'Content-Type': 'application/json; charset=UTF-8'
  })
  .get('/maps/api/directions/json')
  ...