yii2-netdisk/tests/codeception/acceptance/ContactCept.php

50 lines
1.5 KiB
PHP
Raw Normal View History

<?php
use tests\codeception\_pages\ContactPage;
2013-12-02 19:25:21 +08:00
$I = new AcceptanceTester($scenario);
$I->wantTo('ensure that contact works');
2013-12-02 19:25:21 +08:00
2013-12-18 12:43:43 +08:00
$contactPage = ContactPage::openBy($I);
$I->see('Contact', 'h1');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('submit contact form with no data');
$contactPage->submit([]);
$I->expectTo('see validations errors');
$I->see('Contact', 'h1');
$I->see('Name cannot be blank');
$I->see('Email cannot be blank');
$I->see('Subject cannot be blank');
$I->see('Body cannot be blank');
$I->see('The verification code is incorrect');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('submit contact form with not correct email');
$contactPage->submit([
2014-08-17 22:45:58 +08:00
'name' => 'tester',
'email' => 'tester.email',
'subject' => 'test subject',
'body' => 'test content',
'verifyCode' => 'testme',
2013-10-18 20:03:36 +08:00
]);
2013-12-02 19:25:21 +08:00
$I->expectTo('see that email adress is wrong');
$I->dontSee('Name cannot be blank', '.help-inline');
$I->see('Email is not a valid email address.');
$I->dontSee('Subject cannot be blank', '.help-inline');
$I->dontSee('Body cannot be blank', '.help-inline');
$I->dontSee('The verification code is incorrect', '.help-inline');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('submit contact form with correct data');
$contactPage->submit([
2014-08-17 22:45:58 +08:00
'name' => 'tester',
'email' => 'tester@example.com',
'subject' => 'test subject',
'body' => 'test content',
'verifyCode' => 'testme',
2013-10-18 20:03:36 +08:00
]);
if (method_exists($I, 'wait')) {
2014-03-16 12:46:16 +08:00
$I->wait(3); // only for selenium
}
$I->dontSeeElement('#contact-form');
$I->see('Thank you for contacting us. We will respond to you as soon as possible.');