aboutsummaryrefslogtreecommitdiffstats
path: root/tests/expand_acl_test.php
blob: 154bc921db0b8e4c45bc18aa755fe09c083935b2 (plain) (blame)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/**
 * this test tests the expand_acl function
 *
 * @package test.util
 */

/** required, it is the file under test */
require_once('include/text.php');

/**
 * TestCase for the expand_acl function
 *
 * @author Alexander Kampmann
 * @package test.util
 */
class ExpandAclTest extends PHPUnit_Framework_TestCase {
	
	/**
	 * test expand_acl, perfect input
	 */
	public function testExpandAclNormal() {
		$text='<1><2><3>';
		$this->assertEquals(array(1, 2, 3), expand_acl($text));
	}
	
	/**
	 * test with a big number
	 */
	public function testExpandAclBigNumber() {
		$text='<1><'.PHP_INT_MAX.'><15>';
		$this->assertEquals(array(1, PHP_INT_MAX, 15), expand_acl($text));
	}
	
	/**
	 * test with a string in it. 
	 * 
	 * TODO: is this valid input? Otherwise: should there be an exception?
	 */
	public function testExpandAclString() {
		$text="<1><279012><tt>"; 
		$this->assertEquals(array(1, 279012), expand_acl($text));
	}
	
	/**
	 * test with a ' ' in it. 
	 * 
	 * TODO: is this valid input? Otherwise: should there be an exception?
	 */
	public function testExpandAclSpace() {
		$text="<1><279 012><32>"; 
		$this->assertEquals(array(1, "279", "32"), expand_acl($text));
	}
	
	/**
	 * test empty input
	 */
	public function testExpandAclEmpty() {
		$text=""; 
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, no < at all
	 * 
	 * TODO: should there be an exception?
	 */
	public function testExpandAclNoBrackets() {
		$text="According to documentation, that's invalid. "; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, just open <
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclJustOneBracket1() {
		$text="<Another invalid string"; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, just close >
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclJustOneBracket2() {
		$text="Another invalid> string"; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, just close >
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclCloseOnly() {
		$text="Another> invalid> string>"; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, just open <
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclOpenOnly() {
		$text="<Another< invalid string<"; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, open and close do not match
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclNoMatching1() {
		$text="<Another<> invalid <string>"; //should be invalid
		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, open and close do not match
	 *
	 * TODO: should there be an exception?
	 */
	public function testExpandAclNoMatching2() {
		$text="<1>2><3>";
// The angles are delimiters which aren't important
// the important thing is the numeric content, this returns array(1,2,3) currently
// we may wish to eliminate 2 from the results, though it isn't harmful
// It would be a better test to figure out if there is any ACL input which can
// produce this $text and fix that instead.
//		$this->assertEquals(array(), expand_acl($text));
	}
	
	/**
	 * test invalid input, empty <>
	 *
	 * TODO: should there be an exception? Or array(1, 3)
	 * (This should be array(1,3) - mike)
	 */
	public function testExpandAclEmptyMatch() {
		$text="<1><><3>";
		$this->assertEquals(array(1,3), expand_acl($text));
	}
}