91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行phpstorm hyperf單元測試配置

發布時間:2021-03-10 09:38:18 來源:億速云 閱讀:315 作者:小新 欄目:軟件技術

這篇文章給大家分享的是有關如何進行phpstorm hyperf單元測試配置的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1、創建一個testCase基類繼承于PHPUnit\Framework\TestCase

tips:把登錄成功后的token放到緩存, 下次接口請求可以直接從緩存取。

<?php

declare(strict_types=1);
/**
 * This file is part of Hyperf.
 *
 * @link     https://www.hyperf.io
 * @document https://doc.hyperf.io
 * @contact  group@hyperf.io
 * @license  https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
 */

namespace HyperfTest;

use App\Model\SysUser;
use App\Service\Instance\JwtInstance;
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 = [])
 */
abstract class AdminTestCase extends TestCase
{
    /**
     * @var Client
     */
    protected $client;

    // token緩存key
    protected $cacheKey = 'test_admin_token';

    // token
    protected $header = [];


    public function __construct($name = null, array $data = [], $dataName = '')
    {
        parent::__construct($name, $data, $dataName);
        $this->client = di(Client::class);
        $this->login();
    }

    public function __call($name, $arguments)
    {
        return $this->client->{$name}(...$arguments);
    }

    /**
     * @return mixed|string
     * @throws \Psr\SimpleCache\InvalidArgumentException
     */
    public function login()
    {
        $token = cache()->get($this->cacheKey);
        $this->header['token'] = $token;
        if (!$token) {
            $userId = 1;
            $user = SysUser::query()->where(['user_id' => $userId])->first();
            $token = JwtInstance::instance()->encode($user);
            $this->header['token'] = $token;
            // 設置到緩存
             cache()->set($this->cacheKey,  $token, 43200);
        }
        return $token;
    }

    /**
     * @param array $result
     * @return false|string
     */
    public function pretty(array $result)
    {
        // 表示成功
        $this->assertSame(0, 0);
        echo  json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) . PHP_EOL;
    }
}

2、寫一個test控制器繼承AdminTestCase, 然后寫測試用例

<?php
/**
 * Created by PhpStorm.
 * User: phpstorm
 * Date: 2020/6/9 14:36
 * Description:
 */


namespace HyperfTest\Cases\Admin;


use App\Service\SysUserService;
use HyperfTest\AdminTestCase;
use Swoole\Coroutine\Channel;
use Hyperf\Utils\Context;

class SysUserControllerTest extends AdminTestCase
{
    // 測試
    public function testGet()
    {
        // $this->assertTrue(true);

        $res = $this->client->get('/');

        // $this->assertSame(0, $res['code']);

        $this->pretty($res);
    }


    /**
     * 后臺用戶列表
     * 執行命令:composer test -- --filter testGetSysUserList --group adminUser
     *
     * @group adminUser
     */
    public function testGetSysUserList()
    {
        $params = [
            'username' => '',
            'page' => 1,
            'limit' => 20
        ];
        $result = $this->get('/admin/sys/user/list', $params, $this->header);

        $this->pretty($result);
    }
}
  • 點擊testGetSysUserList方法左邊的綠色三角號:

    如何進行phpstorm hyperf單元測試配置

  • 或者可以在項目的跟目錄下直接使用命令:
    composer test -- --filter testGetSysUserList --group adminUser
  • 執行結果:

    如何進行phpstorm hyperf單元測試配置

3、如果hyperf開啟協程、phpunit就無法使用,需要使用hyperf框架自帶的co-phpunit,所以需要修改phpstorm配置

第一步:打開phpstorm->settings->languages & Frameworks->PHP->CLI Interpreter

如何進行phpstorm hyperf單元測試配置

如何進行phpstorm hyperf單元測試配置

如何進行phpstorm hyperf單元測試配置

如何進行phpstorm hyperf單元測試配置
配置完點擊【OK】或者【Apply】

第二步:映射項目目錄

如何進行phpstorm hyperf單元測試配置
點擊【OK】

第三步:配置 co-phpunit命令

打開phpstorm->settings->languages & Frameworks->PHP->Test Frameworks

如何進行phpstorm hyperf單元測試配置

如何進行phpstorm hyperf單元測試配置

如何進行phpstorm hyperf單元測試配置
如圖所示配置,點擊【OK】或者 【Apply】保存

然后就可以愉快的hyperf  單元調試啦。

感謝各位的閱讀!關于“如何進行phpstorm hyperf單元測試配置”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长治市| 泽州县| 榆中县| 龙门县| 平湖市| 平定县| 多伦县| 体育| 通江县| 古交市| 徐汇区| 青神县| 淮南市| 凉城县| 资阳市| 舟山市| 靖边县| 来宾市| 原平市| 临颍县| 于都县| 绍兴市| 长武县| 洪洞县| 吉林省| 林西县| 鸡东县| 嘉定区| 蕉岭县| 崇左市| 金溪县| 长阳| 天水市| 萨迦县| 楚雄市| 绵阳市| 灵武市| 察雅县| 永康市| 贞丰县| 宁阳县|