|
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 webmaster plugin. |
|
20
|
|
|
* |
|
21
|
|
|
* @group plugin_webmaster |
|
22
|
|
|
* @group plugins |
|
23
|
|
|
*/ |
|
24
|
|
|
class action_plugin_webmaster_test extends DokuWikiTest { |
|
25
|
|
|
|
|
26
|
|
|
protected $pluginsEnabled = array('webmaster'); |
|
27
|
|
|
|
|
28
|
|
|
public function setUp() { |
|
29
|
|
|
global $conf; |
|
30
|
|
|
|
|
31
|
|
|
parent::setUp(); |
|
32
|
|
|
|
|
33
|
|
|
$conf ['plugin']['webmaster']['webmaster_google'] = 'webmaster_google'; |
|
34
|
|
|
$conf ['plugin']['webmaster']['webmaster_bing'] = 'webmaster_bing'; |
|
35
|
|
|
$conf ['plugin']['webmaster']['webmaster_yandexkey'] = 'webmaster_yandexkey'; |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
public function testHeaders() { |
|
39
|
|
|
$request = new TestRequest(); |
|
40
|
|
|
$response = $request->get(array('id'=>'wiki:dokuwiki'), '/doku.php'); |
|
41
|
|
|
|
|
42
|
|
|
$this->assertTrue( |
|
43
|
|
|
strpos($response->getContent(), 'DokuWiki') !== false, |
|
44
|
|
|
'DokuWiki was not a word in the output' |
|
45
|
|
|
); |
|
46
|
|
|
|
|
47
|
|
|
// check webmaster meta headers |
|
48
|
|
|
$this->assertEquals('webmaster_google', |
|
49
|
|
|
$response->queryHTML('meta[name="google-site-verification"]')->attr('content')); |
|
50
|
|
|
$this->assertEquals('webmaster_bing', |
|
51
|
|
|
$response->queryHTML('meta[name="msvalidate.01"]')->attr('content')); |
|
52
|
|
|
$this->assertEquals('webmaster_yandexkey', |
|
53
|
|
|
$response->queryHTML('meta[name="yandex-verification"]')->attr('content')); |
|
54
|
|
|
} |
|
55
|
|
|
} |
|
56
|
|
|
|