roaresearch/yii2-arfixture 问题修复 & 功能扩展

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

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

roaresearch/yii2-arfixture

Composer 安装命令:

composer require --dev roaresearch/yii2-arfixture

包简介

Yii2 library to run fixtures the ActiveRecord Dao

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License

Library to load data fixutres using using the methods defined by yii\db\ActiveRecord and show progress log.

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist "roaresearch/yii2-arfixture:*"

or add

"roaresearch/yii2-arfixture": "*"

to the require section of your composer.json file.

Differences

yii\test\Fixture and yii\test\ActiveFixture load data to the tables using the name of the table and the yii\db\Schema::insert() method which means all the methods defined in the model such as validations, events, behaviors and even table prefix are ignored.

roaresearch\yii2\arfixutre\ARFixture loads fixtures by creating a model using the $modelClass property and then passes by all the workflow of saving the data using ActiveRecord considering scenarios, exceptions, events, safe attributes, validation errors and showing detailed information to the user of the procedure.

\ ARFixture ActiveFixture & Fixture
How is the data saved? ActiveRecord::save() Schema::insert()
Works will all the db's Without modification Have to change classes
Support to change scenario 👍 👎
Support ActiveRecord events 👍 👎
Support Behaviors 👍 👎
Shows details on each row 👍 👎
Check validated attributes 👍 👎
Shows how many tests passed 👍 👎
Shows how many tests failed 👍 👎
Support silent mode 👍 👎
Exception handling 👍 👎

Usage

ARFixture

class UserFixture extends ARFixture
{
    public $modelClass = User::class;
}

If [[$dataFile]] is not defined then it will seek on the data/ subfolder the file with the same name as this class except for the Fixture keyword at the end. Example: UserFixture will return the file data/User.php or an empty array when the file can not found.

The data must follow this structure

return [
    // record with no explicit alias, will only show the key number on the log.
    [
        'username' => 'faryshta',
        'name' => 'Angel',
        'lastname' => 'Guevara',
        'email' => 'angeldelcaos@gmail.com',
    ],

    // record with explicit alias, will be shown on the log
    'duplicated' => [
        'username' => 'faryshta',
        'name' => 'Angel',
        'lastname' => 'Guevara',
        'email' => 'angeldelcaos@gmail.com',

        // optional, will apply the scenario before loading the models.
        'scenario' => 'api-save',

        // optional, will check the validation errors.
        'attributeErrors' => [
            // will check that username has this exact validation error.
            'username' => 'Username already in use',
            // will check that email has any validation error
            'email',
            // the other attributes are not expected to have a validation error.
        ],
    ]    
];

Each row can contain the following special options:

  • attributeErrors: array list of expected validation errors in the format

    'attributeErrors' => [
        'attribute1', // will check that it contains any error.
        'attribute2' => 'Error Message' // This has to be the error found.
    ]

    Warning: If this option is defined the record won't be saved even if it passes all the validations.

  • scenario: string to be used as scenario for the model to handle the methods Model::load() and Model::validate(), if not defined the $scenarioDefault will be used

Documentation

TODO

License

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2020-08-13

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固