定制 tatter/imposter 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

tatter/imposter

最新稳定版本:v1.1.1

Composer 安装命令:

composer require tatter/imposter

包简介

Mock authentication for CodeIgniter 4

README 文档

README

Mock authentication for CodeIgniter 4

Coverage Status

Quick Start

  1. Install with Composer: > composer require --dev tatter/imposter
  2. Access via the service: $user = service('auth')->user();

Description

Imposter provides a thin authentication layer for testing your CodeIgniter apps that require authentication. This library is for testing purposes only. The tiny footprint and easy-to-use interfaces make it ideal for handling mock authentication in a rapid way.

Imposter fulfills all the CodeIgniter authentication guidelines and thus supplies the Composer provision for codeigniter4/authentication-implementation.

Installation

Install easily via Composer to take advantage of CodeIgniter 4's autoloading capabilities and always be up-to-date:

  • > composer require tatter/imposter

Or, install manually by downloading the source files and adding the directory to app/Config/Autoload.php.

Usage

Use the service to log a user in or out.

service('auth')->login($userId);
service('auth')->logout();

The current status can be checked by getting the ID or User; both will be null if no user is authenticated.

if ($user = service('auth')->user()) {
    echo 'Logged in!';
}

You may also load the helper to use the user_id() convenience method as outlined in the CodeIgniter authentication guidelines.

helper('auth');

if ($userId = user_id()) {
    return true;
}

throw new RuntimeException('You must be authenticated!');

Users

Imposter comes with a minimal set of classes to be fully compatible with Tatter\Users. This means that any project or library which uses the interfaces from Tatter\Users can be tested using Imposter without the need of an actual authentication library or even a database.

User Entity

The Tatter\Imposter\Entities\User entity class implements all three entity interfaces from Tatter\Users: UserEntity, HasGroup, and HasPermission. Use it like any regular entity, except that the $groups and $permissions atributes are simple CSV casts for storing your entity relationships:

$user = new \Tatter\Imposter\Entities\User();
$user->groups = ['Administrators', 'Editors'];

Imposter Factory

The ImposterFactory class allows UserProvider to use the Imposter classes automatically during testing. To enable ImposterFactory add it to the list of providers during your test's setUp or setUpBeforeClass phase:

<?php

use CodeIgniter\Test\CIUnitTestCase;
use Tatter\Imposter\Factories\ImposterFactory;
use Tatter\Users\UserProvider;

final class UserWidgetTest extends CIUnitTestCase
{
    public static function setUpBeforeClass(): void
    {
        UserProvider::addFactory(ImposterFactory::class, ImposterFactory::class);
    }
...

Because Imposter is a database-free solution UserFactory has its own local storage for User entities. Use the static methods to manipulate the storage to stage your tests:

  • index() - Gets the current index of the store
  • add(User $user) - Adds a Tatter\Imposter\Entities\User object to the store, returning the new index
  • reset() - Resets the store and the index
  • fake() - Returns a new Tatter\Imposter\Entities\User object using Faker's generated data (note: not added to the store)

For example:

    protected function setUp(): void
    {
        parent::setUp();

        $user = ImposterFactory::fake();
        $user->permissions = ['widgets.create'];
        UserFactory::add($user);

        $this->userId = ImposterFactory::index();
    }

    protected function tearDown(): void
    {
        parent::tearDown();

        ImposterFactory::reset();
    }

    public testUserCanCreateWidget()
    {
        $user = service('users')->findById($this->userId);
        service('auth')->login($user);
        ...

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-11-17