Add CSV formatter

nouveau fichier: core/lib/Thelia/Core/FileFormat/Formatting/Formatter/CSVFormatter.php
	nouveau fichier: core/lib/Thelia/Tests/FileFormat/Formatting/Formatter/CSVFormatterTest.php
This commit is contained in:
Benjamin Perche
2014-07-21 09:34:40 +02:00
parent a34441f376
commit ce36b7b68e
2 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,134 @@
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Tests\FileFormat\Formatting\Formatter;
use Symfony\Component\DependencyInjection\Container;
use Thelia\Core\FileFormat\Formatting\Formatter\CSVFormatter;
use Thelia\Core\FileFormat\Formatting\FormatterData;
use Thelia\Core\Translation\Translator;
/**
* Class CSVFormatterTest
* @package Thelia\Tests\FileFormat\Formatting\Formatter
* @author Benjamin Perche <bperche@openstudio.fr>
*/
class CSVFormatterTest extends \PHPUnit_Framework_TestCase
{
/** @var CSVFormatter */
protected $formatter;
public function setUp()
{
new Translator(new Container());
$this->formatter = new CSVFormatter();
}
public function testSimpleEncode()
{
$expected = "\"ref\";\"stock\"\r\n\"foo\";\"bar\"";
$data = [
[
"ref" => "foo",
"stock" => "bar",
],
];
$data = (new FormatterData())->setData($data);
$this->assertEquals(
$expected,
$this->formatter->encode($data)
);
}
public function testComplexEncode()
{
$this->formatter->lineReturn = "\n";
$this->formatter->delimiter = ",";
$expected = "\"foo\",\"bar\",\"baz\"\n\"1\",\"2\",\"3\"\n\"4\",\"5\",\"6\"\n\"1\",\"2\",\"3\"";
$data = [
[
"foo" => "1",
"bar" => "2",
"baz" => "3",
],
[
"foo" => "4",
"bar" => "5",
"baz" => "6",
],
[
"foo" => "1",
"bar" => "2",
"baz" => "3",
],
];
$data = (new FormatterData())->setData($data);
$this->assertEquals(
$expected,
$this->formatter->encode($data)
);
}
public function testSimpleDecode()
{
$data = "\"ref\";\"stock\"\r\n\"foo\";\"bar\"";
$expected = [
[
"ref" => "foo",
"stock" => "bar",
],
];
$this->assertEquals(
$expected,
$this->formatter->decode($data)->getData()
);
}
public function testComplexDecode()
{
$this->formatter->lineReturn = "\n";
$this->formatter->delimiter = ",";
$data = "\"foo\",\"bar\",\"baz\"\n\"1\",\"2\",\"3\"\n\"4\",\"5\",\"6\"\n\"1\",\"2\",\"3\"";
$expected = [
[
"foo" => "1",
"bar" => "2",
"baz" => "3",
],
[
"foo" => "4",
"bar" => "5",
"baz" => "6",
],
[
"foo" => "1",
"bar" => "2",
"baz" => "3",
],
];
$this->assertEquals(
$expected,
$this->formatter->decode($data)->getData()
);
}
}