84 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Magento\Ui\Component\Control;
 | 
						|
 | 
						|
use Magento\Framework\View\LayoutInterface;
 | 
						|
use Magento\TestFramework\Helper\Bootstrap;
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test for the button control.
 | 
						|
 *
 | 
						|
 * @magentoAppArea frontend
 | 
						|
 */
 | 
						|
class ButtonTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var LayoutInterface
 | 
						|
     */
 | 
						|
    private $layout;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritDoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $objectManager = Bootstrap::getObjectManager();
 | 
						|
        $this->layout = $objectManager->get(LayoutInterface::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create the block.
 | 
						|
     *
 | 
						|
     * @return Button
 | 
						|
     */
 | 
						|
    private function createBlock(): Button
 | 
						|
    {
 | 
						|
        /** @var Button $block */
 | 
						|
        $block = $this->layout->createBlock(Button::class, 'button_block');
 | 
						|
        $block->setLayout($this->layout);
 | 
						|
 | 
						|
        return $block;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test resulting button HTML.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testToHtml(): void
 | 
						|
    {
 | 
						|
        $block = $this->createBlock();
 | 
						|
        $block->addData(
 | 
						|
            [
 | 
						|
                'type' => 'button',
 | 
						|
                'on_click' => $onclick = 'console.log("Button pressed!")',
 | 
						|
                'disabled' => false,
 | 
						|
                'title' => 'A button control',
 | 
						|
                'label' => 'A button control',
 | 
						|
                'class' => 'button',
 | 
						|
                'id' => 'button',
 | 
						|
                'element_name' => 'some-name',
 | 
						|
                'value' => 'Press a button',
 | 
						|
                'data-style' => 'width: 100px',
 | 
						|
                'style' => 'height: 200px'
 | 
						|
            ]
 | 
						|
        );
 | 
						|
 | 
						|
        $html = $block->toHtml();
 | 
						|
        $this->assertStringContainsString('<button ', $html);
 | 
						|
        $this->assertStringContainsString('<span>A button control</span>', $html);
 | 
						|
        $this->assertStringNotContainsString('onclick=', $html);
 | 
						|
        $this->assertStringNotContainsString('style=', $html);
 | 
						|
        $this->assertMatchesRegularExpression('/\<script.*?\>.*?' .preg_quote($onclick) .'.*?\<\/script\>/ims', $html);
 | 
						|
        $this->assertStringContainsString('height', $html);
 | 
						|
        $this->assertStringContainsString('200px', $html);
 | 
						|
    }
 | 
						|
}
 |