這是一個系列文章,分3部分:
1带兜、準(zhǔn)備工作--Yii2高級模板的安裝枫笛,以及編寫一個RESTful
2、測試工作--單元測試和API測試
3刚照、力爭上游--覆蓋率刑巧、基礎(chǔ)概念、引用文獻(xiàn)等
這是第一部分
測試之前我們有2件準(zhǔn)備工作:一是安裝Yii2高級模板无畔,二是編寫一個RESTful啊楚。
安裝
目的是將yii2-app-advanced的測試跑起來。
1浑彰、如果你已經(jīng)安裝了composer恭理,可以跳到下一步。
2郭变、安裝和配置Yii2高級模板,參看yii2-app-advanced的Install
3颜价、目前安裝的Yii2.0.14,需要將composer.json中"codeception/verify": "~0.3.1",
改為"codeception/verify": "~1.0.0",
否則會出現(xiàn)[Error] Class 'PHPUnit_Framework_Assert' not found
诉濒。別忘了執(zhí)行composer update
4周伦、因為建議測試數(shù)據(jù)庫和開發(fā)、正式環(huán)境分開未荒。
所以需要新建數(shù)據(jù)庫yii2advanced_test
专挪,然后執(zhí)行php yii_test migrate
。每次有數(shù)據(jù)庫的變更都要執(zhí)行一次茄猫。這也是migrate的價值體現(xiàn)
5狈蚤、執(zhí)行./vendor/bin/codecept run
運(yùn)行測試。參看Testing
建立一個restful的演示
目的是為測試準(zhǔn)備一個方法和model划纽,用于后面的測試脆侮。
1、增加一個應(yīng)用blog(也可以定義為api等)勇劣,必看Adding more applications
別忘了執(zhí)行php init
對blog進(jìn)行安裝靖避。
然后如果你的數(shù)據(jù)庫配置有變化潭枣,請修改common/config/main-local.php
的db。
2幻捏、執(zhí)行php yii migrate/create create_news_table
盆犁,新建一個news表,在console/migrations/
下面多了一個類似m180228_073146_create_news_table.php
的文件篡九,添加字段
'code' => $this->string(32)->notNull()->unique(),
'title' => $this->string()->notNull(),
'content' => $this->text()->null(),
'status' => $this->smallInteger()->notNull()->defaultValue(0),
'created_at' => $this->integer()->notNull()->defaultValue(0),
'created_by' => $this->integer()->notNull()->defaultValue(0),
'updated_at' => $this->integer()->notNull()->defaultValue(0),
'updated_by' => $this->integer()->notNull()->defaultValue(0),
在common\models下新建News,也可以用gii工具生成谐岁。最簡單的類似:
namespace common\models;
class News extends \yii\db\ActiveRecord
{
public function rules()
{
return [
[['code', 'title'], 'required'],
[['content'], 'string'],
[['status', 'created_at', 'created_by', 'updated_at', 'updated_by'], 'integer'],
[['code'], 'string', 'max' => 32],
[['title'], 'string', 'max' => 255],
[['code'], 'unique'],
];
}
}
別忘記執(zhí)行php yii_test migrate
3、遵照RESful規(guī)范新建news的CRUD榛臼,參看Rest快速入門
1)伊佃、新建控制器:
namespace blog\controllers;
use yii\rest\ActiveController;
class NewsController extends ActiveController
{
public $modelClass = 'common\models\News';
}
2)、配置URL規(guī)則沛善,修改blog/config/main.php
'urlManager' => [
'enablePrettyUrl' => true,
//'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'news'],
],
],
3)航揉、啟用 JSON 輸入和輸出,修改blog/config/main.php
'request' => [
//'class' => '\yii\web\Request',
'enableCookieValidation' => false,
'parsers' => [
'application/json' => 'yii\web\JsonParser',
],
],
'response' => [
'format' => yii\web\Response::FORMAT_JSON,
'charset' => 'UTF-8',
],
4)金刁、利用postman檢查news的restful api帅涂。
4、為了演示測試尤蛮,我們在common下新建文件夾helpers,新建CustomString.php媳友,新增一個方法。
內(nèi)容如下:
namespace common\helpers;
class CustomString
{
//生成一個code
public static function generateCode($length = 20, $prefix = '')
{
return $prefix . \Yii::$app->security->generateRandomString($length);
}
}
并且产捞,在common\models\news.php的rules方法后新增:
public function beforeValidate()
{
if (empty($this->code)) {
$this->code = CustomString::generateCode(10, 'n');
}
return parent::beforeValidate();
}
準(zhǔn)備工作已經(jīng)完成庆锦,這里到?jīng)]有什么,就是Yii2的常規(guī)開發(fā)轧葛。
下一篇:測試工作