Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.4 KiB

13 years ago
<?php
namespace yiiunit\framework\base;
12 years ago
use yii\base\Behavior;
use yii\base\Component;
use yiiunit\TestCase;
class BarClass extends Component
13 years ago
{
}
12 years ago
class FooClass extends Component
13 years ago
{
public function behaviors()
{
return array(
'foo' => __NAMESPACE__ . '\BarBehavior',
);
}
}
12 years ago
class BarBehavior extends Behavior
13 years ago
{
public $behaviorProperty = 'behavior property';
public function behaviorMethod()
{
return 'behavior method';
}
public function __call($name, $params)
{
if ($name == 'magicBehaviorMethod') {
return 'Magic Behavior Method Result!';
}
return parent::__call($name, $params);
}
public function hasMethod($name)
{
if ($name == 'magicBehaviorMethod') {
return true;
}
return parent::hasMethod($name);
}
13 years ago
}
12 years ago
class BehaviorTest extends TestCase
13 years ago
{
protected function setUp()
{
parent::setUp();
$this->mockApplication();
}
13 years ago
public function testAttachAndAccessing()
{
13 years ago
$bar = new BarClass();
13 years ago
$behavior = new BarBehavior();
$bar->attachBehavior('bar', $behavior);
13 years ago
$this->assertEquals('behavior property', $bar->behaviorProperty);
$this->assertEquals('behavior method', $bar->behaviorMethod());
$this->assertEquals('behavior property', $bar->getBehavior('bar')->behaviorProperty);
$this->assertEquals('behavior method', $bar->getBehavior('bar')->behaviorMethod());
$behavior = new BarBehavior(array('behaviorProperty' => 'reattached'));
$bar->attachBehavior('bar', $behavior);
$this->assertEquals('reattached', $bar->behaviorProperty);
13 years ago
}
public function testAutomaticAttach()
{
$foo = new FooClass();
$this->assertEquals('behavior property', $foo->behaviorProperty);
$this->assertEquals('behavior method', $foo->behaviorMethod());
13 years ago
}
public function testMagicMethods()
{
$bar = new BarClass();
$behavior = new BarBehavior();
$this->assertFalse($bar->hasMethod('magicBehaviorMethod'));
$bar->attachBehavior('bar', $behavior);
$this->assertFalse($bar->hasMethod('magicBehaviorMethod', false));
$this->assertTrue($bar->hasMethod('magicBehaviorMethod'));
$this->assertEquals('Magic Behavior Method Result!', $bar->magicBehaviorMethod());
}
public function testCallUnknownMethod()
{
$bar = new BarClass();
$behavior = new BarBehavior();
$this->setExpectedException('yii\base\UnknownMethodException');
$this->assertFalse($bar->hasMethod('nomagicBehaviorMethod'));
$bar->attachBehavior('bar', $behavior);
$bar->nomagicBehaviorMethod();
}
13 years ago
}