object = new Message(); } /** * to String casting test */ public function testToString(): void { $this->object->setMessage('test<&>'); $this->assertEquals('test<&>', (string) $this->object); } /** * test success method */ public function testSuccess(): void { $this->object = new Message('test<&>', Message::SUCCESS); $this->assertEquals($this->object, Message::success('test<&>')); $this->assertEquals( 'Your SQL query has been executed successfully.', Message::success()->getString(), ); } /** * test error method */ public function testError(): void { $this->object = new Message('test<&>', Message::ERROR); $this->assertEquals($this->object, Message::error('test<&>')); $this->assertEquals('Error', Message::error()->getString()); } /** * test notice method */ public function testNotice(): void { $this->object = new Message('test<&>', Message::NOTICE); $this->assertEquals($this->object, Message::notice('test<&>')); } /** * test rawError method */ public function testRawError(): void { $this->object = new Message('', Message::ERROR); $this->object->setMessage('test<&>'); $this->object->setBBCode(false); $this->assertEquals($this->object, Message::rawError('test<&>')); } /** * test rawNotice method */ public function testRawNotice(): void { $this->object = new Message('', Message::NOTICE); $this->object->setMessage('test<&>'); $this->object->setBBCode(false); $this->assertEquals($this->object, Message::rawNotice('test<&>')); } /** * test rawSuccess method */ public function testRawSuccess(): void { $this->object = new Message('', Message::SUCCESS); $this->object->setMessage('test<&>'); $this->object->setBBCode(false); $this->assertEquals($this->object, Message::rawSuccess('test<&>')); } /** * testing isSuccess method */ public function testIsSuccess(): void { $this->assertFalse($this->object->isSuccess()); $this->object->setType(Message::SUCCESS); $this->assertTrue($this->object->isSuccess()); } /** * testing isNotice method */ public function testIsNotice(): void { $this->assertTrue($this->object->isNotice()); $this->object->setType(Message::ERROR); $this->assertFalse($this->object->isNotice()); $this->object->setType(Message::NOTICE); $this->assertTrue($this->object->isNotice()); } /** * testing isError method */ public function testIsError(): void { $this->assertFalse($this->object->isError()); $this->object->setType(Message::ERROR); $this->assertTrue($this->object->isError()); } /** * testing setter of message */ public function testSetMessage(): void { $this->object->setMessage('test&<>'); $this->assertEquals('test&<>', $this->object->getMessage()); } /** * testing setter of string */ public function testSetString(): void { $this->object->setString('test&<>'); $this->assertEquals('test&<>', $this->object->getString()); } /** * testing add param method */ public function testAddParam(): void { $this->object->addParam(Message::notice('test')); $this->assertEquals( [Message::notice('test')], $this->object->getParams(), ); $this->object->addParam('test'); $this->assertEquals( [Message::notice('test'), 'test'], $this->object->getParams(), ); $this->object->addParam('test'); $this->assertEquals( [Message::notice('test'), 'test', Message::notice('test')], $this->object->getParams(), ); } /** * Test adding html markup */ public function testAddParamHtml(): void { $this->object->setMessage('Hello %s%s%s'); $this->object->addParamHtml(''); $this->object->addParam('user<>'); $this->object->addParamHtml(''); $this->assertEquals( 'Hello user<>', $this->object->getMessage(), ); } /** * testing add string method */ public function testAddString(): void { $this->object->addText('test', '*'); $this->assertEquals( ['*', Message::notice('test')], $this->object->getAddedMessages(), ); $this->object->addText('test', ''); $this->assertEquals( ['*', Message::notice('test'), Message::notice('test')], $this->object->getAddedMessages(), ); } /** * testing add message method */ public function testAddMessage(): void { $this->object->addText('test<>', ''); $this->assertEquals( [Message::notice('test<>')], $this->object->getAddedMessages(), ); $this->object->addHtml('test'); $this->assertEquals( [Message::notice('test<>'), ' ', Message::rawNotice('test')], $this->object->getAddedMessages(), ); $this->object->addMessage(Message::notice('test<>')); $this->assertEquals( 'test<> test test<>', $this->object->getMessage(), ); } /** * testing add messages method */ public function testAddMessages(): void { $messages = []; $messages[] = new Message('Test1'); $messages[] = new Message('PMA_Test2', Message::ERROR); $messages[] = new Message('Test3'); $this->object->addMessages($messages, ''); $this->assertEquals( [Message::notice('Test1'), Message::error('PMA_Test2'), Message::notice('Test3')], $this->object->getAddedMessages(), ); } /** * testing add messages method */ public function testAddMessagesString(): void { $messages = ['test1', 'test', 'test2']; $this->object->addMessagesString($messages, ''); $this->assertEquals( [Message::notice('test1'), Message::notice('test<b>'), Message::notice('test2')], $this->object->getAddedMessages(), ); $this->assertEquals( 'test1test<b>test2', $this->object->getMessage(), ); } /** * testing setter of params */ public function testSetParams(): void { $this->object->setParams(['test&<>']); $this->assertEquals(['test&<>'], $this->object->getParams()); } /** * Data provider for testDecodeBB * * @return mixed[] Test data */ public static function decodeBBDataProvider(): array { return [ ['[em]test[/em][em]aa[em/][em]test[/em]', 'testaa[em/]test'], ['[strong]test[/strong][strong]test[/strong]', 'testtest'], ['[code]test[/code][code]test[/code]', 'testtest'], ['[kbd]test[/kbd][br][sup]test[/sup]', 'test
test'], [ '[a@https://example.com/@Documentation]link[/a]', 'link', ], ['[a@./non-existing@Documentation]link[/a]', '[a@./non-existing@Documentation]link'], [ '[doc@foo]link[/doc]', 'link', ], [ '[doc@page@anchor]link[/doc]', 'link', ], [ '[doc@faqmysql]link[/doc]', 'link', ], ]; } /** * testing decodeBB method * * @param string $actual BB code string * @param string $expected Expected decoded string */ #[DataProvider('decodeBBDataProvider')] public function testDecodeBB(string $actual, string $expected): void { unset($GLOBALS['server']); $this->assertEquals($expected, Message::decodeBB($actual)); } /** * testing getHash method */ public function testGetHash(): void { $this->object->setString('<&>test'); $this->object->setMessage('<&>test'); $this->assertEquals( md5(Message::NOTICE . '<&>test<&>test'), $this->object->getHash(), ); } /** * getMessage test - with empty message and with non-empty string - * not key in globals additional params are defined */ public function testGetMessageWithoutMessageWithStringWithParams(): void { $this->object->setMessage(''); $this->object->setString('test string %s %s'); $this->object->addParam('test param 1'); $this->object->addParam('test param 2'); $this->assertEquals( 'test string test param 1 test param 2', $this->object->getMessage(), ); } /** * getMessage test - with empty message and with empty string */ public function testGetMessageWithoutMessageWithEmptyString(): void { $this->object->setMessage(''); $this->object->setString(''); $this->assertEquals('', $this->object->getMessage()); } /** * getMessage test - message is defined * message with BBCode defined */ public function testGetMessageWithMessageWithBBCode(): void { $this->object->setMessage('[kbd]test[/kbd] [doc@cfg_Example]test[/doc]'); $this->assertEquals( 'test test', $this->object->getMessage(), ); } /** * getLevel test */ public function testGetLevel(): void { $this->assertEquals('notice', $this->object->getLevel()); $this->object->setType(Message::SUCCESS); $this->assertEquals('success', $this->object->getLevel()); $this->object->setType(Message::ERROR); $this->assertEquals('error', $this->object->getLevel()); } /** * getDisplay test */ public function testGetDisplay(): void { $this->assertFalse($this->object->isDisplayed()); $this->object->setMessage('Test Message'); $this->assertEquals( '' . "\n", $this->object->getDisplay(), ); $this->assertTrue($this->object->isDisplayed()); } /** * isDisplayed test */ public function testIsDisplayed(): void { $this->assertFalse($this->object->isDisplayed(false)); $this->assertTrue($this->object->isDisplayed(true)); $this->assertTrue($this->object->isDisplayed(false)); } /** * Data provider for testAffectedRows * * @return mixed[] Test-data */ public static function providerAffectedRows(): array { return [ [ 1, '' . "\n", ], [ 2, '' . "\n", ], [ 10000, '' . "\n", ], ]; } /** * Test for getMessageForAffectedRows() method * * @param int $rows Number of rows * @param string $output Expected string */ #[DataProvider('providerAffectedRows')] public function testAffectedRows(int $rows, string $output): void { $this->object = new Message(); $msg = $this->object->getMessageForAffectedRows($rows); $this->object->addMessage($msg); $this->assertEquals($output, $this->object->getDisplay()); } /** * Data provider for testInsertedRows * * @return mixed[] Test-data */ public static function providerInsertedRows(): array { return [ [ 1, '' . "\n", ], [ 2, '' . "\n", ], [ 100000, '' . "\n", ], ]; } /** * Test for getMessageForInsertedRows() method * * @param int $rows Number of rows * @param string $output Expected string */ #[DataProvider('providerInsertedRows')] public function testInsertedRows(int $rows, string $output): void { $this->object = new Message(); $msg = $this->object->getMessageForInsertedRows($rows); $this->object->addMessage($msg); $this->assertEquals($output, $this->object->getDisplay()); } /** * Data provider for testDeletedRows * * @return mixed[] Test-data */ public static function providerDeletedRows(): array { return [ [ 1, '' . "\n", ], [ 2, '' . "\n", ], [ 500000, '' . "\n", ], ]; } /** * Test for getMessageForDeletedRows() method * * @param int $rows Number of rows * @param string $output Expected string */ #[DataProvider('providerDeletedRows')] public function testDeletedRows(int $rows, string $output): void { $this->object = new Message(); $msg = $this->object->getMessageForDeletedRows($rows); $this->object->addMessage($msg); $this->assertEquals($output, $this->object->getDisplay()); } }