当前位置: 首页>>代码示例>>PHP>>正文


PHP FunctionalTester::seeAuthentication方法代码示例

本文整理汇总了PHP中FunctionalTester::seeAuthentication方法的典型用法代码示例。如果您正苦于以下问题:PHP FunctionalTester::seeAuthentication方法的具体用法?PHP FunctionalTester::seeAuthentication怎么用?PHP FunctionalTester::seeAuthentication使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FunctionalTester的用法示例。


在下文中一共展示了FunctionalTester::seeAuthentication方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _after

 public function _after(FunctionalTester $I)
 {
     $I->amOnPage(PostsPage::$url);
     $I->seeCurrentUrlEquals(PostsPage::$url);
     $I->seeAuthentication();
     $I->logout();
     $I->dontSeeAuthentication();
 }
开发者ID:jenky,项目名称:laravel-api-starter,代码行数:8,代码来源:AuthCest.php

示例2: createATicketSuccessfully

 public function createATicketSuccessfully(FunctionalTester $I)
 {
     $I->amLoggedAs(User::where('email', 'wayne@chargemasterplc.com')->first());
     $I->seeAuthentication();
     $I->amOnPage('/ticket/create');
     $I->see('Create Ticket', 'h1');
     $I->fillField('customer_name', 'Evie Martell');
     $I->fillField('customer_address', 'Luton, LU1 9AB');
     $I->fillField('customer_tel', '07710999888');
     $I->fillField('customer_email', 'evie.martell@chargemasterplc.com');
     $I->selectOption('select[name=type]', 'Fault');
     $I->selectOption('select[name=category_id]', '1');
     $I->fillField('post_serial', '2997');
     $I->fillField('description', 'Testing the post fault');
     $I->seeAuthentication();
     $I->click('Create');
     $I->see('Ticket created');
 }
开发者ID:richmartell,项目名称:laravel,代码行数:18,代码来源:TicketCest.php

示例3: trySigninWithDifferentRole

 public function trySigninWithDifferentRole(FunctionalTester $I)
 {
     $I->wantTo('Login as user with different role');
     $I->dontSeeAuthentication();
     $I->amOnPage('/login');
     $I->fillField('identifier', 'spectator');
     $I->fillField('password', '123456');
     $I->click('button[type=submit]');
     $I->seeCurrentUrlEquals('/admin/profile');
     $I->seeAuthentication();
 }
开发者ID:inoplate,项目名称:account,代码行数:11,代码来源:LoginCest.php

示例4: testValidRegistration

 public function testValidRegistration(FunctionalTester $I)
 {
     $I->fillField('name', $this->tester['name']);
     $I->fillField('email', $this->tester['email']);
     $I->fillField('password', $this->tester['password']);
     $I->fillField('password_confirmation', $this->tester['password']);
     $I->click('Register', 'button');
     $I->dontSeeFormErrors();
     $I->seeRecord('users', ['name' => $this->tester['name'], 'email' => $this->tester['email']]);
     $I->seeAuthentication();
 }
开发者ID:stellargames,项目名称:StellarDestiny,代码行数:11,代码来源:RegistrationCest.php

示例5: testLoginSuccsess

 public function testLoginSuccsess(FunctionalTester $I)
 {
     $I->wantTo('login as a user');
     $I->haveRecord('users', ['name' => 'john', 'email' => 'john@gmail.com', 'password' => bcrypt('123456'), 'created_at' => new DateTime(), 'updated_at' => new DateTime()]);
     $I->amOnPage('auth/login');
     $I->fillField('email', 'john@gmail.com');
     $I->fillField('password', '123456');
     $I->click('Login');
     $I->amOnPage('/');
     $I->seeAuthentication();
 }
开发者ID:nguyentantintb,项目名称:wedding-card,代码行数:11,代码来源:WeddingCardTestCest.php

示例6: loginUsingCredentials

 public function loginUsingCredentials(FunctionalTester $I)
 {
     $I->dontSeeAuthentication();
     $I->haveRecord('users', $this->userAttributes);
     $I->amLoggedAs(['email' => 'john@doe.com', 'password' => 'password']);
     $I->amOnPage(PostsPage::$url);
     $I->seeCurrentUrlEquals(PostsPage::$url);
     $I->seeAuthentication();
     $I->logout();
     $I->dontSeeAuthentication();
 }
开发者ID:resulaslan,项目名称:sample-l4-app,代码行数:11,代码来源:AuthCest.php

示例7: tryToResetPasswordWithValidToken

 public function tryToResetPasswordWithValidToken(FunctionalTester $I)
 {
     $I->seeRecord('password_resets', ['email' => 'admin@site.com']);
     $I->wantTo('Reset my password invalid token');
     $I->amOnPage('/password/reset/reset-token');
     $I->fillField('email', 'admin@site.com');
     $I->fillField('password', '123456');
     $I->fillField('password_confirmation', '123456');
     $I->click('button[type=submit]');
     $I->dontSeeRecord('password_resets', ['email' => 'admin@site.com']);
     $I->seeAuthentication();
     $I->seeCurrentUrlEquals('/admin/dashboard');
 }
开发者ID:inoplate,项目名称:account,代码行数:13,代码来源:PasswordCest.php

示例8: registrationWorks

 public function registrationWorks(FunctionalTester $I)
 {
     $I->amOnPage('/auth/register');
     $I->dontSeeAuthentication();
     $I->see('Register', 'h1');
     $I->fillField('name', 'Wayne');
     $I->fillField('email', 'simon@chargemasterplc.com');
     $I->fillField('password', 'secret');
     $I->fillField('password_confirmation', 'secret');
     $I->click('Register');
     $I->seeCurrentUrlEquals('/dashboard');
     $I->see('This is the dashboard');
     $I->seeAuthentication();
 }
开发者ID:richmartell,项目名称:laravel,代码行数:14,代码来源:AuthCest.php

示例9: FunctionalTester

<?php

$I = new FunctionalTester($scenario);
$I->wantTo('create a currency without data');
$I->am('a Administrator user');
$I->dontSeeAuthentication();
$I->amLoggedAs(['email' => 'admin@admin.com', 'password' => 'admin']);
$I->seeAuthentication();
//When
$I->amOnPage('/settings/currency');
//And
$I->see('Create');
$I->click('Create');
//Then
$I->seeCurrentUrlEquals('/settings/currency/create');
//When
$form = ['name' => '', 'symbol' => ''];
//And
$I->submitForm('//form', $form, 'Create');
//Then
$I->seeFormErrorMessage('name', 'The name field is required.');
//
开发者ID:raulbravo23,项目名称:salepoint,代码行数:22,代码来源:CreateCurrencyWithOutDataCept.php


注:本文中的FunctionalTester::seeAuthentication方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。