123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\StringNotation;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Gregor Harlan <gharlan@web.de>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\StringNotation\SingleQuoteFixer
- */
- final class SingleQuoteFixerTest extends AbstractFixerTestCase
- {
- /**
- * @param string $expected
- * @param null|string $input
- *
- * @dataProvider provideTestFixCases
- */
- public function testFix($expected, $input = null)
- {
- $this->doTest($expected, $input);
- }
- public function provideTestFixCases()
- {
- return [
- [
- '<?php $a = \'\';',
- '<?php $a = "";',
- ],
- [
- '<?php $a = \'foo bar\';',
- '<?php $a = "foo bar";',
- ],
- [
- '<?php $a = b\'\';',
- '<?php $a = b"";',
- ],
- [
- '<?php $a = B\'\';',
- '<?php $a = B"";',
- ],
- [
- '<?php $a = \'foo bar\';',
- '<?php $a = "foo bar";',
- ],
- [
- '<?php $a = b\'foo bar\';',
- '<?php $a = b"foo bar";',
- ],
- [
- '<?php $a = B\'foo bar\';',
- '<?php $a = B"foo bar";',
- ],
- [
- '<?php $a = \'foo
- bar\';',
- '<?php $a = "foo
- bar";',
- ],
- [
- '<?php $a = \'foo\'.\'bar\'."$baz";',
- '<?php $a = \'foo\'."bar"."$baz";',
- ],
- [
- '<?php $a = \'foo "bar"\';',
- '<?php $a = "foo \"bar\"";',
- ],
- [<<<'EOF'
- <?php $a = '\\foo\\bar\\\\';
- EOF
- , <<<'EOF'
- <?php $a = "\\foo\\bar\\\\";
- EOF
- ],
- [
- '<?php $a = \'foo $bar7\';',
- '<?php $a = "foo \$bar7";',
- ],
- [
- '<?php $a = \'foo $(bar7)\';',
- '<?php $a = "foo \$(bar7)";',
- ],
- [
- '<?php $a = \'foo \\\\($bar8)\';',
- '<?php $a = "foo \\\\(\$bar8)";',
- ],
- ['<?php $a = "foo \\" \\$$bar";'],
- ['<?php $a = b"foo \\" \\$$bar";'],
- ['<?php $a = B"foo \\" \\$$bar";'],
- ['<?php $a = "foo \'bar\'";'],
- ['<?php $a = b"foo \'bar\'";'],
- ['<?php $a = B"foo \'bar\'";'],
- ['<?php $a = "foo $bar";'],
- ['<?php $a = b"foo $bar";'],
- ['<?php $a = B"foo $bar";'],
- ['<?php $a = "foo ${bar}";'],
- ['<?php $a = b"foo ${bar}";'],
- ['<?php $a = B"foo ${bar}";'],
- ['<?php $a = "foo\n bar";'],
- ['<?php $a = b"foo\n bar";'],
- ['<?php $a = B"foo\n bar";'],
- [<<<'EOF'
- <?php $a = "\\\n";
- EOF
- ],
- ];
- }
- /**
- * @param string $expected
- * @param null|string $input
- *
- * @dataProvider provideTestSingleQuoteFixCases
- */
- public function testSingleQuoteFix($expected, $input = null)
- {
- $this->fixer->configure([
- 'strings_containing_single_quote_chars' => true,
- ]);
- $this->doTest($expected, $input);
- }
- public function provideTestSingleQuoteFixCases()
- {
- return [
- [
- '<?php $a = \'foo \\\'bar\\\'\';',
- '<?php $a = "foo \'bar\'";',
- ],
- [
- <<<'EOT'
- <?php
- // none
- $a = 'start \' end';
- // one escaped baskslash
- $b = 'start \\\' end';
- // two escaped baskslash
- $c = 'start \\\\\' end';
- EOT
- ,
- <<<'EOT'
- <?php
- // none
- $a = "start ' end";
- // one escaped baskslash
- $b = "start \\' end";
- // two escaped baskslash
- $c = "start \\\\' end";
- EOT
- ,
- ],
- [
- <<<'EOT'
- <?php
- // one unescaped backslash
- $a = "start \' end";
- // one escaped + one unescaped baskslash
- $b = "start \\\' end";
- EOT
- ,
- ],
- ];
- }
- }
|