mockApplication([ 'components' => [ 'request' => [ 'class' => 'yii\web\Request', 'url' => '/test', 'enableCsrfValidation' => false, ], 'response' => [ 'class' => 'yii\web\Response', ], ], ]); } public function testEncode() { $this->assertEquals("a<>&"'�", Html::encode("a<>&\"'\x80")); $this->assertEquals('Sam & Dark', Html::encode('Sam & Dark')); } public function testDecode() { $this->assertEquals("a<>&\"'", Html::decode("a<>&"'")); } public function testTag() { $this->assertEquals('
', Html::tag('br')); $this->assertEquals('', Html::tag('span')); $this->assertEquals('
content
', Html::tag('div', 'content')); $this->assertEquals('', Html::tag('input', '', ['type' => 'text', 'name' => 'test', 'value' => '<>'])); $this->assertEquals('', Html::tag('span', '', ['disabled' => true])); } public function testBeginTag() { $this->assertEquals('
', Html::beginTag('br')); $this->assertEquals('', Html::beginTag('span', ['id' => 'test', 'class' => 'title'])); } public function testEndTag() { $this->assertEquals('
', Html::endTag('br')); $this->assertEquals('
', Html::endTag('span')); } public function testStyle() { $content = 'a <>'; $this->assertEquals("", Html::style($content)); $this->assertEquals("", Html::style($content, ['type' => 'text/less'])); } public function testScript() { $content = 'a <>'; $this->assertEquals("", Html::script($content)); $this->assertEquals("", Html::script($content, ['type' => 'text/js'])); } public function testCssFile() { $this->assertEquals('', Html::cssFile('http://example.com')); $this->assertEquals('', Html::cssFile('')); $this->assertEquals("", Html::cssFile('http://example.com', ['condition' => 'IE 9'])); $this->assertEquals("\n" . '' . "\n", Html::cssFile('http://example.com', ['condition' => '(gte IE 9)|(!IE)'])); } public function testJsFile() { $this->assertEquals('', Html::jsFile('http://example.com')); $this->assertEquals('', Html::jsFile('')); $this->assertEquals("", Html::jsFile('http://example.com', ['condition' => 'IE 9'])); $this->assertEquals("\n" . '' . "\n", Html::jsFile('http://example.com', ['condition' => '(gte IE 9)|(!IE)'])); } public function testBeginForm() { $this->assertEquals('
', Html::beginForm()); $this->assertEquals('', Html::beginForm('/example', 'get')); $hiddens = [ '', '', ]; $this->assertEquals('' . "\n" . implode("\n", $hiddens), Html::beginForm('/example?id=1&title=%3C', 'get')); } public function testEndForm() { $this->assertEquals('
', Html::endForm()); } public function testA() { $this->assertEquals('something<>', Html::a('something<>')); $this->assertEquals('something', Html::a('something', '/example')); $this->assertEquals('something', Html::a('something', '')); $this->assertEquals('http://www.быстроном.рф', Html::a('http://www.быстроном.рф', 'http://www.быстроном.рф')); } public function testMailto() { $this->assertEquals('test<>', Html::mailto('test<>')); $this->assertEquals('test<>', Html::mailto('test<>', 'test>')); } public function testImg() { $this->assertEquals('', Html::img('/example')); $this->assertEquals('', Html::img('')); $this->assertEquals('something', Html::img('/example', ['alt' => 'something', 'width' => 10])); } public function testLabel() { $this->assertEquals('', Html::label('something<>')); $this->assertEquals('', Html::label('something<>', 'a')); $this->assertEquals('', Html::label('something<>', 'a', ['class' => 'test'])); } public function testButton() { $this->assertEquals('', Html::button()); $this->assertEquals('', Html::button('content<>', ['name' => 'test', 'value' => 'value'])); $this->assertEquals('', Html::button('content<>', ['type' => 'submit', 'name' => 'test', 'value' => 'value', 'class' => "t"])); } public function testSubmitButton() { $this->assertEquals('', Html::submitButton()); $this->assertEquals('', Html::submitButton('content<>', ['name' => 'test', 'value' => 'value', 'class' => 't'])); } public function testResetButton() { $this->assertEquals('', Html::resetButton()); $this->assertEquals('', Html::resetButton('content<>', ['name' => 'test', 'value' => 'value', 'class' => 't'])); } public function testInput() { $this->assertEquals('', Html::input('text')); $this->assertEquals('', Html::input('text', 'test', 'value', ['class' => 't'])); } public function testButtonInput() { $this->assertEquals('', Html::buttonInput()); $this->assertEquals('', Html::buttonInput('text', ['name' => 'test', 'class' => 'a'])); } public function testSubmitInput() { $this->assertEquals('', Html::submitInput()); $this->assertEquals('', Html::submitInput('text', ['name' => 'test', 'class' => 'a'])); } public function testResetInput() { $this->assertEquals('', Html::resetInput()); $this->assertEquals('', Html::resetInput('text', ['name' => 'test', 'class' => 'a'])); } public function testTextInput() { $this->assertEquals('', Html::textInput('test')); $this->assertEquals('', Html::textInput('test', 'value', ['class' => 't'])); } public function testHiddenInput() { $this->assertEquals('', Html::hiddenInput('test')); $this->assertEquals('', Html::hiddenInput('test', 'value', ['class' => 't'])); } public function testPasswordInput() { $this->assertEquals('', Html::passwordInput('test')); $this->assertEquals('', Html::passwordInput('test', 'value', ['class' => 't'])); } public function testFileInput() { $this->assertEquals('', Html::fileInput('test')); $this->assertEquals('', Html::fileInput('test', 'value', ['class' => 't'])); } public function testTextarea() { $this->assertEquals('', Html::textarea('test')); $this->assertEquals('', Html::textarea('test', 'value<>', ['class' => 't'])); } public function testRadio() { $this->assertEquals('', Html::radio('test')); $this->assertEquals('', Html::radio('test', true, ['class' => 'a', 'value' => null])); $this->assertEquals('', Html::radio('test', true, ['class' => 'a', 'uncheck' => '0', 'value' => 2])); $this->assertEquals('', Html::radio('test', true, [ 'class' => 'a', 'value' => null, 'label' => 'ccc', 'labelOptions' => ['class' =>'bbb'], ])); $this->assertEquals('', Html::radio('test', true, [ 'class' => 'a', 'uncheck' => '0', 'label' => 'ccc', 'value' => 2, ])); } public function testCheckbox() { $this->assertEquals('', Html::checkbox('test')); $this->assertEquals('', Html::checkbox('test', true, ['class' => 'a', 'value' => null])); $this->assertEquals('', Html::checkbox('test', true, ['class' => 'a', 'uncheck' => '0', 'value' => 2])); $this->assertEquals('', Html::checkbox('test', true, [ 'class' => 'a', 'value' => null, 'label' => 'ccc', 'labelOptions' => ['class' =>'bbb'], ])); $this->assertEquals('', Html::checkbox('test', true, [ 'class' => 'a', 'uncheck' => '0', 'label' => 'ccc', 'value' => 2, ])); } public function testDropDownList() { $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::dropDownList('test')); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::dropDownList('test', null, $this->getDataItems())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::dropDownList('test', 'value2', $this->getDataItems())); } public function testListBox() { $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test')); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, $this->getDataItems(), ['size' => 5])); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, $this->getDataItems2())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, $this->getDataItems2(), ['encodeSpaces' => true])); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, $this->getDataItems2(), ['encode' => false])); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, $this->getDataItems2(), ['encodeSpaces' => true, 'encode' => false])); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', 'value2', $this->getDataItems())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', ['value1', 'value2'], $this->getDataItems())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', null, [], ['multiple' => true])); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::listBox('test', '', [], ['unselect' => '0'])); } public function testCheckboxList() { $this->assertEquals('
', Html::checkboxList('test')); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::checkboxList('test', ['value2'], $this->getDataItems())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::checkboxList('test', ['value2'], $this->getDataItems2())); $expected = <<

EOD; $this->assertEqualsWithoutLE($expected, Html::checkboxList('test', ['value2'], $this->getDataItems(), [ 'separator' => "
\n", 'unselect' => '0', ])); $expected = <<0 1 EOD; $this->assertEqualsWithoutLE($expected, Html::checkboxList('test', ['value2'], $this->getDataItems(), [ 'item' => function ($index, $label, $name, $checked, $value) { return $index . Html::label($label . ' ' . Html::checkbox($name, $checked, ['value' => $value])); } ])); } public function testRadioList() { $this->assertEquals('
', Html::radioList('test')); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::radioList('test', ['value2'], $this->getDataItems())); $expected = << EOD; $this->assertEqualsWithoutLE($expected, Html::radioList('test', ['value2'], $this->getDataItems2())); $expected = <<

EOD; $this->assertEqualsWithoutLE($expected, Html::radioList('test', ['value2'], $this->getDataItems(), [ 'separator' => "
\n", 'unselect' => '0', ])); $expected = <<0 1 EOD; $this->assertEqualsWithoutLE($expected, Html::radioList('test', ['value2'], $this->getDataItems(), [ 'item' => function ($index, $label, $name, $checked, $value) { return $index . Html::label($label . ' ' . Html::radio($name, $checked, ['value' => $value])); } ])); } public function testUl() { $data = [ 1, 'abc', '<>', ]; $expected = <<
  • 1
  • abc
  • <>
  • EOD; $this->assertEqualsWithoutLE($expected, Html::ul($data)); $expected = <<
  • 1
  • abc
  • <>
  • EOD; $this->assertEqualsWithoutLE($expected, Html::ul($data, [ 'class' => 'test', 'item' => function ($item, $index) { return "
  • $item
  • "; } ])); $this->assertEquals('
      ', Html::ul([], ['class' => 'test'])); } public function testOl() { $data = [ 1, 'abc', '<>', ]; $expected = <<
    • 1
    • abc
    • <>
    • EOD; $this->assertEqualsWithoutLE($expected, Html::ol($data, [ 'itemOptions' => ['class' => 'ti'], ])); $expected = <<
    • 1
    • abc
    • <>
    • EOD; $this->assertEqualsWithoutLE($expected, Html::ol($data, [ 'class' => 'test', 'item' => function ($item, $index) { return "
    • $item
    • "; } ])); $this->assertEquals('
        ', Html::ol([], ['class' => 'test'])); } public function testRenderOptions() { $data = [ 'value1' => 'label1', 'group1' => [ 'value11' => 'label11', 'group11' => [ 'value111' => 'label111', ], 'group12' => [], ], 'value2' => 'label2', 'group2' => [], ]; $expected = <<please select<> EOD; $attributes = [ 'prompt' => 'please select<>', 'options' => [ 'value111' => ['class' => 'option'], ], 'groups' => [ 'group12' => ['class' => 'group'], ], 'encodeSpaces' => true, ]; $this->assertEqualsWithoutLE($expected, Html::renderSelectOptions(['value111', 'value1'], $data, $attributes)); $attributes = [ 'prompt' => 'please select<>', 'options' => [ 'value111' => ['class' => 'option'], ], 'groups' => [ 'group12' => ['class' => 'group'], ], ]; $this->assertEqualsWithoutLE(str_replace(' ', ' ', $expected), Html::renderSelectOptions(['value111', 'value1'], $data, $attributes)); } public function testRenderAttributes() { $this->assertEquals('', Html::renderTagAttributes([])); $this->assertEquals(' name="test" value="1<>"', Html::renderTagAttributes(['name' => 'test', 'empty' => null, 'value' => '1<>'])); $this->assertEquals(' checked disabled', Html::renderTagAttributes(['checked' => true, 'disabled' => true, 'hidden' => false])); $this->assertEquals(' class="first second"', Html::renderTagAttributes(['class' => ['first', 'second']])); $this->assertEquals('', Html::renderTagAttributes(['class' => []])); $this->assertEquals(' style="width: 100px; height: 200px;"', Html::renderTagAttributes(['style' => ['width' => '100px', 'height' => '200px']])); $this->assertEquals('', Html::renderTagAttributes(['style' => []])); } public function testAddCssClass() { $options = []; Html::addCssClass($options, 'test'); $this->assertEquals(['class' => 'test'], $options); Html::addCssClass($options, 'test'); $this->assertEquals(['class' => 'test'], $options); Html::addCssClass($options, 'test2'); $this->assertEquals(['class' => 'test test2'], $options); Html::addCssClass($options, 'test'); $this->assertEquals(['class' => 'test test2'], $options); Html::addCssClass($options, 'test2'); $this->assertEquals(['class' => 'test test2'], $options); Html::addCssClass($options, 'test3'); $this->assertEquals(['class' => 'test test2 test3'], $options); Html::addCssClass($options, 'test2'); $this->assertEquals(['class' => 'test test2 test3'], $options); $options = [ 'class' => ['test'] ]; Html::addCssClass($options, 'test2'); $this->assertEquals(['class' => ['test', 'test2']], $options); Html::addCssClass($options, 'test2'); $this->assertEquals(['class' => ['test', 'test2']], $options); Html::addCssClass($options, ['test3']); $this->assertEquals(['class' => ['test', 'test2', 'test3']], $options); $options = [ 'class' => 'test' ]; Html::addCssClass($options, ['test1', 'test2']); $this->assertEquals(['class' => 'test test1 test2'], $options); } /** * @depends testAddCssClass */ public function testMergeCssClass() { $options = [ 'class' => [ 'persistent' => 'test1' ] ]; Html::addCssClass($options, ['persistent' => 'test2']); $this->assertEquals(['persistent' => 'test1'], $options['class']); Html::addCssClass($options, ['additional' => 'test2']); $this->assertEquals(['persistent' => 'test1', 'additional' => 'test2'], $options['class']); } public function testRemoveCssClass() { $options = ['class' => 'test test2 test3']; Html::removeCssClass($options, 'test2'); $this->assertEquals(['class' => 'test test3'], $options); Html::removeCssClass($options, 'test2'); $this->assertEquals(['class' => 'test test3'], $options); Html::removeCssClass($options, 'test'); $this->assertEquals(['class' => 'test3'], $options); Html::removeCssClass($options, 'test3'); $this->assertEquals([], $options); $options = ['class' => ['test', 'test2', 'test3']]; Html::removeCssClass($options, 'test2'); $this->assertEquals(['class' => ['test', 2 => 'test3']], $options); Html::removeCssClass($options, 'test'); Html::removeCssClass($options, 'test3'); $this->assertEquals([], $options); $options = [ 'class' => 'test test1 test2' ]; Html::removeCssClass($options, ['test1', 'test2']); $this->assertEquals(['class' => 'test'], $options); } public function testCssStyleFromArray() { $this->assertEquals('width: 100px; height: 200px;', Html::cssStyleFromArray([ 'width' => '100px', 'height' => '200px', ])); $this->assertNull(Html::cssStyleFromArray([])); } public function testCssStyleToArray() { $this->assertEquals([ 'width' => '100px', 'height' => '200px', ], Html::cssStyleToArray('width: 100px; height: 200px;')); $this->assertEquals([], Html::cssStyleToArray(' ')); } public function testAddCssStyle() { $options = ['style' => 'width: 100px; height: 200px;']; Html::addCssStyle($options, 'width: 110px; color: red;'); $this->assertEquals('width: 110px; height: 200px; color: red;', $options['style']); $options = ['style' => 'width: 100px; height: 200px;']; Html::addCssStyle($options, ['width' => '110px', 'color' => 'red']); $this->assertEquals('width: 110px; height: 200px; color: red;', $options['style']); $options = ['style' => 'width: 100px; height: 200px;']; Html::addCssStyle($options, 'width: 110px; color: red;', false); $this->assertEquals('width: 100px; height: 200px; color: red;', $options['style']); $options = []; Html::addCssStyle($options, 'width: 110px; color: red;'); $this->assertEquals('width: 110px; color: red;', $options['style']); $options = []; Html::addCssStyle($options, 'width: 110px; color: red;', false); $this->assertEquals('width: 110px; color: red;', $options['style']); $options = [ 'style' => [ 'width' => '100px' ], ]; Html::addCssStyle($options, ['color' => 'red'], false); $this->assertEquals('width: 100px; color: red;', $options['style']); } public function testRemoveCssStyle() { $options = ['style' => 'width: 110px; height: 200px; color: red;']; Html::removeCssStyle($options, 'width'); $this->assertEquals('height: 200px; color: red;', $options['style']); Html::removeCssStyle($options, ['height']); $this->assertEquals('color: red;', $options['style']); Html::removeCssStyle($options, ['color', 'background']); $this->assertNull($options['style']); $options = []; Html::removeCssStyle($options, ['color', 'background']); $this->assertTrue(!array_key_exists('style', $options)); $options = [ 'style' => [ 'color' => 'red', 'width' => '100px', ], ]; Html::removeCssStyle($options, ['color']); $this->assertEquals('width: 100px;', $options['style']); } public function testBooleanAttributes() { $this->assertEquals('', Html::input('email', 'mail', null, ['required' => false])); $this->assertEquals('', Html::input('email', 'mail', null, ['required' => true])); $this->assertEquals('', Html::input('email', 'mail', null, ['required' => 'hi'])); } public function testDataAttributes() { $this->assertEquals('', Html::tag('link', '', ['src' => 'xyz', 'data' => ['a' => 1, 'b' => 'c']])); $this->assertEquals('', Html::tag('link', '', ['src' => 'xyz', 'ng' => ['a' => 1, 'b' => 'c']])); $this->assertEquals('', Html::tag('link', '', ['src' => 'xyz', 'data-ng' => ['a' => 1, 'b' => 'c']])); $this->assertEquals('', Html::tag('link', '', ['src' => ['a' => 1, 'b' => "It's"]])); } protected function getDataItems() { return [ 'value1' => 'text1', 'value2' => 'text2', ]; } protected function getDataItems2() { return [ 'value1<>' => 'text1<>', 'value 2' => 'text 2', ]; } /** * Data provider for [[testActiveTextInput()]] * @return array test data */ public function dataProviderActiveTextInput() { return [ [ 'some text', [], '', ], [ '', [ 'maxlength' => true ], '', ], [ '', [ 'maxlength' => 99 ], '', ], ]; } /** * @dataProvider dataProviderActiveTextInput * * @param string $value * @param array $options * @param string $expectedHtml */ public function testActiveTextInput($value, array $options, $expectedHtml) { $model = new HtmlTestModel(); $model->name = $value; $this->assertEquals($expectedHtml, Html::activeTextInput($model, 'name', $options)); } /** * Data provider for [[testActivePasswordInput()]] * @return array test data */ public function dataProviderActivePasswordInput() { return [ [ 'some text', [], '', ], [ '', [ 'maxlength' => true ], '', ], [ '', [ 'maxlength' => 99 ], '', ], ]; } /** * @dataProvider dataProviderActivePasswordInput * * @param string $value * @param array $options * @param string $expectedHtml */ public function testActivePasswordInput($value, array $options, $expectedHtml) { $model = new HtmlTestModel(); $model->name = $value; $this->assertEquals($expectedHtml, Html::activePasswordInput($model, 'name', $options)); } /** * Data provider for [[testActiveTextArea()]] * @return array test data */ public function dataProviderActiveTextArea() { return [ [ 'some text', [], '', ], [ 'some text', [ 'maxlength' => true ], '', ], [ 'some text', [ 'maxlength' => 99 ], '', ], [ 'some text', [ 'value' => 'override text' ], '', ], ]; } /** * @dataProvider dataProviderActiveTextArea * * @param string $value * @param array $options * @param string $expectedHtml */ public function testActiveTextArea($value, array $options, $expectedHtml) { $model = new HtmlTestModel(); $model->description = $value; $this->assertEquals($expectedHtml, Html::activeTextArea($model, 'description', $options)); } } class HtmlTestModel extends Model { public $name; public $description; public function rules() { return [ ['name', 'required'], ['name', 'string', 'max' => 100], ['description', 'string', 'max' => 500], ]; } }