2013-06-24 07:26:16 +08:00
|
|
|
<?php
|
2013-12-17 07:27:33 +08:00
|
|
|
|
2013-12-02 19:25:21 +08:00
|
|
|
use tests\functional\_pages\ContactPage;
|
|
|
|
|
2013-06-24 07:26:16 +08:00
|
|
|
$I = new TestGuy($scenario);
|
|
|
|
$I->wantTo('ensure that contact works');
|
2013-12-02 19:25:21 +08:00
|
|
|
$contactPage = ContactPage::of($I);
|
|
|
|
|
|
|
|
$I->amOnPage(ContactPage::$URL);
|
2013-06-24 07:26:16 +08:00
|
|
|
$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');
|
2013-06-24 07:26:16 +08:00
|
|
|
$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([
|
|
|
|
'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');
|
2013-06-24 07:26:16 +08:00
|
|
|
$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([
|
|
|
|
'name' => 'tester',
|
|
|
|
'email' => 'tester@example.com',
|
|
|
|
'subject' => 'test subject',
|
|
|
|
'body' => 'test content',
|
|
|
|
'verifyCode' => 'testme',
|
2013-10-18 20:03:36 +08:00
|
|
|
]);
|
2013-06-24 07:26:16 +08:00
|
|
|
$I->dontSeeElement('#contact-form');
|
|
|
|
$I->see('Thank you for contacting us. We will respond to you as soon as possible.');
|