![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/framework/Convert/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); /** * Magento_Convert Test Case for \Magento\Framework\Convert\Excel Export */ namespace Magento\Framework\Convert\Test\Unit; use Magento\Framework\Convert\Excel; use Magento\Framework\Filesystem\Driver\File; use Magento\Framework\Filesystem\File\Write; use PHPUnit\Framework\TestCase; class ExcelTest extends TestCase { /** * Test data * * @var array */ private $_testData = [ [ 'ID', 'Name', 'Email', 'Group', 'Telephone', '+Telephone', 'ZIP', '0ZIP', 'Country', 'State/Province', 'Symbol=', 'Symbol-', 'Symbol+' ], [ 1, 'Jon Doe', '[email protected]', 'General', '310-111-1111', '+310-111-1111', 90232, '090232', 'United States', 'California', '=', '-', '+' ], ]; protected $_testHeader = [ 'HeaderID', 'HeaderName', 'HeaderEmail', 'HeaderGroup', 'HeaderPhone', 'Header+Phone', 'HeaderZIP', 'Header0ZIP', 'HeaderCountry', 'HeaderRegion', 'HeaderSymbol=', 'HeaderSymbol-', 'HeaderSymbol+' ]; protected $_testFooter = [ 'FooterID', 'FooterName', 'FooterEmail', 'FooterGroup', 'FooterPhone', 'Footer+Phone', 'FooterZIP', 'Footer0ZIP', 'FooterCountry', 'FooterRegion', 'FooterSymbol=', 'FooterSymbol-', 'FooterSymbol+' ]; /** * Path for Sample File * * @return string */ protected function _getSampleOutputFile() { return __DIR__ . '/_files/sample.xml'; } /** * Callback method * * @param array $row * @return array */ public function callbackMethod($row) { $data = []; foreach ($row as $value) { $data[] = $value . '_TRUE_'; } return $data; } /** * Test \Magento\Framework\Convert\Excel->convert() * \Magento\Framework\Convert\Excel($iterator) * * @return void */ public function testConvert() { $convert = new Excel(new \ArrayIterator($this->_testData)); $convert->setDataHeader($this->_testHeader); $convert->setDataFooter($this->_testFooter); $this->assertXmlStringEqualsXmlString( file_get_contents($this->_getSampleOutputFile()), $convert->convert() ); } /** * Test \Magento\Framework\Convert\Excel->convert() * \Magento\Framework\Convert\Excel($iterator, $callbackMethod) * * @return void */ public function testConvertCallback() { $convert = new Excel( new \ArrayIterator($this->_testData), [$this, 'callbackMethod'] ); $this->assertStringContainsString( '_TRUE_', $convert->convert(), 'Failed asserting that callback method is called.' ); } /** * Write Data into File * * @param bool $callback * @return string */ protected function _writeFile($callback = false) { $name = hash('md5', (string)microtime()); $file = TESTS_TEMP_DIR . '/' . $name . '.xml'; $stream = new Write( $file, new File(), 'w+' ); $stream->lock(); if (!$callback) { $convert = new Excel(new \ArrayIterator($this->_testData)); $convert->setDataHeader($this->_testHeader); $convert->setDataFooter($this->_testFooter); } else { $convert = new Excel( new \ArrayIterator($this->_testData), [$this, 'callbackMethod'] ); } $convert->write($stream); $stream->unlock(); $stream->close(); return $file; } /** * Test \Magento\Framework\Convert\Excel->write() * \Magento\Framework\Convert\Excel($iterator) * * @return void */ public function testWrite() { $file = $this->_writeFile(); $this->assertXmlStringEqualsXmlString( file_get_contents($this->_getSampleOutputFile()), file_get_contents($file) ); } /** * Test \Magento\Framework\Convert\Excel->write() * \Magento\Framework\Convert\Excel($iterator, $callbackMethod) * * @return void */ public function testWriteCallback() { $file = $this->_writeFile(true); $this->assertStringContainsString( '_TRUE_', file_get_contents($file), 'Failed asserting that callback method is called.' ); } }