本文整理汇总了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();
}
示例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');
}
示例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();
}
示例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();
}
示例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();
}
示例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();
}
示例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');
}
示例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();
}
示例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.');
//