friendica/tests/src/Model/TagTest.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2022-01-30 16:12:07 +01:00
<?php
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2022-01-30 16:12:07 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* This program 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.
*
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Test\src\Model;
2022-01-30 16:57:54 +01:00
use Friendica\Model\Tag;
2022-01-30 16:12:07 +01:00
use PHPUnit\Framework\TestCase;
class TagTest extends TestCase
{
2022-01-30 17:00:17 +01:00
/**
*
*/
public function testGetFromBody()
{
$body = '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url] Test, please ignore';
2022-01-30 17:30:49 +01:00
2022-01-30 17:00:17 +01:00
$tags = Tag::getFromBody($body);
2022-01-30 17:30:49 +01:00
2022-01-30 17:26:29 +01:00
$expected = [
[
'![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url]',
'!',
'https://pirati.ca/profile/test1',
'Testgruppe 1b'
]
];
2022-01-30 17:21:07 +01:00
2022-01-30 17:26:29 +01:00
self::assertEquals($expected, $tags);
2022-01-30 17:00:17 +01:00
}
2022-01-30 16:12:07 +01:00
}