laravel tag assertions
v2.0.2
Laravel 附帶了許多很棒的功能,但我最喜歡的功能之一是它讓測試應用程式變得非常容易。
Laravel 標籤斷言旨在透過為 HTML 標籤添加有用的斷言,使 Laravel 提供的令人難以置信的 HTTP 測試功能變得更加強大。
我經常想斷言回應包含某些元素(即:具有某些 props 的 Vue 元件),但不希望換行符和其他空格起作用。使用像$response->assertSee(...)
這樣的方法對於這個特定的用例來說並不理想。 Laravel Dusk 也不是一個理想的選擇,因為它可能很慢而且有時很脆弱。
composer require --dev mikerogne/laravel-tag-assertions
安裝後,您的 TestResponse 執行個體現在可以存取新的斷言。請參閱下面的用法和範例。
$selector是您要符合的標籤的名稱。您可以根據需要獲得具體的資訊。 $attributes是標籤必須具有的屬性陣列。
簡單的 | 更具體 |
---|---|
按鈕 | Button.btn.btn-默認 |
一個 | 一個[角色=選項卡] |
如果您指定回調,則會向其傳遞三個參數:
button
或a
["class" => "btn btn-default"]
。有時我們只關心頁面上有特定內容的標籤。一個常見的用例是文字區域欄位。
$response->assertSeeTagContent('textarea[name=about]', $user->about);
< body >
< h1 > Contrived Example h1 >
< form >
< p >
< label > First Name label >
< input type =" text " name =" first_name " value =" {{ old('first_name') }} " >
p >
< p >
< label > Last Name label >
< input type =" text " name =" last_name " value =" {{ old('last_name') }} " >
p >
< p >
< label > Email label >
< input type =" text " name =" email " value =" {{ old('email') }} " >
p >
< p >
< button type =" submit " > Register button >
p >
form >
body >
namespace Tests Feature ;
class ExampleTest extends TestCase
{
/ * * @ test * /
public function uses_old_input_when_validation_fails ()
{
$ data = [
' first_name ' => ' John ' ,
' last_name ' => ' Doe ' ,
' email ' => '' , // oops !
];
$ response = $ this -> post ( ' /register ' , $ data );
$ response -> assertSeeTag ( ' input[name=first_name] ' , [
' value ' => $ data [ ' first_name ' ],
]);
$ response -> assertSeeTag ( ' input[name=last_name] ' , [
' value ' => $ data [ ' last_name ' ],
]);
}
}
< body >
< h1 > Another Contrived Example h1 >
< blog-posts
:posts =" {{ $posts->toJson() }} "
> blog-posts >
body >
namespace Tests Feature ;
class VueTest extends TestCase
{
/ * * @ test * /
public function lists_blog_posts ()
{
$ posts = factory ( App Post::class, 5 )-> create ();
$ response = $ this -> get ( ' / ' , $ data );
$ response -> assertSeeTagContent ( ' h1 ' , ' Another Contrived Example ' );
$ response -> assertSeeTag ( ' blog-posts ' , [
' :posts ' => e ( $ posts -> toJson ()),
]);
}
}
< body >
< h1 > Callback Example h1 >
< h2 class =" section-title " data-foobar =" bazburk " >
Product Review
h2 >
< p class =" summary " > Lorem ipsum dolor sit amet, consectetur adipiscing elit. p >
body >
namespace Tests Feature ;
class CallbackTest extends TestCase
{
/ * * @ test * /
public function shows_product_review ()
{
$ response = $ this -> get ( ' / ' , $ data );
$ response -> assertSeeTag ( ' h2 ' , function ( $ tag , $ attributes , $ content ) {
// $ tag - > "h2"
// $ attributes - > [ 'class' = > 'section-title' , 'data-foobar' = > 'bazburk' ]
// $ content - > Product Review ( but including the whitespace !)
return Illuminate Support Str:: contains ( $ content , ' Product Review ' );
});
$ response -> assertSeeTagContent ( ' p.summary ' , ' Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' );
}
}
該程式碼是根據 MIT 許可證授權的開源軟體。