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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?php
/**
*
* @package testing
* @copyright (c) 2014 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
class phpbb_functions_parse_cfg_file extends phpbb_test_case
{
public function parse_cfg_file_data()
{
return array(
array(
'#
# phpBB Style Configuration File
#
# @package phpBB3
# @copyright (c) 2005 phpBB Group
# @license http://opensource.org/licenses/gpl-license.php GNU Public License
#
#
# At the left is the name, please do not change this
# At the right the value is entered
# For on/off options the valid values are on, off, 1, 0, true and false
#
# Values get trimmed, if you want to add a space in front or at the end of
# the value, then enclose the value with single or double quotes.
# Single and double quotes do not need to be escaped.
#
#
# General Information about this style
name = prosilver
copyright = © phpBB Group, 2007
version = 3.0.12',
array(
'name' => 'prosilver',
'copyright' => '© phpBB Group, 2007',
'version' => '3.0.12',
),
),
array(
'name = subsilver2
copyright = © 2005 phpBB Group
version = 3.0.12',
array(
'name' => 'subsilver2',
'copyright' => '© 2005 phpBB Group',
'version' => '3.0.12',
),
),
array(
'foo = on
foo1 = true
foo2 = 1
bar = off
bar1 = false
bar2 = 0
foobar =
foobar1 = "asdf"
foobar2 = \'qwer\'',
array(
'foo' => true,
'foo1' => true,
'foo2' => true,
'bar' => false,
'bar1' => false,
'bar2' => false,
'foobar' => '',
'foobar1' => 'asdf',
'foobar2' => 'qwer',
),
),
array(
'foo = & bar
bar = <a href="test">Test</a>',
array(
'foo' => '&amp; bar',
'bar' => '<a href="test">Test</a>',
),
),
);
}
/**
* @dataProvider parse_cfg_file_data
*/
public function test_parse_cfg_file($file_contents, $expected)
{
$lines = explode("\n", $file_contents);
$this->assertEquals($expected, parse_cfg_file(false, $lines));
}
}
|