首页 > 解决方案 > 替换路径dredd钩子中的ID

问题描述

我有这个 dredd.yml 配置文件:

paths:
  "/network":
    get:
      produces:
      - application/json;charset=utf-8
      responses:
        '200':
          description: Ok 
          schema:
            "$ref": "#/definitions/NetworkResponse"
  "/network/{id}":
    get:
      produces: 
        - application/json;charset=utf-8
      parameters:
      - name: id
        in: path
        description: id
        required: true
        type: string
        enum: 
          - "net-76faddf092e62151"
      responses:
        '200':
          description: Ok
          schema:
            "$ref": "#/definitions/NetworkIdResponse"

我想{id}用 python dredd 钩子替换路径。我试过这样:

import json
import dredd_hooks as hooks

response_stash = {}

@hooks.after("Networks > ALL ")
def save_network_id_to_stash(transaction):
    # save HTTP response with IDs to the stash
    response_stash[transaction['id']] = transaction['id']
    print(transaction['id'])

@hooks.before("Networks > ID")
def add_network_id_to_request(transaction):
    parsed_body = json.loads(response_stash['Networks > ALL'])
    network_id = parsed_body['id']
    transaction['fullPath'] = transaction['fullPath'].replace('net-76faddf092e62151', network_id)

测试执行成功,但只有 1 个 id。第一个操作的答案输出一个包含对象的列表,其中 id 在 ['id'] 中。如何替换{id}路径并对所有网络进行测试?

标签: pythonswaggerdredd

解决方案


@hooks.before("Networks > ID > 200 > application/json;charset=utf-8)

它是钩子名称的正确定义。

您可以看到所有变量transaction['real']transaction['name']以及一个带有 print(transaction)挂钩函数的变量。


推荐阅读