Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance yii\behaviors\AttributeBehavior #11969

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions framework/behaviors/AttributeBehavior.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ class AttributeBehavior extends Behavior
* @since 2.0.8
*/
public $skipUpdateOnClean = true;
/**
* @var boolean whether to skip attribute update when it is not empty
* @since 2.0.10
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.0.12

*/
public $skipUpdateOnFilled = false;


/**
Expand Down Expand Up @@ -118,6 +123,10 @@ public function evaluateAttributes($event)
foreach ($attributes as $attribute) {
// ignore attribute names which are not string (e.g. when set by TimestampBehavior::updatedAtAttribute)
if (is_string($attribute)) {
// skip attribute update when it is not empty and the corresponding mode is enabled
if ($this->skipUpdateOnFilled && !empty($this->owner->$attribute)) {
continue;
}
$this->owner->$attribute = $value;
}
}
Expand Down
139 changes: 139 additions & 0 deletions tests/framework/behaviors/AttributeBehaviorTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<?php

namespace yiiunit\framework\behaviors;

use Yii;
use yiiunit\TestCase;
use yii\db\Connection;
use yii\db\ActiveRecord;
use yii\behaviors\AttributeBehavior;

/**
* Unit test for [[\yii\behaviors\AttributeBehavior]].
* @see AttributeBehavior
*
* @group behaviors
*/
class AttributeBehaviorTest extends TestCase
{
/**
* @var Connection test db connection
*/
protected $dbConnection;

public static function setUpBeforeClass()
{
if (!extension_loaded('pdo') || !extension_loaded('pdo_sqlite')) {
static::markTestSkipped('PDO and SQLite extensions are required.');
}
}

public function setUp()
{
$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();
}

public function tearDown()
{
Yii::$app->getDb()->close();
parent::tearDown();
}

// Tests :

public function testSkipUpdateOnFilledFalseAliasEmpty()
{
$model = new ActiveRecordWithAttributeBehavior();
$model->attributeBehavior->skipUpdateOnFilled = false;
$model->name = 'John Doe';
$model->validate();

$this->assertEquals('John Doe', $model->alias);
}

public function testSkipUpdateOnFilledFalseAliasFilled()
{
$model = new ActiveRecordWithAttributeBehavior();
$model->attributeBehavior->skipUpdateOnFilled = false;
$model->name = 'John Doe';
$model->alias = 'Johnny';
$model->validate();

$this->assertEquals('John Doe', $model->alias);
}

public function testSkipUpdateOnFilledTrueAliasEmpty()
{
$model = new ActiveRecordWithAttributeBehavior();
$model->attributeBehavior->skipUpdateOnFilled = true;
$model->name = 'John Doe';
$model->validate();

$this->assertEquals('John Doe', $model->alias);
}

public function testSkipUpdateOnFilledTrueAliasFilled()
{
$model = new ActiveRecordWithAttributeBehavior();
$model->attributeBehavior->skipUpdateOnFilled = true;
$model->name = 'John Doe';
$model->alias = 'Johnny';
$model->validate();

$this->assertEquals('Johnny', $model->alias);
}
}

/**
* Test Active Record class with [[AttributeBehavior]] behavior attached.
*
* @property integer $id
* @property string $name
* @property string $alias
*
* @property AttributeBehavior $attributeBehavior
*/
class ActiveRecordWithAttributeBehavior extends ActiveRecord
{
public function behaviors()
{
return [
'attribute' => [
'class' => AttributeBehavior::className(),
'attributes' => [
self::EVENT_BEFORE_VALIDATE => 'alias',
],
'value' => function ($event) {
return $event->sender->name;
},
],
];
}

public static function tableName()
{
return 'test_attribute';
}

/**
* @return AttributeBehavior
*/
public function getAttributeBehavior()
{
return $this->getBehavior('attribute');
}
}