Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
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
mediaserver
envsetup
Commits
23eff59b
Commit
23eff59b
authored
8 years ago
by
Stéphane Diemer
Browse files
Options
Downloads
Patches
Plain Diff
Test domain even if IP is not correct.
parent
a015f636
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/test_nginx_vhosts.py
+36
-26
36 additions, 26 deletions
tests/test_nginx_vhosts.py
with
36 additions
and
26 deletions
tests/test_nginx_vhosts.py
+
36
−
26
View file @
23eff59b
...
...
@@ -52,47 +52,57 @@ for name in os.listdir(nginx_dir):
continue
# status vhost
found
=
True
url
=
'
%s://%s
'
%
(
'
https
'
if
https
else
'
http
'
,
domain
)
sys
.
stdout
.
write
(
'
Testing url
"
%s
"
:
'
%
url
)
sys
.
stdout
.
write
(
'
Testing url
"
%s
"
:
\n
'
%
url
)
# test domain IP
ip_error
=
None
try
:
ip
=
socket
.
gethostbyname
(
domain
)
except
Exception
as
e
:
sys
.
stdout
.
write
(
'
\033
[91mKO (domain is not resolved: %s)
\033
[0m
'
%
e
)
errors
+=
1
ip_error
=
'
domain is not resolved: %s
'
%
e
else
:
if
ip
!=
'
127.0.0.1
'
:
sys
.
stdout
.
write
(
'
\033
[91mKO (domain is not resolved with 127.0.0.1)
\033
[0m
'
)
errors
+=
1
else
:
ip_error
=
'
domain is resolved with %s instead of 127.0.0.1
'
%
ip
sys
.
stdout
.
write
(
'
IP:
'
)
if
ip_error
:
sys
.
stdout
.
write
(
'
\033
[91mKO (%s)
\033
[0m
'
%
ip_error
)
else
:
sys
.
stdout
.
write
(
'
\033
[92mOK (127.0.0.1)
\033
[0m
'
)
# test url
sys
.
stdout
.
write
(
'
, status:
'
)
req_error
=
False
try
:
req
=
requests
.
get
(
url
,
verify
=
False
,
proxies
=
{
'
http
'
:
''
,
'
https
'
:
''
},
timeout
=
10
)
except
Exception
as
e
:
code
=
str
(
e
)
else
:
code
=
req
.
status_code
if
code
not
in
(
200
,
403
):
sys
.
stdout
.
write
(
'
\033
[91mKO (%s)
\033
[0m
'
%
code
)
req_error
=
True
else
:
sys
.
stdout
.
write
(
'
\033
[92mOK (%s)
\033
[0m
'
%
code
)
if
'
mediaserver
'
in
name
and
wowza_dir
:
# test /streaming url
sys
.
stdout
.
write
(
'
, streaming:
'
)
try
:
req
=
requests
.
get
(
url
,
verify
=
False
,
proxies
=
{
'
http
'
:
''
,
'
https
'
:
''
},
timeout
=
10
)
req
=
requests
.
get
(
url
+
'
/streaming/
'
,
verify
=
False
,
proxies
=
{
'
http
'
:
''
,
'
https
'
:
''
},
timeout
=
10
)
except
Exception
as
e
:
code
=
str
(
e
)
else
:
code
=
req
.
status_code
if
code
not
in
(
200
,
403
)
:
if
code
!=
200
:
sys
.
stdout
.
write
(
'
\033
[91mKO (%s)
\033
[0m
'
%
code
)
errors
+=
1
req_error
=
True
elif
'
Wowza Streaming Engine
'
not
in
req
.
text
:
sys
.
stdout
.
write
(
'
\033
[91mKO (%s, %s)
\033
[0m
'
%
(
code
,
req
.
text
.
replace
(
'
\n
'
,
'
'
)[:
200
]))
req_error
=
True
else
:
sys
.
stdout
.
write
(
'
\033
[92mOK (%s)
\033
[0m
'
%
code
)
if
'
mediaserver
'
in
name
and
wowza_dir
:
# test /streaming url
sys
.
stdout
.
write
(
'
, streaming:
'
)
try
:
req
=
requests
.
get
(
url
+
'
/streaming/
'
,
verify
=
False
,
proxies
=
{
'
http
'
:
''
,
'
https
'
:
''
},
timeout
=
10
)
except
Exception
as
e
:
code
=
str
(
e
)
else
:
code
=
req
.
status_code
if
code
!=
200
:
sys
.
stdout
.
write
(
'
\033
[91mKO (%s)
\033
[0m
'
%
code
)
errors
+=
1
elif
'
Wowza Streaming Engine
'
not
in
req
.
text
:
sys
.
stdout
.
write
(
'
\033
[91mKO (%s, %s)
\033
[0m
'
%
(
code
,
req
.
text
.
replace
(
'
\n
'
,
'
'
)[:
200
]))
errors
+=
1
else
:
sys
.
stdout
.
write
(
'
\033
[92mOK (%s)
\033
[0m
'
%
code
)
sys
.
stdout
.
write
(
'
.
\n
'
)
if
ip_error
or
req_error
:
errors
+=
1
if
errors
:
print
(
'
%s vhost(s) did not correctly responded.
'
%
errors
)
sys
.
exit
(
1
)
...
...
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