KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/irtiweb/CATS/vendor/behat/mink/driver-testsuite/tests/Basic/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/irtiweb/CATS/vendor/behat/mink/driver-testsuite/tests/Basic/ErrorHandlingTest.php
<?php

namespace Behat\Mink\Tests\Driver\Basic;

use Behat\Mink\Tests\Driver\TestCase;

/**
 * @group slow
 */
class ErrorHandlingTest extends TestCase
{
    const NOT_FOUND_XPATH = '//html/./invalid';

    const NOT_FOUND_EXCEPTION = 'Exception';

    const INVALID_EXCEPTION = 'Exception';

    public function testVisitErrorPage()
    {
        $this->getSession()->visit($this->pathTo('/500.php'));

        $this->assertContains(
            'Sorry, a server error happened',
            $this->getSession()->getPage()->getContent(),
            'Drivers allow loading pages with a 500 status code'
        );
    }

    public function testCheckInvalidElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));
        $element = $this->findById('user-name');

        $this->setExpectedException(self::INVALID_EXCEPTION);
        $this->getSession()->getDriver()->check($element->getXpath());
    }

    public function testCheckNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->check(self::NOT_FOUND_XPATH);
    }

    public function testUncheckInvalidElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));
        $element = $this->findById('user-name');

        $this->setExpectedException(self::INVALID_EXCEPTION);
        $this->getSession()->getDriver()->uncheck($element->getXpath());
    }

    public function testUncheckNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->uncheck(self::NOT_FOUND_XPATH);
    }

    public function testSelectOptionInvalidElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));
        $element = $this->findById('user-name');

        $this->setExpectedException(self::INVALID_EXCEPTION);
        $this->getSession()->getDriver()->selectOption($element->getXpath(), 'test');
    }

    public function testSelectOptionNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->selectOption(self::NOT_FOUND_XPATH, 'test');
    }

    public function testAttachFileInvalidElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));
        $element = $this->findById('user-name');

        $this->setExpectedException(self::INVALID_EXCEPTION);
        $this->getSession()->getDriver()->attachFile($element->getXpath(), __FILE__);
    }

    public function testAttachFileNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->attachFile(self::NOT_FOUND_XPATH, __FILE__);
    }

    public function testSubmitFormInvalidElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));
        $element = $this->findById('core');

        $this->setExpectedException(self::INVALID_EXCEPTION);
        $this->getSession()->getDriver()->submitForm($element->getXpath());
    }

    public function testSubmitFormNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->submitForm(self::NOT_FOUND_XPATH);
    }

    public function testGetTagNameNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getTagName(self::NOT_FOUND_XPATH);
    }

    public function testGetTextNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getText(self::NOT_FOUND_XPATH);
    }

    public function testGetHtmlNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getHtml(self::NOT_FOUND_XPATH);
    }

    public function testGetOuterHtmlNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getOuterHtml(self::NOT_FOUND_XPATH);
    }

    public function testGetValueNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getValue(self::NOT_FOUND_XPATH);
    }

    public function testSetValueNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->setValue(self::NOT_FOUND_XPATH, 'test');
    }

    public function testIsSelectedNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->isSelected(self::NOT_FOUND_XPATH);
    }

    public function testIsCheckedNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->isChecked(self::NOT_FOUND_XPATH);
    }

    public function testIsVisibleNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->isVisible(self::NOT_FOUND_XPATH);
    }

    public function testClickNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->click(self::NOT_FOUND_XPATH);
    }

    public function testDoubleClickNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->doubleClick(self::NOT_FOUND_XPATH);
    }

    public function testRightClickNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->rightClick(self::NOT_FOUND_XPATH);
    }

    public function testGetAttributeNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->getAttribute(self::NOT_FOUND_XPATH, 'id');
    }

    public function testMouseOverNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->mouseOver(self::NOT_FOUND_XPATH);
    }

    public function testFocusNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->focus(self::NOT_FOUND_XPATH);
    }

    public function testBlurNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->blur(self::NOT_FOUND_XPATH);
    }

    public function testKeyPressNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->keyPress(self::NOT_FOUND_XPATH, 'a');
    }

    public function testKeyDownNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->keyDown(self::NOT_FOUND_XPATH, 'a');
    }

    public function testKeyUpNotFoundElement()
    {
        $this->getSession()->visit($this->pathTo('/index.html'));

        $this->setExpectedException(self::NOT_FOUND_EXCEPTION);
        $this->getSession()->getDriver()->keyUp(self::NOT_FOUND_XPATH, 'a');
    }
}

Anon7 - 2021