Compare commits

...

11 commits

Author SHA1 Message Date
Simon Vieille a2e1ac418c
add jenkins status
All checks were successful
Gitnet/csv-validator/pipeline/head This commit looks good
2020-09-01 16:28:22 +02:00
Simon Vieille 2d06d4adc5
add jenkins tests
All checks were successful
Gitnet/csv-validator/pipeline/head This commit looks good
2020-09-01 16:25:29 +02:00
Simon Vieille fac4371d69
fix issue with validation 2020-09-01 16:24:29 +02:00
Simon Vieille 0b9c77ae7f
add compatibility with deblan/csv@v3 2020-09-01 16:24:15 +02:00
Simon Vieille cd43e2fed9
upgrade dependencies (php7) 2020-01-20 11:04:04 +01:00
Simon Vieille af0c45c6bc
CI 2018-06-06 19:03:13 +02:00
Simon Vieille 6169083b5e
CI 2018-06-06 15:55:17 +02:00
Simon Vieille 95c470e404
symfony/validator v3.* 2018-05-29 15:37:17 +02:00
Simon Vieille 78610d50ea CI 2017-03-15 00:42:28 +01:00
Simon Vieille 8ee01fc209 CI 2017-03-15 00:39:46 +01:00
Simon Vieille 1e6ed3d204 Insight analyse fixes 2017-03-13 15:53:14 +01:00
13 changed files with 45 additions and 14 deletions

2
.gitignore vendored
View file

@ -1,3 +1 @@
*.swp
tags
vendor

25
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,25 @@
pipeline {
agent any
stages {
stage('PHP 7.1') {
steps {
sh '/usr/local/bin/composer-php7.1 install'
sh 'php7.1 /usr/local/bin/phpunit-7'
}
}
stage('PHP 7.3') {
steps {
sh '/usr/local/bin/composer-php7.3 update'
sh 'php7.3 /usr/local/bin/phpunit-9'
}
}
stage('PHP 7.4') {
steps {
sh '/usr/local/bin/composer-php7.4 update'
sh 'php7.4 /usr/local/bin/phpunit-9'
}
}
}
}

View file

@ -20,4 +20,5 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

4
Makefile Normal file
View file

@ -0,0 +1,4 @@
.PHONY: tests
tests:
phpunit

View file

@ -1,7 +1,7 @@
csv-validator
=============
![](https://phpci.gitnet.fr//build-status/image/1)
[![Build Status](https://ci.gitnet.fr/buildStatus/icon?job=Gitnet%2Fcsv-validator%2F3)](https://ci.gitnet.fr/job/Gitnet/job/csv-validator/job/3/)
CSV validator library

View file

@ -15,8 +15,8 @@
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"symfony/validator": "2.*",
"deblan/csv": "v2.0.*"
"php": "^7.1.3",
"symfony/validator": "^4",
"deblan/csv": "v2.0.*|v3.*"
}
}

View file

@ -2,7 +2,6 @@
use Deblan\Csv\CsvParser;
use Deblan\CsvValidator\Validator;
use Symfony\Component\Validator\Validation;
use Symfony\Component\Validator\Constraints\Email;
use Symfony\Component\Validator\Constraints\Date;
use Symfony\Component\Validator\Constraints\Callback;
@ -23,7 +22,7 @@ $validator->addFieldConstraint(1, new Date());
$validator->setExpectedHeaders(['foo', 'bar', 'bim']);
// An line must contain 3 columns
$validator->addDataConstraint(new Callback(function($data, ExecutionContextInterface $context) {
$validator->addDataConstraint(new Callback(function ($data, ExecutionContextInterface $context) {
if (count($data) !== 6) { // 6 because of the legend (3 fields * 2)
$context->addViolation('The line must contain 3 columns');
}

View file

@ -7,7 +7,6 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "vendor/autoload.php" >
<testsuites>

View file

@ -122,6 +122,7 @@ class Validator
if ($this->parser !== $parser) {
$this->parser = $parser;
$this->errors = [];
$this->hasValidate = false;
} elseif ($this->hasValidate) {
return;
}

View file

@ -1,11 +1,13 @@
<?php
use PHPUnit\Framework\TestCase;
/**
* class ExampleTest.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class ExampleTest extends \PHPUnit_Framework_TestCase
class ExampleTest extends TestCase
{
public function testExemple()
{

View file

@ -1,18 +1,19 @@
<?php
use PHPUnit\Framework\TestCase;
use Deblan\Csv\CsvParser;
use Deblan\CsvValidator\Validator;
use Symfony\Component\Validator\Validation;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Email;
class ValidatorTest extends \PHPUnit_Framework_TestCase
class ValidatorTest extends TestCase
{
public function testViolation()
{
$parser = $this->generateParser('example.csv');
$validator = $this->generateValidator($parser);
$this->setExpectedException('\RuntimeException');
$this->expectException('\RuntimeException');
$validator->isValid();
}

View file

@ -1,9 +1,10 @@
<?php
use PHPUnit\Framework\TestCase;
use Symfony\Component\Validator\ConstraintViolation;
use Deblan\CsvValidator\Violation;
class ViolationTest extends \PHPUnit_Framework_TestCase
class ViolationTest extends TestCase
{
public function testViolation()
{