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
b8c9d515
Commit
b8c9d515
authored
Jun 03, 2014
by
Klimov Paul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:yiisoft/yii2
parents
3f001aee
2a75cd19
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
74 additions
and
1 deletion
+74
-1
Customer.php
tests/unit/data/ar/elasticsearch/Customer.php
+5
-0
Customer.php
tests/unit/data/ar/redis/Customer.php
+8
-0
OrderItemWithNullFK.php
tests/unit/data/ar/redis/OrderItemWithNullFK.php
+24
-0
OrderWithNullFK.php
tests/unit/data/ar/redis/OrderWithNullFK.php
+24
-0
sqlite.sql
tests/unit/data/sqlite.sql
+1
-1
ActiveRecordTest.php
tests/unit/extensions/redis/ActiveRecordTest.php
+12
-0
No files found.
tests/unit/data/ar/elasticsearch/Customer.php
View file @
b8c9d515
...
@@ -35,6 +35,11 @@ class Customer extends ActiveRecord
...
@@ -35,6 +35,11 @@ class Customer extends ActiveRecord
return
$this
->
hasMany
(
Order
::
className
(),
[
'customer_id'
=>
'id'
])
->
orderBy
(
'created_at'
);
return
$this
->
hasMany
(
Order
::
className
(),
[
'customer_id'
=>
'id'
])
->
orderBy
(
'created_at'
);
}
}
public
function
getOrdersWithNullFK
()
{
return
$this
->
hasMany
(
OrderWithNullFK
::
className
(),
[
'customer_id'
=>
'id'
])
->
orderBy
(
'created_at'
);
}
public
function
afterSave
(
$insert
)
public
function
afterSave
(
$insert
)
{
{
ActiveRecordTest
::
$afterSaveInsert
=
$insert
;
ActiveRecordTest
::
$afterSaveInsert
=
$insert
;
...
...
tests/unit/data/ar/redis/Customer.php
View file @
b8c9d515
...
@@ -28,6 +28,14 @@ class Customer extends ActiveRecord
...
@@ -28,6 +28,14 @@ class Customer extends ActiveRecord
}
}
/**
/**
* @return \yii\redis\ActiveQuery
*/
public
function
getOrdersWithNullFK
()
{
return
$this
->
hasMany
(
OrderWithNullFK
::
className
(),
[
'customer_id'
=>
'id'
]);
}
/**
* @inheritdoc
* @inheritdoc
*/
*/
public
function
afterSave
(
$insert
)
public
function
afterSave
(
$insert
)
...
...
tests/unit/data/ar/redis/OrderItemWithNullFK.php
0 → 100644
View file @
b8c9d515
<?php
namespace
yiiunit\data\ar\redis
;
/**
* Class OrderItem
*
* @property integer $order_id
* @property integer $item_id
* @property integer $quantity
* @property string $subtotal
*/
class
OrderItemWithNullFK
extends
ActiveRecord
{
public
static
function
primaryKey
()
{
return
[
'order_id'
,
'item_id'
];
}
public
function
attributes
()
{
return
[
'order_id'
,
'item_id'
,
'quantity'
,
'subtotal'
];
}
}
tests/unit/data/ar/redis/OrderWithNullFK.php
0 → 100644
View file @
b8c9d515
<?php
namespace
yiiunit\data\ar\redis
;
/**
* Class Order
*
* @property integer $id
* @property integer $customer_id
* @property integer $created_at
* @property string $total
*/
class
OrderWithNullFK
extends
ActiveRecord
{
public
static
function
primaryKey
()
{
return
[
'id'
];
}
public
function
attributes
()
{
return
[
'id'
,
'customer_id'
,
'created_at'
,
'total'
];
}
}
tests/unit/data/sqlite.sql
View file @
b8c9d515
...
@@ -72,7 +72,7 @@ CREATE TABLE "order_item_with_null_fk" (
...
@@ -72,7 +72,7 @@ CREATE TABLE "order_item_with_null_fk" (
order_id
INTEGER
,
order_id
INTEGER
,
item_id
INTEGER
,
item_id
INTEGER
,
quantity
INTEGER
NOT
NULL
,
quantity
INTEGER
NOT
NULL
,
subtotal
decimal
(
10
,
0
)
NOT
NULL
,
subtotal
decimal
(
10
,
0
)
NOT
NULL
);
);
CREATE
TABLE
"composite_fk"
(
CREATE
TABLE
"composite_fk"
(
...
...
tests/unit/extensions/redis/ActiveRecordTest.php
View file @
b8c9d515
...
@@ -8,6 +8,8 @@ use yiiunit\data\ar\redis\Customer;
...
@@ -8,6 +8,8 @@ use yiiunit\data\ar\redis\Customer;
use
yiiunit\data\ar\redis\OrderItem
;
use
yiiunit\data\ar\redis\OrderItem
;
use
yiiunit\data\ar\redis\Order
;
use
yiiunit\data\ar\redis\Order
;
use
yiiunit\data\ar\redis\Item
;
use
yiiunit\data\ar\redis\Item
;
use
yiiunit\data\ar\redis\OrderItemWithNullFK
;
use
yiiunit\data\ar\redis\OrderWithNullFK
;
use
yiiunit\framework\ar\ActiveRecordTestTrait
;
use
yiiunit\framework\ar\ActiveRecordTestTrait
;
/**
/**
...
@@ -37,6 +39,16 @@ class ActiveRecordTest extends RedisTestCase
...
@@ -37,6 +39,16 @@ class ActiveRecordTest extends RedisTestCase
return
OrderItem
::
className
();
return
OrderItem
::
className
();
}
}
public
function
getOrderWithNullFKClass
()
{
return
OrderWithNullFK
::
className
();
}
public
function
getOrderItemWithNullFKmClass
()
{
return
OrderItemWithNullFK
::
className
();
}
public
function
setUp
()
public
function
setUp
()
{
{
parent
::
setUp
();
parent
::
setUp
();
...
...
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