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
c62e0cbb
Commit
c62e0cbb
authored
Oct 28, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added unit test to verify AR afterSave isNewRecord value
closes #1084
parent
a577bda3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
Customer.php
tests/unit/data/ar/Customer.php
+10
-0
ActiveRecordTest.php
tests/unit/framework/db/ActiveRecordTest.php
+9
-0
No files found.
tests/unit/data/ar/Customer.php
View file @
c62e0cbb
...
...
@@ -17,6 +17,9 @@ class Customer extends ActiveRecord
public
$status2
;
public
static
$afterSaveInsert
=
null
;
public
static
$afterSaveNewRecord
=
null
;
public
static
function
tableName
()
{
return
'tbl_customer'
;
...
...
@@ -31,4 +34,11 @@ class Customer extends ActiveRecord
{
$query
->
andWhere
(
'status=1'
);
}
public
function
afterSave
(
$insert
)
{
static
::
$afterSaveInsert
=
$insert
;
static
::
$afterSaveNewRecord
=
$this
->
isNewRecord
;
parent
::
afterSave
(
$insert
);
}
}
tests/unit/framework/db/ActiveRecordTest.php
View file @
c62e0cbb
...
...
@@ -295,10 +295,14 @@ class ActiveRecordTest extends DatabaseTestCase
$this
->
assertNull
(
$customer
->
id
);
$this
->
assertTrue
(
$customer
->
isNewRecord
);
Customer
::
$afterSaveNewRecord
=
null
;
Customer
::
$afterSaveInsert
=
null
;
$customer
->
save
();
$this
->
assertEquals
(
4
,
$customer
->
id
);
$this
->
assertFalse
(
Customer
::
$afterSaveNewRecord
);
$this
->
assertTrue
(
Customer
::
$afterSaveInsert
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
}
...
...
@@ -309,10 +313,15 @@ class ActiveRecordTest extends DatabaseTestCase
$this
->
assertTrue
(
$customer
instanceof
Customer
);
$this
->
assertEquals
(
'user2'
,
$customer
->
name
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
Customer
::
$afterSaveNewRecord
=
null
;
Customer
::
$afterSaveInsert
=
null
;
$customer
->
name
=
'user2x'
;
$customer
->
save
();
$this
->
assertEquals
(
'user2x'
,
$customer
->
name
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
$this
->
assertFalse
(
Customer
::
$afterSaveNewRecord
);
$this
->
assertFalse
(
Customer
::
$afterSaveInsert
);
$customer2
=
Customer
::
find
(
2
);
$this
->
assertEquals
(
'user2x'
,
$customer2
->
name
);
...
...
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