forked from yiisoft/yii2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdownTest.php
61 lines (51 loc) · 1.48 KB
/
MarkdownTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\helpers;
use yii\helpers\Markdown;
use yiiunit\TestCase;
/**
* Description of MarkdownTest.
*
* @author Misbahul D Munir <[email protected]>
* @group helpers
*/
class MarkdownTest extends TestCase
{
protected function setUp()
{
parent::setUp();
// destroy application, Helper must work without Yii::$app
$this->destroyApplication();
}
public function testOriginalFlavor()
{
$text = <<<'TEXT'
html
new line 1
new line 2
TEXT;
Markdown::$defaultFlavor = 'original';
$this->assertEquals(Markdown::process($text), Markdown::process($text, 'original'));
Markdown::$defaultFlavor = 'gfm-comment';
$this->assertNotEquals(Markdown::process($text), Markdown::process($text, 'original'));
$this->assertEquals(Markdown::process($text), Markdown::process($text, 'gfm-comment'));
}
/**
* @expectedException \yii\base\InvalidParamException
* @expectedExceptionMessage Markdown flavor 'undefined' is not defined.
*/
public function testProcessInvalidParamException()
{
Markdown::process('foo', 'undefined');
}
public function testProcessParagraph()
{
$actual = Markdown::processParagraph('foo');
$expected = 'foo';
$this->assertEquals($expected, $actual);
}
}