ensi/laravel-openapi-testing 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ensi/laravel-openapi-testing

最新稳定版本:0.4.3

Composer 安装命令:

composer require ensi/laravel-openapi-testing

包简介

laravel openapi testing

README 文档

README

Latest Version on Packagist Tests Total Downloads

This packages is based on ensi/openapi-httpfoundation-testing and provides ValidatesAgainstOpenApiSpec trait

Installation

You can install the package via composer:

composer require ensi/laravel-openapi-testing --dev

Version Compatibility

Laravel OpenApi Testing PHP
^0.1.0 ^8.0
^0.2.0 ^8.0
^0.3.0 ^8.0
^0.4.0 ^8.1

Basic usage

Let's add validation according to oas3 to our tests. All we need is to use ValidatesAgainstOpenApiSpec; and implement getOpenApiDocumentPath(): string method like that:

class SomeTestCase extends AnotherTestCase
{
    use ValidatesAgainstOpenApiSpec;

    protected function getOpenApiDocumentPath(): string
    {
        return public_path('api-docs/v1/index.yaml');
    }
}

The trait overrides $this->call method to add the needed validation As a result all http related helper methods ($this->get(), $this->postJson() and e.t.c) perform the validation too. Both request and response is validated to match some part of the given spec. If validation fails your tests is automatically marked as failed, no need to need any manual assertions.

Turning validation off

In some cases you may want to turn validation for a specific request. Here is an example how to do it:

// Turn off validation for both request
$this->skipNextOpenApiRequestValidation()->getJson(...);

// Turn off validation for both response
$this->skipNextOpenApiResponseValidation()->getJson(...);

// Turn off validation for both request and response
$this->skipNextOpenApiValidation()->getJson(...);

Mapping paths

In order to validate request against oas3 the package need to map it to one of the paths described in specification document. We use path from Laravel's route ($request->route()->uri) for that purpose. If it does not fully match in your case you can explicitly set OpenApi path for the current request like that:

$this->forceOpenApiPath('/pets/{petId}')->getJson(...);

Contributing

Please see CONTRIBUTING for details.

Testing

  1. composer install
  2. composer test

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 63.46k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-10-05