2017 © Pedro Peláez
 

yii2-extension yii2-arfixture

Yii2 library to run fixtures the ActiveRecord Dao

image

tecnocen/yii2-arfixture

Yii2 library to run fixtures the ActiveRecord Dao

  • Friday, June 10, 2016
  • by neverabe
  • Repository
  • 3 Watchers
  • 3 Stars
  • 4,392 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 5 Open issues
  • 2 Versions
  • 15 % Grown

The README.md

Tecnocen.com Yii2 Active Record Fixture

Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Library to load data fixutres using using the methods defined by yii\db\ActiveRecord and show progress log., (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

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

or add, (*5)

"tecnocen/yii2-arfixture": "*"

to the require section of your composer.json file., (*6)

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., (*7)

tecnocen\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., (*8)

\ 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 :+1: :-1:
Support ActiveRecord events :+1: :-1:
Support Behaviors :+1: :-1:
Shows details on each row :+1: :-1:
Check validated attributes :+1: :-1:
Shows how many tests passed :+1: :-1:
Shows how many tests failed :+1: :-1:
Support silent mode :+1: :-1:
Exception handling :+1: :-1:

Usage

ARFixture

class UserFixture extends ARFixture
{
    public $modelClass = 'common\models\User';
}

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., (*9)

The data must follow this structure, (*10)

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:, (*11)

  • attributeErrors: array list of expected validation errors in the format, (*12)

    '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., (*13)

  • 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, (*14)

Documentation

TODO, (*15)

License

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

The Versions

10/06 2016

dev-master

9999999-dev https://github.com/tecnocen-com/yii2-arfixture

Yii2 library to run fixtures the ActiveRecord Dao

  Sources   Download

BSD-3-Clause

The Requires

 

testing yii2 yii tests activerecord fixture ar dao

10/06 2016

0.1

0.1.0.0 https://github.com/tecnocen-com/yii2-arfixture

Yii2 library to run fixtures the ActiveRecord Dao

  Sources   Download

BSD-3-Clause

The Requires

 

testing yii2 yii tests activerecord fixture ar dao