From ff983a42f51c8fa7bdd32fe939fba932457cfe09 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 21 Mar 2025 20:16:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=20httpclient=20?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E7=9A=84=20token=20=E5=8F=82=E6=95=B0?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=E7=94=A8=E6=88=B7=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E5=92=8C=E6=8F=90=E7=8E=B0=E7=9A=84=E6=B5=8B=E8=AF=95=E7=94=A8?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/HttpBase.php | 24 ++++++++++++----- tests/TestFunction.php | 18 +++++++++++++ tests/TestUserWithdraw.php | 55 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 91 insertions(+), 6 deletions(-) create mode 100644 tests/TestFunction.php create mode 100644 tests/TestUserWithdraw.php diff --git a/tests/HttpBase.php b/tests/HttpBase.php index 426feb2..4c09008 100644 --- a/tests/HttpBase.php +++ b/tests/HttpBase.php @@ -44,15 +44,29 @@ class HttpBase * @param string $method 请求方法(GET/POST) * @param string|null $baseUri 动态设置 baseUri(可选) * @param string $contentType 数据格式(json/form) + * @param string|null $token 认证 token(可选) * @return array|false 响应的 JSON 数据或 false */ - public static function httpclient($data, $url, $method = 'POST', $baseUri = null, $contentType = 'json') + public static function httpclient($data, $url, $method = 'POST', $baseUri = null, $contentType = 'json', $token = null) { $client = self::get_client($baseUri); try { $options = []; + // 设置请求头,支持动态传入 token + $headers = [ + 'Accept' => 'application/json', + ]; + + if ($token) { + // 如果提供了 token,则将其加入到 Authorization 头 + $headers['Authorization'] = 'Bearer ' . $token; + } + + // 添加请求头 + $options['headers'] = $headers; + if (strtoupper($method) === 'GET') { // GET 请求将数据作为查询参数 $options['query'] = $data; @@ -73,16 +87,14 @@ class HttpBase $body = $response->getBody()->getContents(); return json_decode($body, true); } catch (RequestException $e) { - // echo "HTTP 请求失败: " . $e->getMessage() . "\n"; + // 捕获请求异常 if ($e->hasResponse()) { $response = $e->getResponse(); $statusCode = $response->getStatusCode(); // 获取 HTTP 状态码 $body = $response->getBody()->getContents(); // 获取响应体 - - // echo "状态码: " . $statusCode . "\n"; - // echo "响应体: " . $body . "\n"; + // 这里可以根据需要打印响应信息 } - return $statusCode; + return $statusCode; // 返回状态码 } } } diff --git a/tests/TestFunction.php b/tests/TestFunction.php new file mode 100644 index 0000000..244dd39 --- /dev/null +++ b/tests/TestFunction.php @@ -0,0 +1,18 @@ +assertEquals(1,$res['code']); + } +} \ No newline at end of file diff --git a/tests/TestUserWithdraw.php b/tests/TestUserWithdraw.php new file mode 100644 index 0000000..60af84a --- /dev/null +++ b/tests/TestUserWithdraw.php @@ -0,0 +1,55 @@ + '01930044627', 'password' => 'cCqQgG9koky^#uDFXllNUM46@jrI7KfsL77IIWwt']; + $res = HttpBase::httpclient($data, '/api/user/login', 'POST', null, 'form'); + $token = $res['data']['userinfo']['token']; + $this->assertArrayHasKey('data', $res, "返回的数据应包含 'data' 键"); + $this->assertArrayHasKey('userinfo', $res['data'], "返回的数据应包含 'userinfo' 键"); + $this->assertArrayHasKey('token', $res['data']['userinfo'], "返回的 'userinfo' 应包含 'token' 键"); + $this->assertNotEmpty($token, "token 应该是非空的"); + // var_dump($res['data']['userinfo']['token']); + self::$UserToken = $token; + return $token; + } + /** + * 测试用户提款 + * 依赖于 testUserLogin() 测试方法 + * + * @depends testUserLogin + */ + public function testWithdrawSubmit($token) + { + $data = ['money' => '4500', 'bank_id' => '2923']; + $res = HttpBase::httpclient($data, '/api/withdraw/submit', 'POST', null, 'form',$token); + var_dump($res); + $res = HttpBase::httpclient($data, '/api/withdraw/submit', 'POST', null, 'form',$token); + var_dump($res); + $res = HttpBase::httpclient($data, '/api/withdraw/submit', 'POST', null, 'form',$token); + var_dump($res); + + } +}