@@ -0,0 +1,9 @@ | |||
<?php | |||
return [ | |||
'components' => [ | |||
'view' => [ | |||
'class' => 'common\components\ViewBackend', | |||
], | |||
], | |||
]; |
@@ -2,4 +2,11 @@ | |||
/** | |||
* Application configuration for all backend test types | |||
*/ | |||
return []; | |||
return [ | |||
'components' => [ | |||
'view' => [ | |||
'class' => 'common\components\ViewBackend', | |||
], | |||
], | |||
]; |
@@ -3,4 +3,10 @@ | |||
* Application configuration for all frontend test types | |||
*/ | |||
return []; | |||
return [ | |||
'components' => [ | |||
'view' => [ | |||
'class' => 'common\components\ViewFrontend', | |||
], | |||
], | |||
]; |
@@ -3,4 +3,10 @@ | |||
* Application configuration for all frontend test types | |||
*/ | |||
return []; | |||
return [ | |||
'components' => [ | |||
'view' => [ | |||
'class' => 'producer\components\ProducerView', | |||
], | |||
], | |||
]; |
@@ -9,7 +9,7 @@ $I = new FunctionalTester($scenario); | |||
$contactPage = ContactPage::openBy($I); | |||
$I->wantTo("m'assurer que le formulaire de contact fonctionne"); | |||
$I->see('Me contacter', 'h1'); | |||
$I->see('Contact', 'h1'); | |||
$I->amGoingTo("envoyer un message"); | |||
$contactPage->submit([ | |||
@@ -19,4 +19,4 @@ $contactPage->submit([ | |||
'body' => 'Message', | |||
'isTest' => 'isTest' | |||
]); | |||
$I->see('Votre message a bien été envoyé', '.alert-success'); | |||
$I->see('Merci pour votre message', '.alert-success'); |
@@ -6,6 +6,4 @@ use tests\codeception\frontend\FunctionalTester; | |||
$I = new FunctionalTester($scenario); | |||
$I->wantTo("m'assurer que la page d'accueil s'affiche"); | |||
$I->amOnPage('site/index'); | |||
$I->see('distribution alimentaire', 'h1'); | |||
$I->see('Fonctionnalités', '.the-title'); | |||
$I->see('Tarifs', '.the-title'); | |||
$I->see('un outil pour organiser des ventes en circuit court', 'h1'); |
@@ -1,9 +0,0 @@ | |||
<?php | |||
use tests\codeception\frontend\FunctionalTester; | |||
/* @var $scenario Codeception\Scenario */ | |||
$I = new FunctionalTester($scenario); | |||
$I->wantTo("m'assurer que la page des tarifs s'affiche"); | |||
$I->amOnPage('site/prices'); | |||
$I->see('Tarifs', 'h1'); |
@@ -0,0 +1,9 @@ | |||
<?php | |||
use tests\codeception\frontend\FunctionalTester; | |||
/* @var $scenario Codeception\Scenario */ | |||
$I = new FunctionalTester($scenario); | |||
$I->wantTo("m'assurer que la page 'fonctionnalités, services & tarifs' fonctionne"); | |||
$I->amOnPage('site/service'); | |||
$I->see('Fonctionnalités, services & tarifs', 'h1'); |
@@ -23,11 +23,11 @@ $signupPage->submit([ | |||
'id_producer' => '32', | |||
'is_test' => 'isTest' | |||
]); | |||
$I->see('Inscription confirmée', 'h1'); | |||
$I->see('Votre inscription a bien été prise en compte', '.alert-success'); | |||
$I->amOnPage('logout'); | |||
$I->see('distribution alimentaire', 'h1'); | |||
$I->see('un outil pour organiser des ventes en circuit court', 'h1'); | |||
$I->amOnPage($signupPage->route); | |||
@@ -47,4 +47,4 @@ $signupPage->submit([ | |||
'cgv' => '1', | |||
'is_test' => 'isTest' | |||
]); | |||
$I->see('Inscription confirmée', 'h1'); | |||
$I->see('Votre inscription a bien été prise en compte', '.alert-success'); |