2023-03-21 16:56:42 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
/**
|
|
|
|
|
* This file is part of Hyperf.
|
|
|
|
|
*
|
|
|
|
|
* @link https://www.hyperf.io
|
|
|
|
|
* @document https://hyperf.wiki
|
|
|
|
|
* @contact group@hyperf.io
|
|
|
|
|
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test;
|
|
|
|
|
|
|
|
|
|
use Hyperf\Testing\Client;
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class HttpTestCase.
|
|
|
|
|
* @method get($uri, $data = [], $headers = [])
|
|
|
|
|
* @method post($uri, $data = [], $headers = [])
|
|
|
|
|
* @method json($uri, $data = [], $headers = [])
|
|
|
|
|
* @method file($uri, $data = [], $headers = [])
|
|
|
|
|
* @method request($method, $path, $options = [])
|
|
|
|
|
*/
|
|
|
|
|
abstract class HttpTestCase extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var Client
|
|
|
|
|
*/
|
|
|
|
|
protected Client $client;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string|null $name
|
|
|
|
|
* @param array<int, mixed> $data
|
|
|
|
|
* @param int|string $dataName
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(?string $name = null, array $data = [], int|string $dataName = '')
|
|
|
|
|
{
|
|
|
|
|
parent::__construct($name, $data, $dataName);
|
|
|
|
|
$this->client = make(Client::class);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-10 18:30:31 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $name
|
|
|
|
|
* @param array<string, mixed> $arguments
|
|
|
|
|
* @return array<string, mixed>
|
|
|
|
|
*/
|
|
|
|
|
public function __call(string $name, array $arguments): array
|
2023-03-21 16:56:42 +08:00
|
|
|
{
|
|
|
|
|
return $this->client->{$name}(...$arguments);
|
|
|
|
|
}
|
|
|
|
|
}
|