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
|
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2013 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class SafeString_Test extends Gallery_Unit_Test_Case {
public function toString_escapes_for_html_test() {
$safe_string = new SafeString("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>",
$safe_string);
}
public function toString_for_safe_string_test() {
$safe_string = SafeString::of_safe_html("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>",
$safe_string);
}
public function for_html_test() {
$safe_string = new SafeString("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>",
$safe_string->for_html());
}
public function safestring_of_safestring_test() {
$safe_string = new SafeString("hello <p>world</p>");
$safe_string_2 = new SafeString($safe_string);
$this->assert_true($safe_string_2 instanceof SafeString);
$raw_string = $safe_string_2->unescaped();
$this->assert_false(is_object($raw_string));
$this->assert_equal("hello <p>world</p>", $raw_string);
$this->assert_equal("hello <p>world</p>", $safe_string_2);
}
public function for_js_test() {
$safe_string = new SafeString('"<em>Foo</em>\'s bar"');
$js_string = $safe_string->for_js();
$this->assert_equal('"\\"<em>Foo<\\/em>\'s bar\\""',
$js_string);
}
public function for_html_attr_test() {
$safe_string = new SafeString('"<em>Foo</em>\'s bar"');
$attr_string = $safe_string->for_html_attr();
$this->assert_equal('"<em>Foo</em>'s bar"',
$attr_string);
}
public function for_html_attr_with_safe_html_test() {
$safe_string = SafeString::of_safe_html('"<em>Foo</em>\'s bar"');
$attr_string = $safe_string->for_html_attr();
$this->assert_equal('"<em>Foo</em>'s bar"',
$attr_string);
}
public function string_safestring_equality_test() {
$safe_string = new SafeString("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>",
$safe_string->unescaped());
$escaped_string = "hello <p>world</p>";
$this->assert_equal($escaped_string, $safe_string);
$this->assert_true($escaped_string == $safe_string);
$this->assert_false($escaped_string === $safe_string);
$this->assert_false("meow" == $safe_string);
}
public function of_test() {
$safe_string = SafeString::of("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>", $safe_string->unescaped());
}
public function of_safe_html_test() {
$safe_string = SafeString::of_safe_html("hello <p>world</p>");
$this->assert_equal("hello <p>world</p>", $safe_string->for_html());
}
public function purify_test() {
$safe_string = SafeString::purify("hello <p >world</p>");
$expected = method_exists("purifier", "purify")
? "hello <p>world</p>"
: "hello <p >world</p>";
$this->assert_equal($expected, $safe_string);
}
public function purify_twice_test() {
$safe_string = SafeString::purify("hello <p >world</p>");
$safe_string_2 = SafeString::purify($safe_string);
$expected = method_exists("purifier", "purify")
? "hello <p>world</p>"
: "hello <p >world</p>";
$this->assert_equal($expected, $safe_string_2);
}
public function purify_safe_html_test() {
$safe_string = SafeString::of_safe_html("hello <p >world</p>");
$actual = SafeString::purify($safe_string);
$this->assert_equal("hello <p >world</p>", $actual);
}
public function of_fluid_api_test() {
$escaped_string = SafeString::of("Foo's bar")->for_js();
$this->assert_equal('"Foo\'s bar"', $escaped_string);
}
public function safestring_of_safestring_preserves_safe_status_test() {
$safe_string = SafeString::of_safe_html("hello's <p>world</p>");
$safe_string_2 = new SafeString($safe_string);
$this->assert_equal("hello's <p>world</p>", $safe_string_2);
$this->assert_equal('"hello\'s <p>world<\\/p>"', $safe_string_2->for_js());
}
public function safestring_of_safestring_preserves_html_safe_status_test() {
$safe_string = SafeString::of_safe_html("hello's <p>world</p>");
$safe_string_2 = new SafeString($safe_string);
$this->assert_equal("hello's <p>world</p>", $safe_string_2);
$this->assert_equal('"hello\'s <p>world<\\/p>"', $safe_string_2->for_js());
}
public function safestring_of_safestring_safe_status_override_test() {
$safe_string = new SafeString("hello <p>world</p>");
$safe_string_2 = SafeString::of_safe_html($safe_string);
$this->assert_equal("hello <p>world</p>", $safe_string_2);
}
}
|