2017 © Pedro Peláez
 

application factory_girl

fixtures replacement tool for Yii framework

image

kengos/factory_girl

fixtures replacement tool for Yii framework

  • Wednesday, March 27, 2013
  • by ssidelnikov
  • Repository
  • 1 Watchers
  • 6 Stars
  • 1,542 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 2 Versions
  • 2 % Grown

The README.md

FactoryGirlPhp

FactoryGirl is a fixtures replacement tool for Yii framework, (*1)

Like Ruby gem factory_girl, (*2)

Install

Download factory_girl_0.1.0.phar, (*3)

Setup

In your bootstrap.php, (*4)

require_once('/your/download/path/factory_girl_0.1.0.phar');
use FactoryGirl\Factory as FactoryGirl;
$factoryPaths = array('foo/bar/factories', 'bar/baz/factories');
FactoryGirl::setup($factoryPaths);

Usage

FactoryGirl::build('User')

FactoryGirl::create('User')

FactoryGirl::attributes('User')

Factory file format

 'User', // -> new User
  'attributes' => array(
    'name' => 'xxxx', // $user->name = 'xxxx'
    'permission' => 'default', // $user->permission = 'default'
  ),
  'admin' => array(
    'name' => 'admin',
    'permission' => 'admin' // $user->permission = 'admin'
  )
);

?>

// In Your tests
$user = FactoryGirl::create('User')
$user->permission; // -> 'default'

$user = FactoryGirl::create('User', array('permission'->'admin'));
$user->permission; // -> 'admin'

$admin = FactoryGirl::create('User', array(), 'admin');
$admin->permission; // -> 'admin'

// after each test case
FactoryGirl::flush(); // remove created records

more details see tests/FactoryGirl/FactoryTest.php, (*5)

FactoryGirl Sequence

 'Foo',
  'attributes' => array(
    'name' => 'bar_{{sequence}}',
  ),
);
?>
FactoryGirl::build('Foo')->name // -> bar_0
FactoryGirl::build('Foo')->name // -> bar_1

// reset sequence number
FactoryGirl::resetSequence();
FactoryGirl::build('Foo')->name // -> bar_0

more details see tests/FactorySequenceTest.php, (*6)

Tips

If you can not use save method

// UserFactory.php
return array(
  'class' => 'User',
  'attributes' => array(),
  'save' => array('generate'),
);

// In your test
FactoryGirl::create('User');
// called `generate`, instead of `save`

If you want to set protected or private variable

// UserFactory.php
return array(
  'class' => 'User',
  'attributes' => array(
    'setName' => 'foo',
    'generatePassword' => array('plain_password', 'seed'), 
  ),
);

// In your test
FactoryGirl::create('User');
// $user = new User;
// $user->setName('foo');
// $user->generatePassword('plain_password', 'seed');

known issue: could not use FactoryGirl::attributes('User');, (*7)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

The Versions

27/03 2013

dev-master

9999999-dev https://github.com/kengos/FactoryGirl

fixtures replacement tool for Yii framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Kengo Suzuki

test fixture

17/03 2013

v0.1.0

0.1.0.0 https://github.com/kengos/FactoryGirl

fixtures replacement tool for Yii framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Kengo Suzuki

test fixture