FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
HTMLUnitTester/src/PHPFUI/HTMLUnitTester/Extensions.php at master · phpfui/HTMLUnitTester · GitHub
phpfui
/
HTMLUnitTester
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
HTMLUnitTester
/
src
/
PHPFUI
/
HTMLUnitTester
/
Extensions.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
221 lines (183 loc) · 6.49 KB
Breadcrumbs
HTMLUnitTester
/
src
/
PHPFUI
/
HTMLUnitTester
/
Extensions.php
Copy path
File metadata and controls
221 lines (183 loc) · 6.49 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
/**
* This file is part of the PHPFUI/HTMLUnitTester package
*
* (c) Bruce Wells
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source
* code
*/
namespace
PHPFUI
\
HTMLUnitTester
;
class
Extensions
extends
\
PHPUnit
\
Framework
\TestCase
{
private
static
?
\
PHPFUI
\
HTMLUnitTester
\
Throttle
$
throttle
=
null
;
private
static
?
\
HtmlValidator
\
Validator
$
validator
=
null
;
public
static
function
setUpBeforeClass
() :
void
{
$
url
=
$
_ENV
[
self
::class .
'
_url
'
] ??
'
http://127.0.0.1:8888
'
;
$
throttleMicroSeconds
=
$
_ENV
[
self
::class .
'
_delay
'
] ??
0
;
if
(!
\filter_var
(
$
url
,
FILTER_VALIDATE_URL
))
{
throw
new
\
PHPUnit
\
Framework
\
Exception
(
$
url
.
'
is not a valid URL
'
);
}
self
::
$
throttle
=
new
\
PHPFUI
\
HTMLUnitTester
\
Throttle
(
$
throttleMicroSeconds
);
self
::
$
validator
=
new
\
HtmlValidator
\
Validator
(
$
url
);
}
/**
* Validate all files in a directory.
*
* @param string $type one of 'Valid' (html), 'NotWarning' (html), 'ValidCSS', or 'NotWarningCSS'
* @param array<string> $extensions
*/
public
function
assertDirectory
(
string
$
type
,
string
$
directory
,
string
$
message
=
''
,
bool
$
recurseSubdirectories
=
true
,
array
$
extensions
= [
'
.css
'
]) :
void
{
$
this
->
assertContains
(
$
type
, [
'
Valid
'
,
'
NotWarning
'
,
'
ValidCSS
'
,
'
NotWarningCSS
'
],
'
Invalid parameter for
'
.
__METHOD__
);
$
method
=
"
assert
{
$
type
}
File
"
;
if
(
$
recurseSubdirectories
)
{
$
iterator
=
new
\
RecursiveIteratorIterator
(
new
\
RecursiveDirectoryIterator
(
$
directory
, \RecursiveDirectoryIterator::
SKIP_DOTS
),
\RecursiveIteratorIterator::
SELF_FIRST
);
}
else
{
$
iterator
=
new
\
DirectoryIterator
(
$
directory
);
}
$
exts
=
\array_flip
(
$
extensions
);
foreach
(
$
iterator
as
$
item
)
{
if
(
'
file
'
==
$
item
->
getType
())
{
$
file
=
$
item
->
getPathname
();
$
ext
=
\strrchr
(
$
file
,
'
.
'
);
if
(
$
ext
&&
isset
(
$
exts
[
$
ext
]))
{
$
this
->{
$
method
}(
$
file
,
$
message
.
'
File:
'
.
$
file
);
}
}
}
}
public
function
assertNotWarningCss
(
string
$
css
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
css
);
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningCssFile
(
string
$
file
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
this
->
getFromFile
(
$
file
));
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningCssUrl
(
string
$
url
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
this
->
getFromUrl
(
$
url
));
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningFile
(
string
$
file
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
this
->
getFromFile
(
$
file
));
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningHtml
(
string
$
html
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
html
);
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningHtmlPage
(
string
$
html
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtmlPage
(
$
html
);
self
::
assertThat
(
$
response
,
new
WarningConstraint
(),
$
message
);
}
public
function
assertNotWarningUrl
(
string
$
url
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
this
->
getFromUrl
(
$
url
));
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidCss
(
string
$
css
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
css
);
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidCssFile
(
string
$
file
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
this
->
getFromFile
(
$
file
));
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidCssUrl
(
string
$
url
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateCss
(
$
this
->
getFromUrl
(
$
url
));
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidFile
(
string
$
file
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
this
->
getFromFile
(
$
file
));
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidHtml
(
string
$
html
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
html
);
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidHtmlPage
(
string
$
html
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtmlPage
(
$
html
);
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
public
function
assertValidUrl
(
string
$
url
,
string
$
message
=
''
) :
void
{
$
response
=
$
this
->
validateHtml
(
$
this
->
getFromUrl
(
$
url
));
self
::
assertThat
(
$
response
,
new
ErrorConstraint
(),
$
message
);
}
private
function
getFromFile
(
string
$
file
) :
string
{
if
(!
\file_exists
(
$
file
))
{
throw
new
\
PHPUnit
\
Framework
\
Exception
(
"
File
{
$
file
}
was not found.
\n"
);
}
if
(!
\is_readable
(
$
file
))
{
throw
new
\
PHPUnit
\
Framework
\
Exception
(
"
File
{
$
file
}
is not readable.
\n"
);
}
$
html
=
\file_get_contents
(
$
file
);
return
$
html
;
}
private
function
getFromUrl
(
string
$
url
) :
string
{
// Check that $url is a valid url
if
(
false
===
\filter_var
(
$
url
,
FILTER_VALIDATE_URL
))
{
throw
new
\
PHPUnit
\
Framework
\
Exception
(
"
Url
{
$
url
}
is not valid.
\n"
);
}
$
context
=
\stream_context_create
([
'
http
'
=> [
'
user_agent
'
=>
'
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0
'
]]);
$
html
=
\file_get_contents
(
$
url
,
false
,
$
context
);
// Check that something was returned
if
(!
\strlen
(
$
html
))
{
throw
new
\
PHPUnit
\
Framework
\
Exception
(
"{
$
url
}
is empty.
\n"
);
}
return
$
html
;
}
private
function
validateCss
(
string
$
css
) :
\
HtmlValidator
\
Response
{
if
(
false
===
\stripos
(
$
css
,
'
html>
'
))
{
$
css
=
'
<!DOCTYPE html><html><head><meta charset="utf-8" /><title>Title</title><style>
'
.
$
css
.
'
</style></head><body><hr></body></html>
'
;
}
return
$
this
->
validateHtmlPage
(
$
css
);
}
private
function
validateHtml
(
string
$
html
) :
\
HtmlValidator
\
Response
{
if
(
false
===
\stripos
(
$
html
,
'
html>
'
))
{
$
html
=
'
<!DOCTYPE html><html><head><meta charset="utf-8" /><title>Title</title></head><body>
'
.
$
html
.
'
</body></html>
'
;
}
return
$
this
->
validateHtmlPage
(
$
html
);
}
private
function
validateHtmlPage
(
string
$
html
) :
\
HtmlValidator
\
Response
{
self
::
$
throttle
->
delay
();
$
response
=
self
::
$
validator
->
validateDocument
(
$
html
);
return
$
response
;
}
}
Back
|
FazBrowse Home
|
New Git URL