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
0788e104
Commit
0788e104
authored
Dec 29, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored unit tests.
parent
db11cfc5
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
18 deletions
+25
-18
_bootstrap.php
apps/basic/tests/unit/_bootstrap.php
+0
-2
TestCase.php
extensions/yii/codeception/TestCase.php
+17
-10
DbFixtureManager.php
framework/yii/test/DbFixtureManager.php
+3
-4
DbTestTrait.php
framework/yii/test/DbTestTrait.php
+5
-2
No files found.
apps/basic/tests/unit/_bootstrap.php
View file @
0788e104
<?php
// add unit testing specific bootstrap code here
yii\codeception\TestCase
::
$appConfig
=
require
(
__DIR__
.
'/_config.php'
);
extensions/yii/codeception/TestCase.php
View file @
0788e104
...
...
@@ -17,12 +17,10 @@ class TestCase extends Test
/**
* @var array|string the application configuration that will be used for creating an application instance for each test.
* You can use a string to represent the file path or path alias of a configuration file.
* The application configuration array may contain an optional `class` element which specifies the class
* name of the application instance to be created. By default, a [[yii\web\Application]] instance will be created.
*/
public
static
$appConfig
=
[];
/**
* @var string the application class that [[mockApplication()]] should use
*/
public
static
$appClass
=
'yii\web\Application'
;
public
$appConfig
=
'@tests/unit/_config.php'
;
/**
* @inheritdoc
...
...
@@ -47,17 +45,26 @@ class TestCase extends Test
* @param array $config the configuration that should be used to generate the application instance.
* If null, [[appConfig]] will be used.
* @return \yii\web\Application|\yii\console\Application the application instance
* @throws InvalidConfigException if the application configuration is invalid
*/
protected
function
mockApplication
(
$config
=
null
)
{
$config
=
$config
===
null
?
static
::
$
appConfig
:
$config
;
$config
=
$config
===
null
?
$this
->
appConfig
:
$config
;
if
(
is_string
(
$config
))
{
$config
=
Yii
::
getAlias
(
$config
);
$configFile
=
Yii
::
getAlias
(
$config
);
if
(
!
is_file
(
$configFile
))
{
throw
new
InvalidConfigException
(
"The application configuration file does not exist:
$config
"
);
}
$config
=
require
(
$configFile
);
}
if
(
is_array
(
$config
))
{
if
(
!
isset
(
$config
[
'class'
]))
{
$config
[
'class'
]
=
'yii\web\Application'
;
}
if
(
!
is_array
(
$config
))
{
throw
new
InvalidConfigException
(
'Please provide a configuration for creating application.'
);
return
Yii
::
createObject
(
$config
);
}
else
{
throw
new
InvalidConfigException
(
'Please provide a configuration array to mock up an application.'
);
}
return
new
static
::
$appClass
(
$config
);
}
/**
...
...
framework/yii/test/DbFixtureManager.php
View file @
0788e104
...
...
@@ -10,7 +10,6 @@ namespace yii\test;
use
Yii
;
use
yii\base\Component
;
use
yii\base\InvalidConfigException
;
use
yii\db\ActiveRecord
;
use
yii\db\ActiveRecordInterface
;
use
yii\db\Connection
;
...
...
@@ -185,7 +184,7 @@ class DbFixtureManager extends Component
* Returns the specified ActiveRecord instance in the fixture data.
* @param string $fixtureName the fixture name
* @param string $modelName the alias for the fixture data row
* @return
\yii\db\ActiveRecord
the ActiveRecord instance. Null is returned if there is no such fixture row.
* @return
ActiveRecordInterface
the ActiveRecord instance. Null is returned if there is no such fixture row.
*/
public
function
getModel
(
$fixtureName
,
$modelName
)
{
...
...
@@ -196,9 +195,9 @@ class DbFixtureManager extends Component
return
$this
->
_models
[
$fixtureName
][
$modelName
];
}
$row
=
$this
->
_rows
[
$fixtureName
][
$modelName
];
/** @var
\yii\db\ActiveRecord
$modelClass */
/** @var
ActiveRecordInterface
$modelClass */
$modelClass
=
$this
->
_models
[
$fixtureName
];
/** @var
\yii\db\ActiveRecord
$model */
/** @var
ActiveRecordInterface
$model */
$model
=
new
$modelClass
;
$keys
=
[];
foreach
(
$model
->
primaryKey
()
as
$key
)
{
...
...
framework/yii/test/DbTestTrait.php
View file @
0788e104
...
...
@@ -19,15 +19,18 @@ use Yii;
*
* ~~~
* use yii\test\DbTestTrait;
* use yii\codeception\TestCase;
* use app\models\Post;
* use app\models\User;
*
* class PostTestCase extends
\PHPUnit_Framework_
TestCase
* class PostTestCase extends TestCase
* {
* use DbTestTrait;
*
* p
ublic
function setUp()
* p
rotected
function setUp()
* {
* parent::setUp();
*
* $this->loadFixtures([
* 'posts' => Post::className(),
* 'users' => User::className(),
...
...
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