56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
namespace Magento\Payment\Block\Transparent;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test for \Magento\Payment\Block\Transparent\Iframe
 | 
						|
 */
 | 
						|
class IframeTest extends \PHPUnit\Framework\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @magentoAppIsolation enabled
 | 
						|
     * @magentoAppArea frontend
 | 
						|
     * @dataProvider xssDataProvider
 | 
						|
     */
 | 
						|
    public function testToHtml($xssString)
 | 
						|
    {
 | 
						|
        /** @var $block Iframe */
 | 
						|
        $block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
 | 
						|
            \Magento\Framework\View\LayoutInterface::class
 | 
						|
        )->createBlock(
 | 
						|
            \Magento\Payment\Block\Transparent\Iframe::class
 | 
						|
        );
 | 
						|
 | 
						|
        $block->setTemplate('transparent/iframe.phtml');
 | 
						|
        $block->setData(
 | 
						|
            'params',
 | 
						|
            [
 | 
						|
                'redirect' => $xssString,
 | 
						|
                'redirect_parent' => $xssString,
 | 
						|
                'error_msg' => $xssString
 | 
						|
            ]
 | 
						|
        );
 | 
						|
 | 
						|
        $content = $block->toHtml();
 | 
						|
 | 
						|
        $this->assertStringNotContainsString($xssString, $content, 'Params must be escaped');
 | 
						|
        $this->assertStringContainsString($block->escapeJs($xssString), $content, 'Content must be present');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function xssDataProvider()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            ['</script><script>alert("XSS")</script>'],
 | 
						|
            ['javascript%3Aalert%28String.fromCharCode%280x78%29%2BString.fromCharCode%280x73%29%2BString.'
 | 
						|
                . 'fromCharCode%280x73%29%29'],
 | 
						|
            ['javascript:alert(String.fromCharCode(0x78)+String.fromCharCode(0x73)+String.fromCharCode(0x73))']
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |