mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
213 lines
5.4 KiB
PHP
213 lines
5.4 KiB
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\behaviors;
|
|
|
|
use Yii;
|
|
use yii\behaviors\AttributesBehavior;
|
|
use yii\db\ActiveRecord;
|
|
use yii\db\Connection;
|
|
use yiiunit\TestCase;
|
|
|
|
/**
|
|
* Unit test for [[\yii\behaviors\AttributesBehavior]].
|
|
* @see AttributesBehavior
|
|
*
|
|
* @group behaviors
|
|
*/
|
|
class AttributesBehaviorTest extends TestCase
|
|
{
|
|
/**
|
|
* @var Connection test db connection
|
|
*/
|
|
protected $dbConnection;
|
|
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
if (!extension_loaded('pdo') || !extension_loaded('pdo_sqlite')) {
|
|
static::markTestSkipped('PDO and SQLite extensions are required.');
|
|
}
|
|
}
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->mockApplication([
|
|
'components' => [
|
|
'db' => [
|
|
'class' => '\yii\db\Connection',
|
|
'dsn' => 'sqlite::memory:',
|
|
],
|
|
],
|
|
]);
|
|
|
|
$columns = [
|
|
'id' => 'pk',
|
|
'name' => 'string',
|
|
'alias' => 'string',
|
|
];
|
|
Yii::$app->getDb()->createCommand()->createTable('test_attribute', $columns)->execute();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
Yii::$app->getDb()->close();
|
|
parent::tearDown();
|
|
}
|
|
|
|
// Tests :
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function preserveNonEmptyValuesDataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
'John Doe',
|
|
false,
|
|
'John Doe',
|
|
null,
|
|
],
|
|
[
|
|
'John Doe',
|
|
false,
|
|
'John Doe',
|
|
'Johnny',
|
|
],
|
|
[
|
|
'John Doe',
|
|
true,
|
|
'John Doe',
|
|
null,
|
|
],
|
|
[
|
|
'Johnny',
|
|
true,
|
|
'John Doe',
|
|
'Johnny',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider preserveNonEmptyValuesDataProvider
|
|
*
|
|
* @param string $aliasExpected The expected value of the alias attribute.
|
|
* @param bool $preserveNonEmptyValues Whether to preserve non-empty values.
|
|
* @param string $name The value of the name attribute.
|
|
* @param string|null $alias The value of the alias attribute.
|
|
*/
|
|
public function testPreserveNonEmptyValues(
|
|
string $aliasExpected,
|
|
bool $preserveNonEmptyValues,
|
|
string $name,
|
|
string $alias = null
|
|
): void {
|
|
$model = new ActiveRecordWithAttributesBehavior();
|
|
$model->attributesBehavior->preserveNonEmptyValues = $preserveNonEmptyValues;
|
|
$model->name = $name;
|
|
$model->alias = $alias;
|
|
$model->validate();
|
|
|
|
$this->assertEquals($aliasExpected, $model->alias);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function orderProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
'name: Johnny',
|
|
[ActiveRecordWithAttributesBehavior::EVENT_BEFORE_VALIDATE => ['name', 'alias']],
|
|
// 1: name = alias; 2: alias = name; check alias
|
|
'John Doe', // name
|
|
'Johnny', // alias
|
|
],
|
|
[
|
|
'John Doe',
|
|
[ActiveRecordWithAttributesBehavior::EVENT_BEFORE_VALIDATE => ['alias', 'name']],
|
|
// 2: alias = name; 1: name = alias; check alias
|
|
'John Doe', // name
|
|
'Johnny', // alias
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider orderProvider
|
|
*
|
|
* @param string $aliasExpected The expected value of the alias attribute.
|
|
* @param array $order The order of the attributes.
|
|
* @param string $name The value of the name attribute.
|
|
* @param string $alias The value of the alias attribute.
|
|
*/
|
|
public function testOrder(
|
|
string $aliasExpected,
|
|
array $order,
|
|
string $name,
|
|
string $alias
|
|
): void {
|
|
$model = new ActiveRecordWithAttributesBehavior();
|
|
$model->attributesBehavior->order = $order;
|
|
$model->name = $name;
|
|
$model->alias = $alias;
|
|
$model->validate();
|
|
|
|
$this->assertEquals($aliasExpected, $model->alias);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test Active Record class with [[AttributesBehavior]] behavior attached.
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $alias
|
|
*
|
|
* @property AttributesBehavior $attributesBehavior
|
|
*/
|
|
class ActiveRecordWithAttributesBehavior extends ActiveRecord
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function behaviors()
|
|
{
|
|
return [
|
|
'attributes' => [
|
|
'class' => AttributesBehavior::class,
|
|
'attributes' => [
|
|
'alias' => [
|
|
self::EVENT_BEFORE_VALIDATE => fn($event) => $event->sender->name,
|
|
],
|
|
'name' => [
|
|
self::EVENT_BEFORE_VALIDATE => fn($event, $attribute) => $attribute . ': ' . $event->sender->alias,
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'test_attribute';
|
|
}
|
|
|
|
/**
|
|
* @return AttributesBehavior
|
|
*/
|
|
public function getAttributesBehavior()
|
|
{
|
|
return $this->getBehavior('attributes');
|
|
}
|
|
}
|