You are here

YamlFileDumperTest.php in Plug 7

File

lib/Symfony/translation/Tests/Dumper/YamlFileDumperTest.php
View source
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Symfony\Component\Translation\Tests\Dumper;

use Symfony\Component\Translation\MessageCatalogue;
use Symfony\Component\Translation\Dumper\YamlFileDumper;
class YamlFileDumperTest extends \PHPUnit_Framework_TestCase {
  public function testTreeDump() {
    $catalogue = new MessageCatalogue('en');
    $catalogue
      ->add(array(
      'foo.bar1' => 'value1',
      'foo.bar2' => 'value2',
    ));
    $tempDir = sys_get_temp_dir();
    $dumper = new YamlFileDumper();
    $dumper
      ->dump($catalogue, array(
      'path' => $tempDir,
      'as_tree' => true,
      'inline' => 999,
    ));
    $this
      ->assertEquals(file_get_contents(__DIR__ . '/../fixtures/messages.yml'), file_get_contents($tempDir . '/messages.en.yml'));
    unlink($tempDir . '/messages.en.yml');
  }
  public function testLinearDump() {
    $catalogue = new MessageCatalogue('en');
    $catalogue
      ->add(array(
      'foo.bar1' => 'value1',
      'foo.bar2' => 'value2',
    ));
    $tempDir = sys_get_temp_dir();
    $dumper = new YamlFileDumper();
    $dumper
      ->dump($catalogue, array(
      'path' => $tempDir,
    ));
    $this
      ->assertEquals(file_get_contents(__DIR__ . '/../fixtures/messages_linear.yml'), file_get_contents($tempDir . '/messages.en.yml'));
    unlink($tempDir . '/messages.en.yml');
  }

}

Classes

Namesort descending Description
YamlFileDumperTest