Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
15a3ec27
Commit
15a3ec27
authored
Aug 31, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added unit tests and call to $behavior->hasMethod in Component
parent
7a556406
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
1 deletion
+42
-1
Component.php
framework/yii/base/Component.php
+1
-1
BehaviorTest.php
tests/unit/framework/base/BehaviorTest.php
+41
-0
No files found.
framework/yii/base/Component.php
View file @
15a3ec27
...
...
@@ -199,7 +199,7 @@ class Component extends Object
$this
->
ensureBehaviors
();
foreach
(
$this
->
_behaviors
as
$object
)
{
if
(
method_exists
(
$object
,
$name
))
{
if
(
method_exists
(
$object
,
$name
)
||
$object
->
hasMethod
(
$name
)
)
{
return
call_user_func_array
(
array
(
$object
,
$name
),
$params
);
}
}
...
...
tests/unit/framework/base/BehaviorTest.php
View file @
15a3ec27
...
...
@@ -28,6 +28,22 @@ class BarBehavior extends Behavior
{
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
);
}
}
class
BehaviorTest
extends
TestCase
...
...
@@ -59,4 +75,29 @@ class BehaviorTest extends TestCase
$this
->
assertEquals
(
'behavior property'
,
$foo
->
behaviorProperty
);
$this
->
assertEquals
(
'behavior method'
,
$foo
->
behaviorMethod
());
}
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
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment