Phalcon\Test\Unit\Tag\TagSelectStaticTest::testSelectStaticOptGroupWithSetDefaultElementNotPresent PHP Метод

testSelectStaticOptGroupWithSetDefaultElementNotPresent() публичный Метод

Tests selectStatic with setDefault and element not present
С версии: 2014-09-05
Автор: Nikolaos Dimopoulos ([email protected])
    public function testSelectStaticOptGroupWithSetDefaultElementNotPresent()
    {
        $this->specify("selectStatic with setDefault and element not present returns invalid HTML", function () {
            Tag::resetInput();
            $params = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
            $options = ["Active" => ['A1' => 'A One', 'A2' => 'A Two'], "B" => "B One"];
            $expected = '<select id="x_name" name="x_other" class="x_class" size="10">' . PHP_EOL . chr(9) . '<optgroup label="Active">' . PHP_EOL . chr(9) . '<option value="A1">A One</option>' . PHP_EOL . chr(9) . '<option value="A2">A Two</option>' . PHP_EOL . chr(9) . '</optgroup>' . PHP_EOL . chr(9) . '<option value="B">B One</option>' . PHP_EOL . '</select>';
            Tag::setDefault('x_name', 'I');
            $actual = Tag::selectStatic($params, $options);
            Tag::resetInput();
            expect($actual)->equals($expected);
        });
    }