123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <?php
- namespace fphammerle\helpers\tests;
- use fphammerle\helpers\StringHelper;
- class StringHelperTest extends \PHPUnit_Framework_TestCase
- {
- public function testPrepend()
- {
- $this->assertEquals(
- 'prefixstring',
- StringHelper::prepend('prefix', 'string')
- );
- }
- public function testPrependToEmpty()
- {
- $this->assertEquals(
- 'prefix',
- StringHelper::prepend('prefix', '')
- );
- }
- public function testPrependToNull()
- {
- $this->assertEquals(
- null,
- StringHelper::prepend('prefix', null)
- );
- }
- public function testPrependNull()
- {
- $this->assertEquals(
- 'string',
- StringHelper::prepend(null, 'string')
- );
- }
- public function testPrependToList()
- {
- $this->assertEquals(
- ['prefix1', 'prefix2', 'prefix3'],
- StringHelper::prepend('prefix', ['1', '2', '3'])
- );
- }
- public function testPrependToDict()
- {
- $this->assertEquals(
- ['a' => 'prefix1', 'b' => 'prefix2', 'prefix3'],
- StringHelper::prepend('prefix', ['a' => '1', 'b' => '2', '3'])
- );
- }
- public function testPrependToDictWithNull()
- {
- $this->assertEquals(
- ['a' => 'prefix1', 'b' => null, 'prefix3'],
- StringHelper::prepend('prefix', ['a' => '1', 'b' => null, '3'])
- );
- }
- public function testAppend()
- {
- $this->assertEquals(
- 'stringsuffix',
- StringHelper::append('string', 'suffix')
- );
- }
- public function testAppendToEmpty()
- {
- $this->assertEquals(
- 'suffix',
- StringHelper::append('', 'suffix')
- );
- }
- public function testAppendToNull()
- {
- $this->assertEquals(
- null,
- StringHelper::append(null, 'suffix')
- );
- }
- public function testAppendNull()
- {
- $this->assertEquals(
- 'string',
- StringHelper::append('string', null)
- );
- }
- public function testAppendToList()
- {
- $this->assertEquals(
- ['1postfix', '2postfix', '3postfix'],
- StringHelper::append(['1', '2', '3'], 'postfix')
- );
- }
- public function testAppendToDict()
- {
- $this->assertEquals(
- ['a' => '1postfix', 'b' => '2postfix', '3postfix'],
- StringHelper::append(['a' => '1', 'b' => '2', '3'], 'postfix')
- );
- }
- public function testAppendToDictWithNull()
- {
- $this->assertEquals(
- ['a' => '1postfix', 'b' => null, '3postfix'],
- StringHelper::append(['a' => '1', 'b' => null, '3'], 'postfix')
- );
- }
- public function testEmbed()
- {
- $this->assertEquals(
- 'prefixstringsuffix',
- StringHelper::embed('prefix', 'string', 'suffix')
- );
- }
- public function testEmbedToEmpty()
- {
- $this->assertEquals(
- 'prefixsuffix',
- StringHelper::embed('prefix', '', 'suffix')
- );
- }
- public function testEmbedToNull()
- {
- $this->assertEquals(
- null,
- StringHelper::embed('prefix', null, 'suffix')
- );
- }
- public function testEmbedNull()
- {
- $this->assertEquals(
- 'string',
- StringHelper::embed(null, 'string', null)
- );
- }
- public function testEmbedToList()
- {
- $this->assertEquals(
- ['prefix1postfix', 'prefix2postfix', 'prefix3postfix'],
- StringHelper::embed('prefix', ['1', '2', '3'], 'postfix')
- );
- }
- public function testEmbedToDict()
- {
- $this->assertEquals(
- ['a' => 'prefix1postfix', 'b' => 'prefix2postfix', 'prefix3postfix'],
- StringHelper::embed('prefix', ['a' => '1', 'b' => '2', '3'], 'postfix')
- );
- }
- public function testEmbedToDictWithNull()
- {
- $this->assertEquals(
- ['a' => 'prefix1postfix', 'b' => null, 'prefix3postfix'],
- StringHelper::embed('prefix', ['a' => '1', 'b' => null, '3'], 'postfix')
- );
- }
- public function testEmbrace()
- {
- $this->assertEquals(
- 'bracestringbrace',
- StringHelper::embrace('brace', 'string')
- );
- }
- public function testEmbraceToEmpty()
- {
- $this->assertEquals(
- 'bracebrace',
- StringHelper::embrace('brace', '')
- );
- }
- public function testEmbraceToNull()
- {
- $this->assertEquals(
- null,
- StringHelper::embrace('brace', null)
- );
- }
- public function testEmbraceNull()
- {
- $this->assertEquals(
- 'string',
- StringHelper::embrace(null, 'string')
- );
- }
- public function testEmbraceToList()
- {
- $this->assertEquals(
- ['brace1brace', 'brace2brace', 'brace3brace'],
- StringHelper::embrace('brace', ['1', '2', '3'])
- );
- }
- public function testEmbraceToDict()
- {
- $this->assertEquals(
- ['a' => 'brace1brace', 'b' => 'brace2brace', 'brace3brace'],
- StringHelper::embrace('brace', ['a' => '1', 'b' => '2', '3'])
- );
- }
- public function testEmbraceToDictWithNull()
- {
- $this->assertEquals(
- ['a' => 'brace1brace', 'b' => null, 'brace3brace'],
- StringHelper::embrace('brace', ['a' => '1', 'b' => null, '3'])
- );
- }
- public function testImplode()
- {
- $this->assertEquals(
- 'a,b,c,d',
- StringHelper::implode(',', ['a', 'b', 'c', 'd'])
- );
- }
- public function testImplodeWithNull()
- {
- $this->assertEquals(
- 'a,b,d',
- StringHelper::implode(',', ['a', 'b', null, 'd'])
- );
- }
- public function testImplodeEmpty()
- {
- $this->assertEquals(
- 'acd',
- StringHelper::implode('', ['a', '', 'c', 'd'])
- );
- }
- public function testImplodeByEmpty()
- {
- $this->assertEquals(
- 'abcd',
- StringHelper::implode('', ['a', 'b', 'c', 'd'])
- );
- }
- public function testImplodeNothing()
- {
- $this->assertEquals(
- null,
- StringHelper::implode(',', [null, null, null])
- );
- }
- public function containsAnyProvider()
- {
- return [
- [['a', 'b', 's'], 'string', true],
- [['a', 'b'], 'string', false],
- [['a'], '', false],
- [['a'], 'string', false],
- [['ng'], 'string', true],
- [['ngg', 'ri'], 'string', true],
- [['ngg'], 'string', false],
- [['sti', 'sri'], 'string', false],
- [['sti', 'str', 'sri'], 'string', true],
- [['str', 'sri'], 'string', true],
- [[], '', false],
- [[], 'string', false],
- ];
- }
- /**
- * @dataProvider containsAnyProvider
- */
- public function testContainsAny(array $needles, $haystack, $result)
- {
- $this->assertSame($result, StringHelper::containsAny($needles, $haystack));
- }
- public function containsAnyEmptyNeedleProvider()
- {
- return [
- [[''], ''],
- [[''], 'string'],
- [['a', '', 'c'], ''],
- [['a', '', 'c'], 'string'],
- ];
- }
- /**
- * @dataProvider containsAnyEmptyNeedleProvider
- * @expectedException InvalidArgumentException
- */
- public function testContainsAnyEmptyNeedle(array $needles, $haystack)
- {
- StringHelper::containsAny($needles, $haystack);
- }
- }
|