Trait yii\test\FileFixtureTrait

Implemented byyii\elasticsearch\ActiveFixture, yii\mongodb\ActiveFixture, yii\sphinx\ActiveFixture, yii\test\ActiveFixture, yii\test\ArrayFixture, yii\test\BaseActiveFixture
Available since version2.0.14
Source Code https://github.com/yiisoft/yii2/blob/master/framework/test/FileFixtureTrait.php

FileFixtureTrait provides functionalities for loading data fixture from file.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
$dataDirectory string The directory path or path alias that contains the fixture data yii\test\FileFixtureTrait
$dataFile string|boolean The file path or path alias of the data file that contains the fixture data to be returned by \yii\test\getData(). yii\test\FileFixtureTrait

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
loadData() Returns the fixture data. yii\test\FileFixtureTrait

Property Details

$dataDirectory public property

The directory path or path alias that contains the fixture data

public string $dataDirectory null
$dataFile public property

The file path or path alias of the data file that contains the fixture data to be returned by \yii\test\getData(). You can set this property to be false to prevent loading any data.

public string|boolean $dataFile null

Method Details

loadData() protected method

Returns the fixture data.

The default implementation will try to return the fixture data by including the external file specified by $dataFile. The file should return the data array that will be stored in \yii\test\data after inserting into the database.

protected array loadData ( $file, $throwException true )
$file string

The data file path

$throwException boolean

Whether to throw exception if fixture data file does not exist.

return array

The data to be put into the database

throws yii\base\InvalidConfigException

if the specified data file does not exist.