Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
3fc9fbee
Commit
3fc9fbee
authored
12 years ago
by
Lukas Reschke
Browse files
Options
Downloads
Patches
Plain Diff
Expectation should be first parameter
parent
665100b4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/lib/util.php
+6
-6
6 additions, 6 deletions
tests/lib/util.php
with
6 additions
and
6 deletions
tests/lib/util.php
+
6
−
6
View file @
3fc9fbee
...
@@ -16,30 +16,30 @@ class Test_Util extends UnitTestCase {
...
@@ -16,30 +16,30 @@ class Test_Util extends UnitTestCase {
function
testFormatDate
()
{
function
testFormatDate
()
{
$result
=
OC_Util
::
formatDate
(
1350129205
);
$result
=
OC_Util
::
formatDate
(
1350129205
);
$expected
=
'October 13, 2012, 11:53'
;
$expected
=
'October 13, 2012, 11:53'
;
$this
->
assertEquals
(
$
result
,
$
expected
);
$this
->
assertEquals
(
$expected
$result
);
$result
=
OC_Util
::
formatDate
(
1102831200
,
true
);
$result
=
OC_Util
::
formatDate
(
1102831200
,
true
);
$expected
=
'December 12, 2004'
;
$expected
=
'December 12, 2004'
;
$this
->
assertEquals
(
$
result
,
$expected
);
$this
->
assertEquals
(
$
expected
,
$result
);
}
}
function
testCallRegister
()
{
function
testCallRegister
()
{
$result
=
strlen
(
OC_Util
::
callRegister
());
$result
=
strlen
(
OC_Util
::
callRegister
());
$this
->
assertEquals
(
$result
,
20
);
$this
->
assertEquals
(
20
,
$result
);
}
}
function
testSanitizeHTML
()
{
function
testSanitizeHTML
()
{
$badString
=
"<script>alert('Hacked!');</script>"
;
$badString
=
"<script>alert('Hacked!');</script>"
;
$result
=
OC_Util
::
sanitizeHTML
(
$badString
);
$result
=
OC_Util
::
sanitizeHTML
(
$badString
);
$this
->
assertEquals
(
$result
,
"<script>alert('Hacked!');</script>"
);
$this
->
assertEquals
(
"<script>alert('Hacked!');</script>"
,
$result
);
$goodString
=
"This is an harmless string."
;
$goodString
=
"This is an harmless string."
;
$result
=
OC_Util
::
sanitizeHTML
(
$goodString
);
$result
=
OC_Util
::
sanitizeHTML
(
$goodString
);
$this
->
assertEquals
(
$result
,
"This is an harmless string."
);
$this
->
assertEquals
(
"This is an harmless string."
,
$result
);
}
}
function
testGenerate_random_bytes
()
{
function
testGenerate_random_bytes
()
{
$result
=
strlen
(
OC_Util
::
generate_random_bytes
(
59
));
$result
=
strlen
(
OC_Util
::
generate_random_bytes
(
59
));
$this
->
assertEquals
(
$result
,
59
);
$this
->
assertEquals
(
59
,
$result
);
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment