Passed
Branch master (b331d1)
by Mark
01:47
created

action_plugin_dokusioc_test   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 11
c 1
b 0
f 0
dl 0
loc 22
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A testHeaders() 0 12 1
1
<?php
2
/*
3
 * Copyright (c) 2016 Mark C. Prins <[email protected]>
4
 *
5
 * Permission to use, copy, modify, and distribute this software for any
6
 * purpose with or without fee is hereby granted, provided that the above
7
 * copyright notice and this permission notice appear in all copies.
8
 *
9
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
 */
17
18
/**
19
 * Action tests for the dokusioc plugin.
20
 *
21
 * @group plugin_dokusioc
22
 * @group plugins
23
 */
24
class action_plugin_dokusioc_test extends DokuWikiTest {
0 ignored issues
show
Bug introduced by
The type DokuWikiTest was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
26
    protected $pluginsEnabled = array('dokusioc');
27
28
    public function setUp() {
29
        global $conf;
30
31
        parent::setUp();
32
    }
33
34
    public function testHeaders() {
35
        $request = new TestRequest();
0 ignored issues
show
Bug introduced by
The type TestRequest was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
36
        $response = $request->get(array('id'=>'wiki:dokuwiki'), '/doku.php');
37
38
        $this->assertTrue(
39
            strpos($response->getContent(), 'DokuWiki') !== false,
40
            'DokuWiki was not a word in the output'
41
        );
42
43
        // check meta header
44
        $this->assertEquals("Article 'DokuWiki' (SIOC document as RDF/XML)",
45
                        $response->queryHTML('link[type="application/rdf+xml"]')->attr('title'));
46
    }
47
}
48