如何使用 Rswag UI 设置承载令牌参数来测试 Rails API

Sgt*_*per 3 ruby rspec ruby-on-rails swagger-ui rswag

我在使用 Rswag UI gem 测试 API 时遇到问题。在参数字段中输入令牌后,似乎未在 UI 中正确设置授权标头。尽管如此,当我在终端中运行测试时,测试本身正在通过,并且端点正在被命中。请查看下面所附的图片以了解更多信息。

我的身份验证方法如下所示application_controller

def authenticate!
    authenticate_or_request_with_http_token do |token, _|
      @auth = ApiKey.exists?(access_token: token)
    end
end
Run Code Online (Sandbox Code Playgroud)

安全swagger_helper定义如下所示

  securityDefinitions: {
    Bearer: {
      description: '...',
      type: :apiKey,
      name: 'Authorization',
      in: :header
    }
  }
Run Code Online (Sandbox Code Playgroud)

通过的测试如下所示:

require 'swagger_helper'

RSpec.describe 'Api::V1::Events', type: :request do

  let(:access_token) { FactoryBot.create(:api_key).access_token }
  let(:Authorization) { "Bearer #{access_token}" }

  path '/v1/events' do
    post 'Creates an event' do
      tags 'Events'
      consumes 'application/json'
      security [Bearer: {}]
      parameter name: :Authorization, in: :header, type: :string
      parameter name: :event, in: :body, schema: {
          type: :object,
          properties: {
              name: { type: :string },
              description: { type: :string },
              date: { type: :string },
              time: { type: :string }
          },
          required: [ 'name', 'description', 'date', 'time' ]
      }

      response '201', 'created' do
        let(:event) { { name: 'foo', description: 'bar', date: '2020-09-24', time: '00:00:00' } }
        run_test!
      end
    end
   end
 end
Run Code Online (Sandbox Code Playgroud)

这是我正在努力解决的问题:parameter name: :Authorization, in: :header, type: :string我尝试过不同的类型,例如,,http并且stringapiKey没有运气

Swager UI 应返回的 Curl 应如下所示:

curl -X POST "http://localhost:3000/v1/events" -H "accept: */*" -H 'Authorization: Bearer ab4d77e61a5ccdc402sb75867328ea77' -H "Content-Type: application/json" -d "{\"name\":\"string\",\"description\":\"string\",\"date\":\"string\",\"time\":\"string\"}"
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

Sgt*_*per 9

我根据收到的评论找到了解决方案。Authorize我在 swagger UI 中没有看到该按钮。所以我基本上在swagger_helper其他文件中做了一些更新

我改变了这个:

  'v1/swagger.yaml' => {
      openapi: '3.0.1',
   ...
Run Code Online (Sandbox Code Playgroud)

对此

  'v1/swagger.json' => {
      swagger: '2.0',
      ....
   }
Run Code Online (Sandbox Code Playgroud)

另外在文件的底部我更改config.swagger_format = :yamlconfig.swagger_format = :json

然后我运行以下命令:rswag:specs:swaggerize生成 json 文件

我还对初始化程序进行了更新, c.swagger_endpoint '/api-docs/v1/swagger.yaml', 'API V1 Docs'c.swagger_endpoint '/api-docs/v1/swagger.json', 'API V1 Docs'

最后,我重新启动服务器,我能够看到上面提到的输入令牌的按钮。