mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Compare commits
75 Commits
Tests-for-
...
1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c14bc2f30 | ||
|
|
4b6b7ee0b8 | ||
|
|
a80a6f1862 | ||
|
|
da70838698 | ||
|
|
abecaf1b5d | ||
|
|
3af94399e6 | ||
|
|
499088b3b2 | ||
|
|
fd63ff4a26 | ||
|
|
d250c9034b | ||
|
|
bfc2c0901b | ||
|
|
a0336f02ee | ||
|
|
ea78f38e26 | ||
|
|
c9e7997643 | ||
|
|
68239d6859 | ||
|
|
d05577d303 | ||
|
|
eedbffc375 | ||
|
|
11b20a3144 | ||
|
|
7766bf7c3b | ||
|
|
ef44ea3989 | ||
|
|
2ac9f450f1 | ||
|
|
3968659b9f | ||
|
|
d3a084d973 | ||
|
|
b0355be96a | ||
|
|
b753d9c694 | ||
|
|
2b95ec5aa1 | ||
|
|
3f595dfd3b | ||
|
|
081949339b | ||
|
|
a60aae47a4 | ||
|
|
4cba97ad51 | ||
|
|
2206ec1e7c | ||
|
|
d188921ab6 | ||
|
|
85cc0d9cfc | ||
|
|
a7f2bbb7bc | ||
|
|
d484f3e9e3 | ||
|
|
f8b2fe274a | ||
|
|
17bfd9496a | ||
|
|
ec7b1c1d55 | ||
|
|
ba9eae17d4 | ||
|
|
8f26ce6ea3 | ||
|
|
913dc94e2c | ||
|
|
5ced1f4212 | ||
|
|
ca84469950 | ||
|
|
75902f4a22 | ||
|
|
7470d2b804 | ||
|
|
01f0891cfb | ||
|
|
52a9b61b97 | ||
|
|
5660be3373 | ||
|
|
70b6fe4bd8 | ||
|
|
f1a89127c2 | ||
|
|
31dba0411e | ||
|
|
6da0537197 | ||
|
|
91091ac933 | ||
|
|
2c7c552515 | ||
|
|
52e87953a4 | ||
|
|
2b6e38734c | ||
|
|
af7368378c | ||
|
|
f2fb7c81bd | ||
|
|
92653c99c5 | ||
|
|
d4f9c9f020 | ||
|
|
2b17f01a0a | ||
|
|
9551862a95 | ||
|
|
736bc489e6 | ||
|
|
f702ca93fe | ||
|
|
48cec20f4f | ||
|
|
c266ef9fbc | ||
|
|
76a0406eff | ||
|
|
17ac1dee1a | ||
|
|
f6bd414ae7 | ||
|
|
a7a0bc34a4 | ||
|
|
0e5afb209e | ||
|
|
f8c68a6cd7 | ||
|
|
5babb55879 | ||
|
|
8ec87126dc | ||
|
|
d788135bbe | ||
|
|
301f6da3e6 |
@@ -9,6 +9,7 @@ php:
|
|||||||
- 5.4
|
- 5.4
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
- phpunit --version
|
||||||
- phpunit --configuration tests/phpunit.xml
|
- phpunit --configuration tests/phpunit.xml
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
|
|||||||
@@ -1,3 +1,29 @@
|
|||||||
|
ParseCSV 1.0.0
|
||||||
|
-----------------------------------
|
||||||
|
Date: 3-March-2018
|
||||||
|
|
||||||
|
- Renamed class from parseCSV to Csv and added name-
|
||||||
|
space "ParseCsv" for PSR compliance.
|
||||||
|
|
||||||
|
- Added support for MS Excel's "sep=" to detect the
|
||||||
|
delimiter (Issue #60).
|
||||||
|
|
||||||
|
- Added data type detection - function getDatatypes()
|
||||||
|
guesses the type of each column.
|
||||||
|
|
||||||
|
- MIME: output() sends correct MIME type to browser
|
||||||
|
if the separator is a tab tab (Issue #79).
|
||||||
|
|
||||||
|
- Added support for mb_convert_encoding() instead of
|
||||||
|
iconv() - see issue #109.
|
||||||
|
|
||||||
|
- A number of minor bug fixes - see GitHub issues.
|
||||||
|
|
||||||
|
- Added many more unit tests.
|
||||||
|
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
|
||||||
parseCSV 0.4.3 beta
|
parseCSV 0.4.3 beta
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
Date: 1-July-2008
|
Date: 1-July-2008
|
||||||
|
|||||||
67
README.md
67
README.md
@@ -1,32 +1,20 @@
|
|||||||
# parseCSV
|
# ParseCsv
|
||||||
|
|
||||||
parseCSV is an easy to use PHP class that reads and writes CSV data properly. It
|
ParseCsv is an easy-to-use PHP class that reads and writes CSV data properly. It
|
||||||
fully conforms to the specifications outlined on the on the
|
fully conforms to the specifications outlined on the on the
|
||||||
[Wikipedia article][CSV] (and thus RFC 4180). It has many advanced features which help make your
|
[Wikipedia article][CSV] (and thus RFC 4180). It has many advanced features which help make your
|
||||||
life easier when dealing with CSV data.
|
life easier when dealing with CSV data.
|
||||||
|
|
||||||
You may not need a library at all: before using parseCSV, please make sure if PHP's own `str_getcsv()`, ``fgetcvs()`` or `fputcsv()` meets your needs.
|
You may not need a library at all: before using ParseCsv, please make sure if PHP's own `str_getcsv()`, ``fgetcvs()`` or `fputcsv()` meets your needs.
|
||||||
|
|
||||||
This library was originally created in early 2007 by [jimeh](https://github.com/jimeh) due to the lack of built-in
|
This library was originally created in early 2007 by [jimeh](https://github.com/jimeh) due to the lack of built-in
|
||||||
and third-party support for handling CSV data in PHP.
|
and third-party support for handling CSV data in PHP.
|
||||||
|
|
||||||
[csv]: http://en.wikipedia.org/wiki/Comma-separated_values
|
[csv]: http://en.wikipedia.org/wiki/Comma-separated_values
|
||||||
|
|
||||||
## Installation
|
|
||||||
Installation is easy using Composer. Include the following in your composer.json
|
|
||||||
```
|
|
||||||
"parsecsv/php-parsecsv": "0.4.5"
|
|
||||||
```
|
|
||||||
|
|
||||||
You may also manually include the parsecsv.lib.php file
|
|
||||||
```php
|
|
||||||
require_once 'parsecsv.lib.php';
|
|
||||||
```
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* parseCSV is the only complete and fully featured CSV solution for PHP (as
|
* ParseCsv is a complete and fully featured CSV solution for PHP
|
||||||
far as I know).
|
|
||||||
* Supports enclosed values, enclosed commas, double quotes and new lines.
|
* Supports enclosed values, enclosed commas, double quotes and new lines.
|
||||||
* Automatic delimiter character detection.
|
* Automatic delimiter character detection.
|
||||||
* Sort data by specific fields/columns.
|
* Sort data by specific fields/columns.
|
||||||
@@ -36,24 +24,45 @@ require_once 'parsecsv.lib.php';
|
|||||||
* Error detection for incorrectly formatted input. It attempts to be
|
* Error detection for incorrectly formatted input. It attempts to be
|
||||||
intelligent, but can not be trusted 100% due to the structure of CSV, and
|
intelligent, but can not be trusted 100% due to the structure of CSV, and
|
||||||
how different programs like Excel for example outputs CSV data.
|
how different programs like Excel for example outputs CSV data.
|
||||||
* Support for character encoding conversion using PHP's _iconv_ function
|
* Support for character encoding conversion using PHP's
|
||||||
(requires PHP 5).
|
`iconv()` and `mb_convert_encoding()` functions.
|
||||||
* Supports PHP 5.4 and higher. It certainly works with PHP 7.2
|
* Supports PHP 5.4 and higher.
|
||||||
|
It certainly works with PHP 7.2 and all versions in between.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Installation is easy using Composer. Just run the following on the
|
||||||
|
command line:
|
||||||
|
```
|
||||||
|
composer require parsecsv/php-parsecsv
|
||||||
|
```
|
||||||
|
|
||||||
|
If you don't use a framework such as Drupal, Laravel, Symfony, Yii etc.,
|
||||||
|
you may have to manually include Composer's autoloader file in your PHP
|
||||||
|
script:
|
||||||
|
```php
|
||||||
|
require_once __DIR__ . '/vendor/autoload.php';
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Without composer
|
||||||
|
Not recommended, but technically possible: you can also clone the
|
||||||
|
repository or extract the
|
||||||
|
[ZIP](https://github.com/parsecsv/parsecsv-for-php/archive/master.zip).
|
||||||
|
To use ParseCSV, you then have to add a `require 'parsecsv.lib.php';` line.
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
**General**
|
**General**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV('data.csv');
|
$csv = new ParseCsv\Csv('data.csv');
|
||||||
print_r($csv->data);
|
print_r($csv->data);
|
||||||
```
|
```
|
||||||
|
|
||||||
**Tab delimited, and encoding conversion**
|
**Tab delimited, and encoding conversion**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->encoding('UTF-16', 'UTF-8');
|
$csv->encoding('UTF-16', 'UTF-8');
|
||||||
$csv->delimiter = "\t";
|
$csv->delimiter = "\t";
|
||||||
$csv->parse('data.tsv');
|
$csv->parse('data.tsv');
|
||||||
@@ -63,7 +72,7 @@ print_r($csv->data);
|
|||||||
**Auto-detect delimiter character**
|
**Auto-detect delimiter character**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->auto('data.csv');
|
$csv->auto('data.csv');
|
||||||
print_r($csv->data);
|
print_r($csv->data);
|
||||||
```
|
```
|
||||||
@@ -71,7 +80,7 @@ print_r($csv->data);
|
|||||||
**Modify data in a CSV file**
|
**Modify data in a CSV file**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->sort_by = 'id';
|
$csv->sort_by = 'id';
|
||||||
$csv->parse('data.csv');
|
$csv->parse('data.csv');
|
||||||
# "4" is the value of the "id" column of the CSV row
|
# "4" is the value of the "id" column of the CSV row
|
||||||
@@ -82,7 +91,7 @@ $csv->save();
|
|||||||
**Replace field names or set ones if missing**
|
**Replace field names or set ones if missing**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->fields = ['id', 'name', 'category']
|
$csv->fields = ['id', 'name', 'category']
|
||||||
$csv->parse('data.csv');
|
$csv->parse('data.csv');
|
||||||
```
|
```
|
||||||
@@ -92,15 +101,15 @@ $csv->parse('data.csv');
|
|||||||
_Only recommended when you know the exact structure of the file._
|
_Only recommended when you know the exact structure of the file._
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true);
|
$csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true);
|
||||||
```
|
```
|
||||||
|
|
||||||
**Convert 2D array to csv data and send headers to browser to treat output as
|
**Convert 2D array to CSV data and send headers to browser to treat output as
|
||||||
a file and download it**
|
a file and download it**
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$csv = new parseCSV();
|
$csv = new ParseCsv\Csv();
|
||||||
$csv->output('movies.csv', $array, array('field 1', 'field 2'), ',');
|
$csv->output('movies.csv', $array, array('field 1', 'field 2'), ',');
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -108,7 +117,7 @@ For more complex examples, see the ``tests`` and `examples` directories.
|
|||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
* parseCSV is based on the concept of [Ming Hong Ng][ming]'s [CsvFileParser][]
|
* ParseCsv is based on the concept of [Ming Hong Ng][ming]'s [CsvFileParser][]
|
||||||
class.
|
class.
|
||||||
|
|
||||||
[ming]: http://minghong.blogspot.com/
|
[ming]: http://minghong.blogspot.com/
|
||||||
@@ -146,3 +155,5 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
[](https://travis-ci.org/parsecsv/parsecsv-for-php)
|
||||||
|
|||||||
@@ -13,9 +13,16 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"autoload":{
|
"autoload":{
|
||||||
"classmap": [
|
"psr-4":{
|
||||||
"."
|
"ParseCsv\\": "src",
|
||||||
]
|
"ParseCsv\\extensions\\": "src\\extensions",
|
||||||
|
"ParseCsv\\tests\\": "tests"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev":{
|
||||||
|
"psr-4":{
|
||||||
|
"ParseCsv\\tests\\": "tests"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "4.1.*"
|
"phpunit/phpunit": "4.1.*"
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<pre>
|
<pre>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
# include parseCSV class.
|
# include parseCSV class.
|
||||||
require_once('../parsecsv.lib.php');
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
|
||||||
|
|
||||||
# create new parseCSV object.
|
# create new parseCSV object.
|
||||||
$csv = new parseCSV();
|
$csv = new Csv();
|
||||||
|
|
||||||
|
|
||||||
# Parse '_books.csv' using automatic delimiter detection...
|
# Parse '_books.csv' using automatic delimiter detection...
|
||||||
|
|||||||
@@ -3,11 +3,12 @@
|
|||||||
|
|
||||||
|
|
||||||
# include parseCSV class.
|
# include parseCSV class.
|
||||||
require_once('../parsecsv.lib.php');
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
|
||||||
|
|
||||||
# create new parseCSV object.
|
# create new parseCSV object.
|
||||||
$csv = new parseCSV();
|
$csv = new Csv();
|
||||||
|
|
||||||
|
|
||||||
# Example conditions:
|
# Example conditions:
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
# include parseCSV class.
|
# include parseCSV class.
|
||||||
require_once('../parsecsv.lib.php');
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
|
||||||
|
|
||||||
# create new parseCSV object.
|
# create new parseCSV object.
|
||||||
$csv = new parseCSV();
|
$csv = new Csv();
|
||||||
|
|
||||||
|
|
||||||
# Parse '_books.csv' using automatic delimiter detection...
|
# Parse '_books.csv' using automatic delimiter detection...
|
||||||
|
|||||||
@@ -3,11 +3,12 @@
|
|||||||
|
|
||||||
|
|
||||||
# include parseCSV class.
|
# include parseCSV class.
|
||||||
require_once('../parsecsv.lib.php');
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
|
||||||
|
|
||||||
# create new parseCSV object.
|
# create new parseCSV object.
|
||||||
$csv = new parseCSV();
|
$csv = new Csv();
|
||||||
|
|
||||||
|
|
||||||
# if sorting is enabled, the whole CSV file
|
# if sorting is enabled, the whole CSV file
|
||||||
|
|||||||
1240
parsecsv.lib.php
1240
parsecsv.lib.php
File diff suppressed because it is too large
Load Diff
1212
src/Csv.php
Normal file
1212
src/Csv.php
Normal file
File diff suppressed because it is too large
Load Diff
120
src/enums/DatatypeEnum.php
Normal file
120
src/enums/DatatypeEnum.php
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\enums;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class DatatypeEnum
|
||||||
|
*
|
||||||
|
* @package ParseCsv\enums
|
||||||
|
*
|
||||||
|
* todo: needs a basic parent enum class for error handling.
|
||||||
|
*/
|
||||||
|
class DatatypeEnum {
|
||||||
|
|
||||||
|
const __DEFAULT = self::TYPE_STRING;
|
||||||
|
|
||||||
|
const TYPE_STRING = 'string';
|
||||||
|
|
||||||
|
const TYPE_FLOAT = 'float';
|
||||||
|
|
||||||
|
const TYPE_INT = 'integer';
|
||||||
|
|
||||||
|
const TYPE_BOOL = 'boolean';
|
||||||
|
|
||||||
|
const TYPE_DATE = 'date';
|
||||||
|
|
||||||
|
const REGEX_FLOAT = '/(^[+-]?$)|(^[+-]?[0-9]+([,.][0-9])?[0-9]*(e[+-]?[0-9]+)?$)/';
|
||||||
|
|
||||||
|
const REGEX_INT = '/^[-+]?[0-9]\d*$/';
|
||||||
|
|
||||||
|
const REGEX_BOOL = '/^(?i:true|false)$/';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define validator functions here.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*
|
||||||
|
* @uses isValidFloat
|
||||||
|
* @uses isValidInteger
|
||||||
|
* @uses isValidBoolean
|
||||||
|
* @uses isValidDate
|
||||||
|
*/
|
||||||
|
private static $validators = array(
|
||||||
|
self::TYPE_STRING => null,
|
||||||
|
self::TYPE_INT => 'isValidInteger',
|
||||||
|
self::TYPE_BOOL => 'isValidBoolean',
|
||||||
|
self::TYPE_FLOAT => 'isValidFloat',
|
||||||
|
self::TYPE_DATE => 'isValidDate',
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks data type for given string.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
*
|
||||||
|
* @return bool|string
|
||||||
|
*/
|
||||||
|
public static function getValidTypeFromSample($value) {
|
||||||
|
$value = trim((string) $value);
|
||||||
|
|
||||||
|
if (empty($value)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (self::$validators as $type => $validator) {
|
||||||
|
if ($validator === null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (method_exists(__CLASS__, $validator) && self::$validator($value)) {
|
||||||
|
return $type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return self::__DEFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if string is float value.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private static function isValidFloat($value) {
|
||||||
|
return (bool) preg_match(self::REGEX_FLOAT, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if string is integer value.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private static function isValidInteger($value) {
|
||||||
|
return (bool) preg_match(self::REGEX_INT, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if string is boolean.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private static function isValidBoolean($value) {
|
||||||
|
return (bool) preg_match(self::REGEX_BOOL, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if string is date.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private static function isValidDate($value) {
|
||||||
|
return (bool) strtotime($value);
|
||||||
|
}
|
||||||
|
}
|
||||||
74
src/extensions/DatatypeTrait.php
Normal file
74
src/extensions/DatatypeTrait.php
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\extensions;
|
||||||
|
|
||||||
|
trait DatatypeTrait {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Datatypes
|
||||||
|
* Datatypes of CSV data-columns
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $data_types = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check data type for one column.
|
||||||
|
* Check for most commonly data type for one column.
|
||||||
|
*
|
||||||
|
* @access private
|
||||||
|
*
|
||||||
|
* @param array $datatypes
|
||||||
|
*
|
||||||
|
* @return string|false
|
||||||
|
*/
|
||||||
|
private function getMostFrequentDatatypeForColumn($datatypes) {
|
||||||
|
// remove 'false' from array (can happen if CSV cell is empty)
|
||||||
|
$typesFiltered = array_filter($datatypes);
|
||||||
|
|
||||||
|
if (empty($typesFiltered)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$typesFreq = array_count_values($typesFiltered);
|
||||||
|
arsort($typesFreq);
|
||||||
|
reset($typesFreq);
|
||||||
|
|
||||||
|
return key($typesFreq);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check data type foreach Column
|
||||||
|
* Check data type for each column and returns the most commonly.
|
||||||
|
*
|
||||||
|
* Requires PHP >= 5.5
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
*
|
||||||
|
* @uses getDatatypeFromString
|
||||||
|
*
|
||||||
|
* @return array|bool
|
||||||
|
*/
|
||||||
|
public function getDatatypes() {
|
||||||
|
if (empty($this->data)) {
|
||||||
|
$this->data = $this->parse_string();
|
||||||
|
}
|
||||||
|
if (!is_array($this->data)) {
|
||||||
|
throw new \UnexpectedValueException('No data set yet.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = [];
|
||||||
|
foreach ($this->titles as $cName) {
|
||||||
|
$column = array_column($this->data, $cName);
|
||||||
|
$cDatatypes = array_map('ParseCsv\enums\DatatypeEnum::getValidTypeFromSample', $column);
|
||||||
|
|
||||||
|
$result[$cName] = $this->getMostFrequentDatatypeForColumn($cDatatypes);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->data_types = $result;
|
||||||
|
|
||||||
|
return !empty($this->data_types) ? $this->data_types : [];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
chdir(__DIR__ . '/..');
|
||||||
|
if (!file_exists('vendor/autoload.php')) {
|
||||||
|
`composer dump-autoload`;
|
||||||
|
}
|
||||||
|
|
||||||
$dir = realpath(__DIR__);
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
defined('BASE') OR define('BASE', dirname($dir) . '/');
|
|
||||||
|
|
||||||
require_once BASE . 'parsecsv.lib.php';
|
if (!class_exists('PHPUnit\Framework\TestCase') && class_exists('PHPUnit_Framework_TestCase')) {
|
||||||
|
|
||||||
if (!class_exists('PHPUnit\Framework\TestCase')) {
|
|
||||||
// we run on an older PHPUnit version without namespaces.
|
// we run on an older PHPUnit version without namespaces.
|
||||||
require_once __DIR__ . '/PHPUnit_Framework_TestCase.inc.php';
|
require_once __DIR__ . '/PHPUnit_Framework_TestCase.inc.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,69 +1,67 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ConstructTest extends PHPUnit\Framework\TestCase {
|
namespace ParseCsv\tests\methods;
|
||||||
|
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class ConstructTest extends TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* @var Csv object
|
||||||
* The parseCSV object
|
|
||||||
*
|
|
||||||
* @access protected
|
|
||||||
* @var [parseCSV]
|
|
||||||
*/
|
*/
|
||||||
protected $csv = null;
|
protected $csv = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* Setup
|
|
||||||
* Setup our test environment objects
|
|
||||||
*
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function setUp() {
|
|
||||||
//setup parse CSV
|
|
||||||
#$this->csv = new parseCSV();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tear down
|
|
||||||
* Tear down our test environment objects
|
|
||||||
*
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function tearDown() {
|
|
||||||
$this->csv = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function test_offset_param() {
|
public function test_offset_param() {
|
||||||
$offset = 10;
|
$offset = 10;
|
||||||
$this->csv = new parseCSV(null, $offset);
|
$this->csv = new Csv(null, $offset);
|
||||||
$this->assertTrue(is_numeric($this->csv->offset));
|
$this->assertTrue(is_numeric($this->csv->offset));
|
||||||
$this->assertEquals($offset, $this->csv->offset);
|
$this->assertEquals($offset, $this->csv->offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_limit_param() {
|
public function test_limit_param() {
|
||||||
$limit = 10;
|
$limit = 10;
|
||||||
$this->csv = new parseCSV(null, null, $limit);
|
$this->csv = new Csv(null, null, $limit);
|
||||||
$this->assertTrue(is_numeric($this->csv->limit));
|
$this->assertTrue(is_numeric($this->csv->limit));
|
||||||
$this->assertEquals($limit, $this->csv->limit);
|
$this->assertEquals($limit, $this->csv->limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_conditions_param() {
|
public function test_conditions_param() {
|
||||||
$conditions = 'some column NOT value';
|
$conditions = 'some column NOT value';
|
||||||
$this->csv = new parseCSV(null, null, null, $conditions);
|
$this->csv = new Csv(null, null, null, $conditions);
|
||||||
$this->assertTrue(is_string($this->csv->conditions));
|
$this->assertTrue(is_string($this->csv->conditions));
|
||||||
$this->assertEquals($conditions, $this->csv->conditions);
|
$this->assertEquals($conditions, $this->csv->conditions);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_keep_file_data_param() {
|
public function test_keep_file_data_param() {
|
||||||
$keep = true;
|
$keep = true;
|
||||||
$this->csv = new parseCSV(null, null, null, null, $keep);
|
$this->csv = new Csv(null, null, null, null, $keep);
|
||||||
$this->assertTrue(is_bool($this->csv->keep_file_data));
|
$this->assertTrue(is_bool($this->csv->keep_file_data));
|
||||||
$this->assertEquals($keep, $this->csv->keep_file_data);
|
$this->assertEquals($keep, $this->csv->keep_file_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_input_param() {
|
public function test_input_param() {
|
||||||
$csv = "col1,col2,col3\r\nval1,val2,val3\r\nval1A,val2A,val3A\r\n";
|
$csv = "col1,col2,col3\r\nval1,val2,val3\r\nval1A,val2A,val3A\r\n";
|
||||||
$this->csv = new parseCSV($csv, null, null, null, true);
|
$this->csv = new Csv($csv, null, null, null, true);
|
||||||
$this->assertTrue(is_string($this->csv->file_data));
|
$this->assertTrue(is_string($this->csv->file_data));
|
||||||
$this->assertEquals($csv, $this->csv->file_data);
|
$this->assertEquals($csv, $this->csv->file_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @runInSeparateProcess because download.php uses header()
|
||||||
|
*
|
||||||
|
* @see https://github.com/sebastianbergmann/phpunit/issues/720#issuecomment-10421092
|
||||||
|
*/
|
||||||
|
public function testCodeExamples() {
|
||||||
|
chdir('examples');
|
||||||
|
foreach (glob('*.php') as $script_file) {
|
||||||
|
ob_start();
|
||||||
|
/** @noinspection PhpIncludeInspection */
|
||||||
|
require $script_file;
|
||||||
|
if ($script_file != 'download.php') {
|
||||||
|
$this->assertContains('<td>', ob_get_clean());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chdir('..');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
69
tests/methods/DatatypeTest.php
Normal file
69
tests/methods/DatatypeTest.php
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: sgorzaly
|
||||||
|
* Date: 19.02.18
|
||||||
|
* Time: 20:52
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace ParseCsv\tests\methods;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use ParseCsv\enums\DatatypeEnum;
|
||||||
|
|
||||||
|
class DatatypeTest extends TestCase
|
||||||
|
{
|
||||||
|
public function testSampleIsValidInteger(){
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('+1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('-1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('--1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('test'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('1.0'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('1,0'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('1,1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('0.1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('true'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_INT, DatatypeEnum::getValidTypeFromSample('2018-02-19'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSampleIsValidBool(){
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('true'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('TRUE'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('false'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('FALSE'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('FALS'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('test'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('0'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_BOOL, DatatypeEnum::getValidTypeFromSample('0.1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSampleIsValidFloat(){
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1.0'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('-1.1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('+1,1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1,1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1,1'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1e-03'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1e+03'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('test'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1,,1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('1..1'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_FLOAT, DatatypeEnum::getValidTypeFromSample('2018-02-19'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSampleIsValidDate(){
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('2018-02-19'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('18-2-19'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('01.02.2018'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('1.2.18'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('07/31/2018'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('31/07/2018'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('1-2'));
|
||||||
|
$this->assertEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('1.2.'));
|
||||||
|
$this->assertNotEquals(DatatypeEnum::TYPE_DATE, DatatypeEnum::getValidTypeFromSample('test'));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
28
tests/methods/OldRequireTest.php
Normal file
28
tests/methods/OldRequireTest.php
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\tests\methods;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class OldRequireTest extends TestCase {
|
||||||
|
|
||||||
|
protected function setUp() {
|
||||||
|
rename('vendor/autoload.php', '__autoload');
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function tearDown() {
|
||||||
|
rename('__autoload', 'vendor/autoload.php');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @runInSeparateProcess because download.php uses header()
|
||||||
|
*/
|
||||||
|
public function testOldLibWithoutComposer() {
|
||||||
|
|
||||||
|
file_put_contents('__eval.php', '<?php require "parsecsv.lib.php"; new \ParseCsv\Csv;');
|
||||||
|
exec("php __eval.php", $output, $return_var);
|
||||||
|
unlink('__eval.php');
|
||||||
|
$this->assertEquals($output, []);
|
||||||
|
$this->assertEquals(0, $return_var);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ParseTest extends PHPUnit\Framework\TestCase {
|
namespace ParseCsv\tests\methods;
|
||||||
|
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class ParseTest extends TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* @var Csv object
|
||||||
* The parseCSV object
|
|
||||||
*
|
|
||||||
* @access protected
|
|
||||||
* @var parseCSV
|
|
||||||
*/
|
*/
|
||||||
protected $csv;
|
protected $csv;
|
||||||
|
|
||||||
@@ -18,7 +19,7 @@ class ParseTest extends PHPUnit\Framework\TestCase {
|
|||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
$this->csv = new parseCSV();
|
$this->csv = new Csv();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_parse() {
|
public function test_parse() {
|
||||||
@@ -39,9 +40,26 @@ class ParseTest extends PHPUnit\Framework\TestCase {
|
|||||||
$this->assertEquals($expected_data, $row);
|
$this->assertEquals($expected_data, $row);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_sep_row_auto_detection_UTF8_no_BOM() {
|
/**
|
||||||
$this->_autoparse_magazine_file(
|
* @depends test_parse
|
||||||
__DIR__ . '/../example_files/UTF-8_sep_row_but_no_BOM.csv');
|
*
|
||||||
|
* @dataProvider autoDetectionProvider
|
||||||
|
*/
|
||||||
|
public function testSepRowAutoDetection($file) {
|
||||||
|
// This file (parse_test.php) is encoded in UTF-8, hence comparison will
|
||||||
|
// fail unless we to this:
|
||||||
|
$this->csv->output_encoding = 'UTF-8';
|
||||||
|
|
||||||
|
$this->csv->auto($file);
|
||||||
|
$this->assertEquals($this->_get_magazines_data(), $this->csv->data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function autoDetectionProvider() {
|
||||||
|
return [
|
||||||
|
'UTF8_no_BOM' => [__DIR__ . '/../example_files/UTF-8_sep_row_but_no_BOM.csv'],
|
||||||
|
'UTF8' => [__DIR__ . '/../example_files/UTF-8_with_BOM_and_sep_row.csv'],
|
||||||
|
'UTF16' => [__DIR__ . '/../example_files/UTF-16LE_with_BOM_and_sep_row.csv'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testSingleColumnWithZeros() {
|
public function testSingleColumnWithZeros() {
|
||||||
@@ -77,25 +95,6 @@ class ParseTest extends PHPUnit\Framework\TestCase {
|
|||||||
], array_map('next', $actual_data));
|
], array_map('next', $actual_data));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_sep_row_auto_detection_UTF8() {
|
|
||||||
$this->_autoparse_magazine_file(
|
|
||||||
__DIR__ . '/../example_files/UTF-8_with_BOM_and_sep_row.csv');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function test_sep_row_auto_detection_UTF16() {
|
|
||||||
$this->_autoparse_magazine_file(
|
|
||||||
__DIR__ . '/../example_files/UTF-16LE_with_BOM_and_sep_row.csv');
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function _autoparse_magazine_file($file) {
|
|
||||||
// This file (parse_test.php) is encoded in UTF-8, hence comparison will
|
|
||||||
// fail unless we to this:
|
|
||||||
$this->csv->output_encoding = 'UTF-8';
|
|
||||||
|
|
||||||
$this->csv->auto($file);
|
|
||||||
$this->assertEquals($this->_get_magazines_data(), $this->csv->data);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function test_single_column() {
|
public function test_single_column() {
|
||||||
$this->csv->auto(__DIR__ . '/../example_files/single_column.csv');
|
$this->csv->auto(__DIR__ . '/../example_files/single_column.csv');
|
||||||
$expected = [
|
$expected = [
|
||||||
@@ -130,6 +129,55 @@ class ParseTest extends PHPUnit\Framework\TestCase {
|
|||||||
], $aCity);
|
], $aCity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @depends testSepRowAutoDetection
|
||||||
|
*/
|
||||||
|
public function testGetColumnDatatypes() {
|
||||||
|
if (!function_exists('array_column')) {
|
||||||
|
// getDatatypes requires array_column, but that
|
||||||
|
// function is only available in PHP >= 5.5
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->csv->auto(__DIR__ . '/fixtures/datatype.csv');
|
||||||
|
$this->csv->getDatatypes();
|
||||||
|
$expected = [
|
||||||
|
'title' => 'string',
|
||||||
|
'isbn' => 'string',
|
||||||
|
'publishedAt' => 'date',
|
||||||
|
'published' => 'boolean',
|
||||||
|
'count' => 'integer',
|
||||||
|
'price' => 'float',
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->assertEquals($expected, $this->csv->data_types);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function testDataArrayKeysWhenSettingOffsetWithHeading() {
|
||||||
|
$this->csv->offset = 2;
|
||||||
|
$this->csv->auto(__DIR__ . '/fixtures/datatype.csv');
|
||||||
|
$expected = [
|
||||||
|
'title',
|
||||||
|
'isbn',
|
||||||
|
'publishedAt',
|
||||||
|
'published',
|
||||||
|
'count',
|
||||||
|
'price'
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->assertEquals($expected, array_keys($this->csv->data[0]));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testDataArrayKeysWhenSettingOffsetWithoutHeading() {
|
||||||
|
$this->csv->heading = false;
|
||||||
|
$this->csv->offset = 2;
|
||||||
|
$this->csv->auto(__DIR__ . '/fixtures/datatype.csv');
|
||||||
|
$expected = range(0, 5, 1);
|
||||||
|
|
||||||
|
$this->assertEquals($expected, array_keys($this->csv->data[0]));
|
||||||
|
}
|
||||||
|
|
||||||
protected function _get_magazines_data() {
|
protected function _get_magazines_data() {
|
||||||
return [
|
return [
|
||||||
[
|
[
|
||||||
@@ -152,20 +200,22 @@ class ParseTest extends PHPUnit\Framework\TestCase {
|
|||||||
|
|
||||||
public function autoQuotesDataProvider() {
|
public function autoQuotesDataProvider() {
|
||||||
return array(
|
return array(
|
||||||
array('tests/methods/fixtures/auto-double-enclosure.csv', '"'),
|
array('auto-double-enclosure.csv', '"'),
|
||||||
array('tests/methods/fixtures/auto-single-enclosure.csv', "'"),
|
array('auto-single-enclosure.csv', "'"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @depends testSepRowAutoDetection
|
||||||
|
*
|
||||||
* @dataProvider autoQuotesDataProvider
|
* @dataProvider autoQuotesDataProvider
|
||||||
*
|
*
|
||||||
* @param string $file
|
* @param string $file
|
||||||
* @param string $enclosure
|
* @param string $enclosure
|
||||||
*/
|
*/
|
||||||
public function testAutoQuotes($file, $enclosure) {
|
public function testAutoQuotes($file, $enclosure) {
|
||||||
$csv = new parseCSV();
|
$csv = new Csv();
|
||||||
$csv->auto($file, true, null, null, $enclosure);
|
$csv->auto(__DIR__ . '/fixtures/' . $file, true, null, null, $enclosure);
|
||||||
$this->assertArrayHasKey('column1', $csv->data[0], 'Data parsed incorrectly with enclosure ' . $enclosure);
|
$this->assertArrayHasKey('column1', $csv->data[0], 'Data parsed incorrectly with enclosure ' . $enclosure);
|
||||||
$this->assertEquals('value1', $csv->data[0]['column1'], 'Data parsed incorrectly with enclosure ' . $enclosure);
|
$this->assertEquals('value1', $csv->data[0]['column1'], 'Data parsed incorrectly with enclosure ' . $enclosure);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
namespace ParseCsv\tests\methods;
|
||||||
|
|
||||||
class SaveTest extends PHPUnit\Framework\TestCase {
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
/** @var parseCSV */
|
class SaveTest extends TestCase
|
||||||
|
{
|
||||||
|
|
||||||
|
/** @var Csv */
|
||||||
private $csv;
|
private $csv;
|
||||||
|
|
||||||
private $temp_filename;
|
private $temp_filename;
|
||||||
@@ -11,7 +16,7 @@ class SaveTest extends PHPUnit\Framework\TestCase {
|
|||||||
* Setup our test environment objects; will be called before each test.
|
* Setup our test environment objects; will be called before each test.
|
||||||
*/
|
*/
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
$this->csv = new parseCSV();
|
$this->csv = new Csv();
|
||||||
$this->csv->auto(__DIR__ . '/../example_files/single_column.csv');
|
$this->csv->auto(__DIR__ . '/../example_files/single_column.csv');
|
||||||
|
|
||||||
// Remove last 2 lines to simplify comparison
|
// Remove last 2 lines to simplify comparison
|
||||||
|
|||||||
5
tests/methods/fixtures/datatype.csv
Normal file
5
tests/methods/fixtures/datatype.csv
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
sep=;
|
||||||
|
title;isbn;publishedAt;published;count;price
|
||||||
|
Красивая кулинария;5454-5587-3210;21.05.2011;true;1;10.99
|
||||||
|
The Wine Connoisseurs;2547-8548-2541;12.12.2011;TRUE;;20.33
|
||||||
|
Weißwein;1313-4545-8875;23.02.2012;false;10;10
|
||||||
|
36
tests/properties/BaseClass.php
Normal file
36
tests/properties/BaseClass.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\tests\properties;
|
||||||
|
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class BaseClass extends TestCase {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CSV
|
||||||
|
* The parseCSV object
|
||||||
|
*
|
||||||
|
* @access protected
|
||||||
|
* @var Csv
|
||||||
|
*/
|
||||||
|
protected $csv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setup
|
||||||
|
* Setup our test environment objects
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
|
public function setUp() {
|
||||||
|
$this->csv = new Csv();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function _compareWithExpected($expected) {
|
||||||
|
$this->csv->auto(__DIR__ . '/../../examples/_books.csv');
|
||||||
|
$actual = array_map(function ($row) {
|
||||||
|
return $row['title'];
|
||||||
|
}, $this->csv->data);
|
||||||
|
$this->assertEquals($expected, array_values($actual));
|
||||||
|
}
|
||||||
|
}
|
||||||
49
tests/properties/ConditionsTest.php
Normal file
49
tests/properties/ConditionsTest.php
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\tests\properties;
|
||||||
|
|
||||||
|
class ConditionsTest extends BaseClass {
|
||||||
|
|
||||||
|
public function testNotDanBrown() {
|
||||||
|
$this->csv->conditions = 'author does not contain dan brown';
|
||||||
|
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
'The Killing Kind',
|
||||||
|
'The Third Secret',
|
||||||
|
'The Last Templar',
|
||||||
|
'The Traveller',
|
||||||
|
'Crisis Four',
|
||||||
|
'Prey',
|
||||||
|
'The Broker (Paperback)',
|
||||||
|
'Without Blood (Paperback)',
|
||||||
|
'State of Fear (Paperback)',
|
||||||
|
'The Rule of Four (Paperback)',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRating() {
|
||||||
|
$this->csv->conditions = 'rating < 3';
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
'The Killing Kind',
|
||||||
|
'The Third Secret',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->csv->conditions = 'rating >= 5';
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
'The Traveller',
|
||||||
|
'Prey',
|
||||||
|
'State of Fear (Paperback)',
|
||||||
|
'Digital Fortress : A Thriller (Mass Market Paperback)',
|
||||||
|
'Angels & Demons (Mass Market Paperback)',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testTitleContainsSecretOrCode() {
|
||||||
|
$this->csv->conditions = 'title contains code OR title contains SECRET';
|
||||||
|
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
'The Third Secret',
|
||||||
|
'The Da Vinci Code (Hardcover)',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class default_values_properties_Test extends PHPUnit\Framework\TestCase {
|
namespace ParseCsv\tests\properties;
|
||||||
|
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class DefaultValuesPropertiesTest extends TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* CSV
|
||||||
* The parseCSV object
|
* The parseCSV object
|
||||||
*
|
*
|
||||||
* @access protected
|
* @access protected
|
||||||
* @var [parseCSV]
|
* @var Csv
|
||||||
*/
|
*/
|
||||||
protected $csv = null;
|
protected $csv = null;
|
||||||
|
|
||||||
@@ -19,7 +24,7 @@ class default_values_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
*/
|
*/
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
//setup parse CSV
|
//setup parse CSV
|
||||||
$this->csv = new parseCSV();
|
$this->csv = new Csv();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,13 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
namespace ParseCsv\tests\properties;
|
||||||
|
|
||||||
|
use ParseCsv\Csv;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class PublicPropertiesTest extends TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* CSV
|
||||||
* The parseCSV object
|
* The parseCSV object
|
||||||
*
|
*
|
||||||
* @access protected
|
* @access protected
|
||||||
* @var [parseCSV]
|
* @var Csv
|
||||||
*/
|
*/
|
||||||
protected $csv = null;
|
protected $csv = null;
|
||||||
|
|
||||||
@@ -16,7 +21,7 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
* The reflection class object
|
* The reflection class object
|
||||||
*
|
*
|
||||||
* @access protected
|
* @access protected
|
||||||
* @var [ReflectionClass]
|
* @var \ReflectionClass
|
||||||
*/
|
*/
|
||||||
protected $reflection = null;
|
protected $reflection = null;
|
||||||
|
|
||||||
@@ -24,6 +29,7 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
* Reflection Properties
|
* Reflection Properties
|
||||||
* The reflected class properties
|
* The reflected class properties
|
||||||
*
|
*
|
||||||
|
* @var \ReflectionProperty[]
|
||||||
* @access protected
|
* @access protected
|
||||||
*/
|
*/
|
||||||
protected $properties = null;
|
protected $properties = null;
|
||||||
@@ -36,10 +42,10 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
*/
|
*/
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
//setup parse CSV
|
//setup parse CSV
|
||||||
$this->csv = new parseCSV();
|
$this->csv = new Csv();
|
||||||
|
|
||||||
//setup the reflection class
|
//setup the reflection class
|
||||||
$this->reflection = new ReflectionClass($this->csv);
|
$this->reflection = new \ReflectionClass($this->csv);
|
||||||
|
|
||||||
//setup the reflected class properties
|
//setup the reflected class properties
|
||||||
$this->properties = $this->reflection->getProperties();
|
$this->properties = $this->reflection->getProperties();
|
||||||
@@ -65,7 +71,7 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
public function test_propertiesCount() {
|
public function test_propertiesCount() {
|
||||||
$this->assertCount(28, $this->properties);
|
$this->assertCount(29, $this->properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -107,11 +113,12 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
'error',
|
'error',
|
||||||
'error_info',
|
'error_info',
|
||||||
'titles',
|
'titles',
|
||||||
'data'
|
'data',
|
||||||
|
'data_types',
|
||||||
);
|
);
|
||||||
|
|
||||||
// Find our real properties
|
// Find our real properties
|
||||||
$real_properties = array_map(function (ReflectionProperty $property) {
|
$real_properties = array_map(function (\ReflectionProperty $property) {
|
||||||
return $property->getName();
|
return $property->getName();
|
||||||
}, $this->properties);
|
}, $this->properties);
|
||||||
|
|
||||||
@@ -129,7 +136,8 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
|
|||||||
public function test_count_public_properties() {
|
public function test_count_public_properties() {
|
||||||
$counter = 0;
|
$counter = 0;
|
||||||
|
|
||||||
for ($a = 0; $a < count($this->properties); $a++) {
|
$propertiesCount = count($this->properties);
|
||||||
|
for ($a = 0; $a < $propertiesCount; $a++) {
|
||||||
if ($this->properties[$a]->isPublic() === true) {
|
if ($this->properties[$a]->isPublic() === true) {
|
||||||
$counter++;
|
$counter++;
|
||||||
}
|
}
|
||||||
60
tests/properties/SortByTest.php
Normal file
60
tests/properties/SortByTest.php
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ParseCsv\tests\properties;
|
||||||
|
|
||||||
|
class SortByTest extends BaseClass {
|
||||||
|
|
||||||
|
public function testSortByRating() {
|
||||||
|
$this->csv->sort_by = 'rating';
|
||||||
|
$this->csv->conditions = 'title does not contain Blood';
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
// Rating 0
|
||||||
|
'The Killing Kind',
|
||||||
|
'The Third Secret',
|
||||||
|
|
||||||
|
// Rating 3
|
||||||
|
'The Last Templar',
|
||||||
|
'The Broker (Paperback)',
|
||||||
|
|
||||||
|
// Rating 4
|
||||||
|
'Deception Point (Paperback)',
|
||||||
|
'The Rule of Four (Paperback)',
|
||||||
|
'The Da Vinci Code (Hardcover)',
|
||||||
|
|
||||||
|
// Rating 5
|
||||||
|
'State of Fear (Paperback)',
|
||||||
|
'Prey',
|
||||||
|
'Digital Fortress : A Thriller (Mass Market Paperback)',
|
||||||
|
'Angels & Demons (Mass Market Paperback)',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testReverseSortByRating() {
|
||||||
|
$this->csv->sort_by = 'rating';
|
||||||
|
$this->csv->conditions =
|
||||||
|
'title does not contain Prey AND ' .
|
||||||
|
'title does not contain Fortress AND ' .
|
||||||
|
'title does not contain Blood AND ' .
|
||||||
|
'title does not contain Fear';
|
||||||
|
$this->csv->sort_reverse = true;
|
||||||
|
$this->_compareWithExpected([
|
||||||
|
|
||||||
|
// Rating 5
|
||||||
|
'Angels & Demons (Mass Market Paperback)',
|
||||||
|
'The Traveller',
|
||||||
|
|
||||||
|
// Rating 4
|
||||||
|
'The Da Vinci Code (Hardcover)',
|
||||||
|
'The Rule of Four (Paperback)',
|
||||||
|
'Deception Point (Paperback)',
|
||||||
|
|
||||||
|
// Rating 3
|
||||||
|
'The Broker (Paperback)',
|
||||||
|
'The Last Templar',
|
||||||
|
|
||||||
|
// Rating 0
|
||||||
|
'The Third Secret',
|
||||||
|
'The Killing Kind',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user