spreadsheetXEETest) { $filename = '../samples/templates/Excel2003XMLTest.xml'; // Load into this instance $reader = new Xml(); $this->spreadsheetXEETest = $reader->load($filename); } return $this->spreadsheetXEETest; } /** * @dataProvider providerInvalidXML * @expectedException \PhpOffice\PhpSpreadsheet\Reader\Exception * * @param mixed $filename */ public function testInvalidXML($filename) { $reader = $this->getMockForAbstractClass(BaseReader::class); $expectedResult = 'FAILURE: Should throw an Exception rather than return a value'; $result = $reader->securityScanFile($filename); self::assertEquals($expectedResult, $result); } public function providerInvalidXML() { $tests = []; foreach (glob(__DIR__ . '/../../data/Reader/XEE/XEETestInvalidUTF*.xml') as $file) { $tests[basename($file)] = [realpath($file)]; } return $tests; } /** * @dataProvider providerInvalidSimpleXML * @expectedException \PhpOffice\PhpSpreadsheet\Reader\Exception * * @param $filename */ public function testInvalidSimpleXML($filename) { $xmlReader = new Xml(); $xmlReader->trySimpleXMLLoadString($filename); } public function providerInvalidSimpleXML() { $tests = []; foreach (glob(__DIR__ . '/../../data/Reader/XEE/XEETestInvalidSimpleXML*.xml') as $file) { $tests[basename($file)] = [realpath($file)]; } return $tests; } /** * @dataProvider providerValidXML * * @param mixed $filename * @param mixed $expectedResult */ public function testValidXML($filename, $expectedResult) { $reader = $this->getMockForAbstractClass(BaseReader::class); $result = $reader->securityScanFile($filename); self::assertEquals($expectedResult, $result); } public function providerValidXML() { $tests = []; foreach (glob(__DIR__ . '/../../data/Reader/XEE/XEETestValid*.xml') as $file) { $tests[basename($file)] = [realpath($file), file_get_contents($file)]; } return $tests; } /** * Check if it can read XML Hyperlink correctly. */ public function testReadHyperlinks() { $spreadsheet = $this->loadXEETestFile(); $firstSheet = $spreadsheet->getSheet(0); $hyperlink = $firstSheet->getCell('L1'); self::assertEquals(DataType::TYPE_STRING, $hyperlink->getDataType()); self::assertEquals('PhpSpreadsheet', $hyperlink->getValue()); self::assertEquals('http://phpspreadsheet.readthedocs.io/', $hyperlink->getHyperlink()->getUrl()); } }