123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- use Codeception\Util\Stub;
- require_once __DIR__ . '/TestsForWeb.php';
- /**
- * @group appveyor
- */
- class FrameworksTest extends TestsForWeb
- {
- /**
- * @var \Codeception\Lib\Framework
- */
- protected $module;
- public function setUp()
- {
- $this->module = new \Codeception\Module\UniversalFramework(make_container());
- }
- public function testHttpAuth()
- {
- $this->module->amOnPage('/auth');
- $this->module->see('Unauthorized');
- $this->module->amHttpAuthenticated('davert', 'password');
- $this->module->amOnPage('/auth');
- $this->module->dontSee('Unauthorized');
- $this->module->see("Welcome, davert");
- $this->module->amHttpAuthenticated('davert', '123456');
- $this->module->amOnPage('/auth');
- $this->module->see('Forbidden');
- }
- public function testExceptionIsThrownOnRedirectToExternalUrl()
- {
- $this->setExpectedException('\Codeception\Exception\ExternalUrlException');
- $this->module->amOnPage('/external_url');
- $this->module->click('Next');
- }
- public function testMoveBackOneStep()
- {
- $this->module->amOnPage('/iframe');
- $this->module->switchToIframe('content');
- $this->module->seeCurrentUrlEquals('/info');
- $this->module->click('Ссылочка');
- $this->module->seeCurrentUrlEquals('/');
- $this->module->moveBack();
- $this->module->seeCurrentUrlEquals('/info');
- $this->module->click('Sign in!');
- $this->module->seeCurrentUrlEquals('/login');
- }
- public function testMoveBackTwoSteps()
- {
- $this->module->amOnPage('/iframe');
- $this->module->switchToIframe('content');
- $this->module->seeCurrentUrlEquals('/info');
- $this->module->click('Ссылочка');
- $this->module->seeCurrentUrlEquals('/');
- $this->module->moveBack(2);
- $this->module->seeCurrentUrlEquals('/iframe');
- }
- public function testMoveBackThrowsExceptionIfNumberOfStepsIsInvalid()
- {
- $this->module->amOnPage('/iframe');
- $this->module->switchToIframe('content');
- $this->module->seeCurrentUrlEquals('/info');
- $this->module->click('Ссылочка');
- $this->module->seeCurrentUrlEquals('/');
- $invalidValues = [0, -5, 1.5, 'a', 3];
- foreach ($invalidValues as $invalidValue) {
- try {
- $this->module->moveBack($invalidValue);
- $this->fail('Expected to get exception here');
- } catch (\InvalidArgumentException $e) {
- codecept_debug('Exception: ' . $e->getMessage());
- }
- }
- }
- public function testCreateSnapshotOnFail()
- {
- $module = Stub::construct(get_class($this->module), [make_container()], [
- '_savePageSource' => \Codeception\Stub\Expected::once(function ($filename) {
- $this->assertEquals(codecept_log_dir('Codeception.Module.UniversalFramework.looks.like..test.fail.html'), $filename);
- }),
- ]);
- $module->amOnPage('/');
- $cest = new \Codeception\Test\Cest($this->module, 'looks:like::test', 'demo1Cest.php');
- $module->_failed($cest, new \PHPUnit\Framework\AssertionFailedError());
- }
- }
|