|
@@ -0,0 +1,58 @@
|
|
|
+--TEST--
|
|
|
+Check for vtiful presence
|
|
|
+--SKIPIF--
|
|
|
+<?php
|
|
|
+require __DIR__ . '/include/skipif.inc';
|
|
|
+skip_disable_reader();
|
|
|
+?>
|
|
|
+--FILE--
|
|
|
+<?php
|
|
|
+$config = ['path' => './tests'];
|
|
|
+$excel = new \Vtiful\Kernel\Excel($config);
|
|
|
+$filePath = $excel->fileName('tutorial.xlsx', 'TestSheet1')
|
|
|
+ ->header(['Item', 'Cost'])
|
|
|
+ ->data([
|
|
|
+ ['Item_1', 'Cost_1', 10, 10.9999995],
|
|
|
+ ])
|
|
|
+ ->output();
|
|
|
+
|
|
|
+$fp = fopen('./tests/file.csv', 'w');
|
|
|
+
|
|
|
+$csvResult = $excel->openFile('tutorial.xlsx')
|
|
|
+ ->openSheet()
|
|
|
+ ->putCSVCallback(function($row){
|
|
|
+ return $row;
|
|
|
+ }, $fp);
|
|
|
+
|
|
|
+fclose($fp);
|
|
|
+
|
|
|
+var_dump($csvResult);
|
|
|
+
|
|
|
+$fp = fopen('./tests/file.csv', 'r');
|
|
|
+
|
|
|
+var_dump(fgetcsv($fp));
|
|
|
+var_dump(fgetcsv($fp));
|
|
|
+?>
|
|
|
+--CLEAN--
|
|
|
+<?php
|
|
|
+@unlink(__DIR__ . '/tutorial.xlsx');
|
|
|
+@unlink(__DIR__ . '/file.csv');
|
|
|
+?>
|
|
|
+--EXPECT--
|
|
|
+bool(true)
|
|
|
+array(2) {
|
|
|
+ [0]=>
|
|
|
+ string(4) "Item"
|
|
|
+ [1]=>
|
|
|
+ string(4) "Cost"
|
|
|
+}
|
|
|
+array(4) {
|
|
|
+ [0]=>
|
|
|
+ string(6) "Item_1"
|
|
|
+ [1]=>
|
|
|
+ string(6) "Cost_1"
|
|
|
+ [2]=>
|
|
|
+ string(2) "10"
|
|
|
+ [3]=>
|
|
|
+ string(10) "10.9999995"
|
|
|
+}
|