2021-04-10 22:57:00 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-04-10 22:57:00 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
namespace App\Tests\Util;
|
|
|
|
|
2021-05-02 15:56:41 +01:00
|
|
|
use App\Util\Exception\ServerException;
|
2021-04-10 22:57:00 +01:00
|
|
|
use App\Util\Formatting;
|
2021-05-02 15:56:41 +01:00
|
|
|
use App\Util\TemporaryFile;
|
2021-10-10 09:26:18 +01:00
|
|
|
use Exception;
|
2021-05-02 15:56:41 +01:00
|
|
|
use InvalidArgumentException;
|
2021-04-10 22:57:00 +01:00
|
|
|
use Jchook\AssertThrows\AssertThrows;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
|
|
|
|
class FormattingTest extends WebTestCase
|
|
|
|
{
|
|
|
|
use AssertThrows;
|
|
|
|
|
2021-05-02 15:56:41 +01:00
|
|
|
public function testTwigRenderString()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
|
|
|
// test container allows us to get the private twig service
|
|
|
|
$container = self::$kernel->getContainer()->get('test.service_container');
|
|
|
|
$twig = $container->get('twig');
|
|
|
|
Formatting::setTwig($twig);
|
|
|
|
static::assertSame('<a href="/test"></a>', Formatting::twigRenderString('<a href="{{ref}}"></a>', ['ref' => '/test']));
|
|
|
|
}
|
|
|
|
|
2021-09-14 13:36:30 +01:00
|
|
|
// TODO re-enable test
|
|
|
|
// public function testTwigRenderFile()
|
|
|
|
// {
|
|
|
|
// try {
|
|
|
|
// static::bootKernel();
|
|
|
|
// // test container allows us to get the private twig service
|
|
|
|
// $container = self::$kernel->getContainer()->get('test.service_container');
|
|
|
|
// $twig = $container->get('twig');
|
|
|
|
// Formatting::setTwig($twig);
|
|
|
|
// $dir = INSTALLDIR . '/templates/';
|
|
|
|
// $temp = new TemporaryFile(['directory' => $dir, 'prefix' => '', 'suffix' => '.html.twig', 'permission' => 0777]);
|
|
|
|
// $temp->write('<a href="{{ref}}"></a>');
|
|
|
|
// static::assertSame('<a href="/test"></a>', Formatting::twigRenderFile(Formatting::removePrefix($temp->getRealPath(), $dir), ['ref' => '/test']));
|
|
|
|
// } finally {
|
|
|
|
// unset($temp);
|
|
|
|
// }
|
|
|
|
// }
|
2021-05-02 15:56:41 +01:00
|
|
|
|
2021-04-10 22:57:00 +01:00
|
|
|
public function testNormalizePath()
|
|
|
|
{
|
2021-05-02 15:56:41 +01:00
|
|
|
static::assertSame('', Formatting::normalizePath(''));
|
|
|
|
static::assertSame('foo', Formatting::normalizePath('foo'));
|
|
|
|
static::assertSame('foo/', Formatting::normalizePath('foo//'));
|
2021-04-10 22:57:00 +01:00
|
|
|
static::assertSame('/foo/bar', Formatting::normalizePath('/foo/bar'));
|
|
|
|
static::assertSame('/foo/bar', Formatting::normalizePath('\\foo\\bar'));
|
|
|
|
static::assertSame('/foo/bar', Formatting::normalizePath('\\foo/bar'));
|
|
|
|
static::assertSame('/foo/bar/', Formatting::normalizePath('/foo\\bar\\'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testModuleFromPath()
|
|
|
|
{
|
2021-05-02 15:56:41 +01:00
|
|
|
static::assertNull(Formatting::moduleFromPath(''));
|
|
|
|
static::assertNull(Formatting::moduleFromPath('/'));
|
2021-04-10 22:57:00 +01:00
|
|
|
static::assertNull(Formatting::moduleFromPath('/var/www/social/src/Kernel.php'));
|
|
|
|
static::assertSame('foo', Formatting::moduleFromPath('/var/www/social/plugins/foo/Foo.php'));
|
|
|
|
static::assertSame('foo', Formatting::moduleFromPath('/var/www/social/components/foo/Foo.php'));
|
2021-05-02 15:56:41 +01:00
|
|
|
static::assertThrows(ServerException::class, fn () => Formatting::moduleFromPath('/components/'));
|
2021-04-10 22:57:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testStartsWithString()
|
|
|
|
{
|
|
|
|
static::assertTrue(Formatting::startsWith('foobar', 'foo'));
|
|
|
|
static::assertTrue(Formatting::startsWith('foo', 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith('bar', 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith('', 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith('fo', 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith('oo', 'foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testStartsWithArray()
|
|
|
|
{
|
|
|
|
static::assertTrue(Formatting::startsWith(['foobar', 'fooquux'], 'foo'));
|
|
|
|
static::assertTrue(Formatting::startsWith(['foo', 'foo'], 'foo'));
|
|
|
|
static::assertTrue(Formatting::startsWith(['foo1', 'foo2', 'foo3'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith(['foobar', 'barquux'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith(['', '', ''], 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith(['fo', 'fo'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::startsWith(['oo', 'oo'], 'foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEndsWithString()
|
|
|
|
{
|
|
|
|
static::assertTrue(Formatting::endsWith('foobar', 'bar'));
|
|
|
|
static::assertTrue(Formatting::endsWith('foo', 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith('bar', 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith('', 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith('fo', 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith('oo', 'foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEndsWithArray()
|
|
|
|
{
|
|
|
|
static::assertTrue(Formatting::endsWith(['foobar', 'quuxbar'], 'bar'));
|
|
|
|
static::assertTrue(Formatting::endsWith(['foo', 'foo'], 'foo'));
|
|
|
|
static::assertTrue(Formatting::endsWith(['qwefoo', 'zxcfoo', 'asdfoo'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith(['barfoo', 'quuxbar'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith(['', '', ''], 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith(['fo', 'fo'], 'foo'));
|
|
|
|
static::assertFalse(Formatting::endsWith(['oo', 'oo'], 'foo'));
|
|
|
|
}
|
|
|
|
|
2021-05-02 15:56:41 +01:00
|
|
|
public function testRemovePrefix()
|
|
|
|
{
|
|
|
|
static::assertSame('', Formatting::removePrefix('', ''));
|
|
|
|
static::assertSame('', Formatting::removePrefix('', 'foo'));
|
|
|
|
static::assertSame('foo', Formatting::removePrefix('foo', ''));
|
|
|
|
static::assertSame('', Formatting::removePrefix('foo', 'foo'));
|
|
|
|
static::assertSame('foo', Formatting::removePrefix('foo', 'bar'));
|
|
|
|
static::assertSame('foo', Formatting::removePrefix('barfoo', 'bar'));
|
|
|
|
static::assertSame('foobar', Formatting::removePrefix('foobar', 'bar'));
|
|
|
|
static::assertSame('foobar', Formatting::removePrefix('barfoobar', 'bar'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRemoveSuffix()
|
|
|
|
{
|
|
|
|
static::assertSame('', Formatting::removeSuffix('', ''));
|
|
|
|
static::assertSame('', Formatting::removeSuffix('', 'foo'));
|
|
|
|
static::assertSame('foo', Formatting::removeSuffix('foo', ''));
|
|
|
|
static::assertSame('', Formatting::removeSuffix('foo', 'foo'));
|
|
|
|
static::assertSame('foo', Formatting::removeSuffix('foo', 'bar'));
|
|
|
|
static::assertSame('barfoo', Formatting::removeSuffix('barfoo', 'bar'));
|
|
|
|
static::assertSame('foo', Formatting::removeSuffix('foobar', 'bar'));
|
|
|
|
static::assertSame('barfoo', Formatting::removeSuffix('barfoobar', 'bar'));
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:57:00 +01:00
|
|
|
public function testCamelCaseToSnakeCase()
|
|
|
|
{
|
|
|
|
static::assertSame('foo_bar', Formatting::camelCaseToSnakeCase('FooBar'));
|
|
|
|
static::assertSame('foo_bar_quux', Formatting::camelCaseToSnakeCase('FooBarQuux'));
|
|
|
|
static::assertSame('foo_bar', Formatting::camelCaseToSnakeCase('foo_bar'));
|
|
|
|
static::assertSame('', Formatting::camelCaseToSnakeCase(''));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSnakeCaseToCamelCase()
|
|
|
|
{
|
|
|
|
static::assertSame('FooBar', Formatting::snakeCaseToCamelCase('foo_bar'));
|
|
|
|
static::assertSame('FooBarQuux', Formatting::snakeCaseToCamelCase('foo_bar_quux'));
|
|
|
|
static::assertSame('FooBar', Formatting::snakeCaseToCamelCase('FooBar'));
|
|
|
|
static::assertSame('', Formatting::snakeCaseToCamelCase(''));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIndent()
|
|
|
|
{
|
|
|
|
static::assertSame(' foo', Formatting::indent('foo'));
|
|
|
|
static::assertSame(' foo', Formatting::indent('foo', level: 1, count: 2));
|
|
|
|
static::assertSame(" foo\n bar", Formatting::indent("foo\nbar"));
|
|
|
|
static::assertSame(" foo\n bar", Formatting::indent(['foo', 'bar']));
|
2021-05-02 15:56:41 +01:00
|
|
|
static::assertThrows(InvalidArgumentException::class, fn () => Formatting::indent(1));
|
2021-04-10 22:57:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testToString()
|
|
|
|
{
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertThrows(Exception::class, fn () => Formatting::toString('foo', ''));
|
2021-04-10 22:57:00 +01:00
|
|
|
static::assertSame('', Formatting::toString(''));
|
|
|
|
static::assertSame('foo', Formatting::toString('foo'));
|
|
|
|
static::assertSame('42', Formatting::toString(42));
|
|
|
|
static::assertSame('42, 1', Formatting::toString([42.0, 1]));
|
|
|
|
static::assertSame('42 1', Formatting::toString([42.0, 1], Formatting::JOIN_BY_SPACE));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testToArray()
|
|
|
|
{
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertThrows(Exception::class, fn () => Formatting::toArray('foo', $a, ''));
|
2021-04-10 22:57:00 +01:00
|
|
|
|
|
|
|
static::assertTrue(Formatting::toArray('', $a));
|
|
|
|
static::assertSame([], $a);
|
|
|
|
|
|
|
|
static::assertTrue(Formatting::toArray('foo', $a));
|
|
|
|
static::assertSame(['foo'], $a);
|
|
|
|
|
|
|
|
static::assertTrue(Formatting::toArray('foo, bar', $a));
|
|
|
|
static::assertSame(['foo', 'bar'], $a);
|
|
|
|
|
|
|
|
static::assertTrue(Formatting::toArray('foo bar', $a, Formatting::SPLIT_BY_SPACE));
|
|
|
|
static::assertSame(['foo', 'bar'], $a);
|
|
|
|
|
|
|
|
static::assertFalse(Formatting::toArray('foo,', $a));
|
|
|
|
static::assertTrue(Formatting::toArray('foo, ', $a));
|
|
|
|
static::assertSame(['foo', ''], $a);
|
|
|
|
}
|
|
|
|
}
|