MDL-49294 logging: Improve cleanup tests
[moodle.git] / lib / tests / markdown_test.php
blob248e56981a42cb5f07e7ef21d55341feab3ee642
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Test markdown text format.
20 * @package core
21 * @category phpunit
22 * @copyright 2012 Petr Skoda {@link http://skodak.org}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
29 /**
30 * This is not a complete markdown test, it just validates
31 * Moodle integration works.
33 * See http://daringfireball.net/projects/markdown/basics
34 * for more format information.
36 * @package core
37 * @category phpunit
38 * @copyright 2012 Petr Skoda {@link http://skodak.org}
39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 class core_markdown_testcase extends basic_testcase {
43 public function test_paragraphs() {
44 $text = "one\n\ntwo";
45 $result = "<p>one</p>\n\n<p>two</p>\n";
46 $this->assertSame($result, markdown_to_html($text));
49 public function test_headings() {
50 $text = "Header 1\n====================\n\n## Header 2";
51 $result = "<h1>Header 1</h1>\n\n<h2>Header 2</h2>\n";
52 $this->assertSame($result, markdown_to_html($text));
55 public function test_lists() {
56 $text = "* one\n* two\n* three\n";
57 $result = "<ul>\n<li>one</li>\n<li>two</li>\n<li>three</li>\n</ul>\n";
58 $this->assertSame($result, markdown_to_html($text));
61 public function test_links() {
62 $text = "some [example link](http://example.com/)";
63 $result = "<p>some <a href=\"http://example.com/\">example link</a></p>\n";
64 $this->assertSame($result, markdown_to_html($text));