Common = new CommonHelper($View); } /** * CommonHelperTest::testFlashMessage() * * @return void */ public function testFlashMessage() { $result = $this->Common->flashMessage(h('Foo & bar'), 'success'); $expected = '
'; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testMetaRobots() * * @return void */ public function testMetaRobots() { $result = $this->Common->metaRobots(); $this->assertContains(''; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testMetaDescription() * * @return void */ public function testMetaDescription() { $result = $this->Common->metaDescription('foo', 'deu'); $expected = ''; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testMetaKeywords() * * @return void */ public function testMetaKeywords() { $result = $this->Common->metaKeywords('foo bar', 'deu'); $expected = ''; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testMetaRss() * * @return void */ public function testMetaRss() { $result = $this->Common->metaRss('/some/url', 'some title'); $expected = ''; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testMetaEquiv() * * @return void */ public function testMetaEquiv() { $result = $this->Common->metaEquiv('type', 'value'); $expected = ''; $this->assertEquals($expected, $result); } /** * CommonHelperTest::testFlash() * * @return void */ public function testFlash() { $this->Common->addFlashMessage(h('Foo & bar'), 'success'); $result = $this->Common->flash(); $expected = ''; $this->assertEquals($expected, $result); $this->Common->addFlashMessage('I am an error', 'error'); $this->Common->addFlashMessage('I am a warning', 'warning'); $this->Common->addFlashMessage('I am some info', 'info'); $this->Common->addFlashMessage('I am also some info'); $this->Common->addFlashMessage('I am sth custom', 'custom'); $result = $this->Common->flash(); $this->assertTextContains('message error', $result); $this->assertTextContains('message warning', $result); $this->assertTextContains('message info', $result); $this->assertTextContains('message custom', $result); $result = substr_count($result, 'message info'); $this->assertSame(2, $result); } /** * Test that you can define your own order or just output a subpart of * the types. * * @return void */ public function testFlashWithTypes() { $this->Common->addFlashMessage('I am an error', 'error'); $this->Common->addFlashMessage('I am a warning', 'warning'); $this->Common->addFlashMessage('I am some info', 'info'); $this->Common->addFlashMessage('I am also some info'); $this->Common->addFlashMessage('I am sth custom', 'custom'); $result = $this->Common->flash(array('warning', 'error')); $expected = ''; $this->assertEquals($expected, $result); $result = $this->Common->flash(array('info')); $expected = ''; $this->assertEquals($expected, $result); $result = $this->Common->flash(); $expected = ''; $this->assertEquals($expected, $result); } /** * @return void */ public function testMetaCanonical() { $is = $this->Common->metaCanonical('/some/url/param1'); $this->assertEquals('', trim($is)); $is = $this->Common->metaCanonical('/some/url/param1', true); $this->assertEquals('', trim($is)); } /** * @return void */ public function testMetaAlternate() { $is = $this->Common->metaAlternate('/some/url/param1', 'de-de', true); $this->assertEquals('', trim($is)); $is = $this->Common->metaAlternate(array('controller' => 'some', 'action' => 'url'), 'de', true); $this->assertEquals('', trim($is)); $is = $this->Common->metaAlternate(array('controller' => 'some', 'action' => 'url'), array('de', 'de-ch'), true); $this->assertEquals('' . PHP_EOL . '', trim($is)); $is = $this->Common->metaAlternate(array('controller' => 'some', 'action' => 'url'), array('de' => array('ch', 'at'), 'en' => array('gb', 'us')), true); $this->assertEquals('' . PHP_EOL . '' . PHP_EOL . '' . PHP_EOL . '', trim($is)); } /** * CommonHelperTest::testAsp() * * @return void */ public function testAsp() { $res = $this->Common->asp('House', 2, true); $expected = __d('tools', 'Houses'); $this->assertEquals($expected, $res); $res = $this->Common->asp('House', 1, true); $expected = __d('tools', 'House'); $this->assertEquals($expected, $res); } /** * CommonHelperTest::testSp() * * @return void */ public function testSp() { $res = $this->Common->sp('House', 'Houses', 0, true); $expected = __d('tools', 'Houses'); $this->assertEquals($expected, $res); $res = $this->Common->sp('House', 'Houses', 2, true); $this->assertEquals($expected, $res); $res = $this->Common->sp('House', 'Houses', 1, true); $expected = __d('tools', 'House'); $this->assertEquals($expected, $res); $res = $this->Common->sp('House', 'Houses', 1); $expected = 'House'; $this->assertEquals($expected, $res); } /** * TearDown method * * @return void */ public function tearDown() { parent::tearDown(); unset($this->Common); } }