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 许可证授权的开源软件。