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
9bde3ab6
Commit
9bde3ab6
authored
Jan 22, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'tests_improved_verify' of github.com:Ragazzo/yii2 into Ragazzo-tests_improved_verify
Conflicts: apps/basic/tests/README.md apps/basic/tests/unit/models/LoginFormTest.php
parents
3bf072a7
ee0c105b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
14 deletions
+21
-14
README.md
apps/basic/tests/README.md
+7
-1
ContactFormTest.php
apps/basic/tests/unit/models/ContactFormTest.php
+6
-5
LoginFormTest.php
apps/basic/tests/unit/models/LoginFormTest.php
+8
-8
No files found.
apps/basic/tests/README.md
View file @
9bde3ab6
...
...
@@ -3,7 +3,13 @@ These tests are developed with [Codeception PHP Testing Framework](http://codece
After creating the basic application, follow these steps to prepare for the tests:
1.
In the file
`_bootstrap.php`
, modify the definition of the constant
`TEST_ENTRY_URL`
so
1.
To install
`Codeception`
and its dependencies through composer, run the following commands:
```
php composer.phar require --dev "codeception/codeception *" "codeception/specify *" "codeception/verify *"
```
2. In the file `_bootstrap.php`, modify the definition of the constant `TEST_ENTRY_URL` so
that it points to the correct entry script URL.
2. Go to the application base directory and build the test suites:
...
...
apps/basic/tests/unit/models/ContactFormTest.php
View file @
9bde3ab6
...
...
@@ -39,15 +39,16 @@ class ContactFormTest extends TestCase
$model
->
contact
(
'admin@example.com'
);
$this
->
specify
(
'email should be send'
,
function
()
{
$this
->
assertFileExists
(
$this
->
getMessageFile
(),
'email file should exist'
);
expect
(
'email file should exist'
,
file_exists
(
$this
->
getMessageFile
()))
->
true
(
);
});
$this
->
specify
(
'message should contain correct data'
,
function
()
use
(
$model
)
{
$emailMessage
=
file_get_contents
(
$this
->
getMessageFile
());
$this
->
assertContains
(
$model
->
name
,
$emailMessage
,
'email should contain user name'
);
$this
->
assertContains
(
$model
->
email
,
$emailMessage
,
'email should contain sender email'
);
$this
->
assertContains
(
$model
->
subject
,
$emailMessage
,
'email should contain subject'
);
$this
->
assertContains
(
$model
->
body
,
$emailMessage
,
'email should contain body'
);
expect
(
'email should contain user name'
,
$emailMessage
)
->
contains
(
$model
->
name
);
expect
(
'email should contain sender email'
,
$emailMessage
)
->
contains
(
$model
->
email
);
expect
(
'email should contain subject'
,
$emailMessage
)
->
contains
(
$model
->
subject
);
expect
(
'email should contain body'
,
$emailMessage
)
->
contains
(
$model
->
body
);
});
}
...
...
apps/basic/tests/unit/models/LoginFormTest.php
View file @
9bde3ab6
...
...
@@ -19,8 +19,8 @@ class LoginFormTest extends TestCase
$model
->
password
=
'some_password'
;
$this
->
specify
(
'user should not be able to login, when there is no identity'
,
function
()
use
(
$model
)
{
$this
->
assertFalse
(
$model
->
login
()
);
$this
->
assertTrue
(
Yii
::
$app
->
user
->
isGuest
,
'user should not be logged in'
);
expect
(
'model should not login user'
,
$model
->
login
())
->
false
(
);
expect
(
'user should not be logged in'
,
Yii
::
$app
->
user
->
isGuest
)
->
true
(
);
});
}
...
...
@@ -32,9 +32,9 @@ class LoginFormTest extends TestCase
$model
->
password
=
'wrong-password'
;
$this
->
specify
(
'user should not be able to login with wrong password'
,
function
()
use
(
$model
)
{
$this
->
assertFalse
(
$model
->
login
()
);
$this
->
assertArrayHasKey
(
'password'
,
$model
->
errors
);
$this
->
assertTrue
(
Yii
::
$app
->
user
->
isGuest
,
'user should not be logged in'
);
expect
(
'model should not login user'
,
$model
->
login
())
->
false
(
);
expect
(
'error message should be set'
,
$model
->
errors
)
->
hasKey
(
'password'
);
expect
(
'user should not be logged in'
,
Yii
::
$app
->
user
->
isGuest
)
->
true
(
);
});
}
...
...
@@ -46,9 +46,9 @@ class LoginFormTest extends TestCase
$model
->
password
=
'demo'
;
$this
->
specify
(
'user should be able to login with correct credentials'
,
function
()
use
(
$model
)
{
$this
->
assertTrue
(
$model
->
login
()
);
$this
->
assertArrayNotHasKey
(
'password'
,
$model
->
errors
);
$this
->
assertFalse
(
Yii
::
$app
->
user
->
isGuest
,
'user should be logged in'
);
expect
(
'model should login user'
,
$model
->
login
())
->
true
(
);
expect
(
'error message should not be set'
,
$model
->
errors
)
->
hasntKey
(
'password'
);
expect
(
'user should be logged in'
,
Yii
::
$app
->
user
->
isGuest
)
->
false
(
);
});
}
...
...
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