Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
etf
cmssam
Commits
08f81c7c
Commit
08f81c7c
authored
Jul 01, 2021
by
Edita Kizinevic
Browse files
Merge branch 'master' into 'master'
Remove test_frontier.py See merge request
!32
parents
caff886c
ed2864cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
SiteTests/FroNtier/tests/CMSSW_frontier.sh
View file @
08f81c7c
...
...
@@ -82,21 +82,6 @@ printf "scramv1 runtime -sh ... completed\n"
# Return to working directory
#
cd
$current
ever_warning
=
0
# Execute squid test script
echo
echo
"Executing the Squid test"
$SAME_SENSOR_HOME
/tests/test_frontier.py 2>&1
resquid
=
$?
if
[
$resquid
-eq
$SAME_ERROR
]
then
ever_warning
=
2
fi
if
[
$resquid
-eq
$SAME_WARNING
]
then
ever_warning
=
1
fi
#
# Print out version
#
...
...
@@ -190,19 +175,6 @@ then
exit
$SAME_WARNING
fi
#
# Check ping Warning
#
if
[
$ever_warning
-eq
1
]
then
printf
"CMSSW_frontier.sh: Warning from Ping, at least one proxy ping error
\n
"
exit
$SAME_OK
fi
if
[
$ever_warning
-eq
2
]
then
printf
"CMSSW_frontier.sh: Warning from Ping, all the proxies ping error
\n
"
exit
$SAME_OK
fi
#
# Exit
#
printf
"ELAPSED TIME:
$[
$stop
-
$start
] seconds
\n
"
...
...
SiteTests/FroNtier/tests/test_frontier.py
deleted
100755 → 0
View file @
caff886c
#!/usr/bin/env python
"""
Tests the local FroNtier
"""
#
# Assumes:
#
# 1) environmental variables SAME_OK SAME_WARNING and SAME_ERROR are defined
# 2) environmental variable $CMS_PATH is defined
# 3) file $CMS_PATH/SITECONF/local/JobConfig/site-local-config.xml
# contains the location of the local FroNtier squid server
#
__revision__
=
"$Id: test_frontier.py,v 1.6 2012/10/24 13:32:19 asciaba Exp $"
import
os
import
sys
import
urllib2
from
xml.dom.minidom
import
parseString
from
xml.dom.minidom
import
parse
import
base64
import
zlib
import
curses.ascii
import
time
import
string
#
# Print out node name
#
print
"node: "
+
os
.
uname
()[
1
]
#
# Check that environmental variable SAME_OK is set
#
if
not
os
.
environ
.
has_key
(
"SAME_OK"
):
print
"test_frontier.py: Error. SAME_OK not defined"
sys
.
exit
(
1
)
same_ok
=
int
(
os
.
environ
[
"SAME_OK"
])
#
# Check that environmental variable SAME_ERROR is set
#
if
not
os
.
environ
.
has_key
(
"SAME_ERROR"
):
print
"test_frontier.py: Error. SAME_ERROR not defined"
sys
.
exit
(
1
)
same_error
=
int
(
os
.
environ
[
"SAME_ERROR"
])
#
# Check that envrionmental variable SAME_WARNING is set
#
if
not
os
.
environ
.
has_key
(
"SAME_WARNING"
):
print
"test_frontier.py: Error. SAME_WARNING not defined"
sys
.
exit
(
1
)
same_warning
=
int
(
os
.
environ
[
"SAME_WARNING"
])
#
# Check that environmental variable CMS_PATH is set
#
if
not
os
.
environ
.
has_key
(
"CMS_PATH"
):
print
"test_frontier.py: Error. CMS_PATH not defined"
sys
.
exit
(
same_error
)
#
# Check that file $CMS_PATH/SITECONF/local/JobConfig/site-local-config.xml
# exists
#
slcfil
=
os
.
environ
[
"CMS_PATH"
]
+
\
"/SITECONF/local/JobConfig/site-local-config.xml"
if
not
os
.
path
.
exists
(
slcfil
):
print
"test_frontier.py: Error. file "
+
slcfil
+
" does not exist"
sys
.
exit
(
same_error
)
#
# Print out site-local-config.xml
#
fileobj
=
open
(
slcfil
,
'r'
)
slcprint
=
fileobj
.
read
()
slcprint
=
slcprint
.
replace
(
'<'
,
'<'
)
fileobj
.
close
()
#
# Read and parse site-local-config.xml into a dom
# See http://docs.python.org/lib/module-xml.dom.minidom.html
#
slcdom
=
parse
(
slcfil
)
#
# Work out site name from site-local-config.xml
#
silist
=
slcdom
.
getElementsByTagName
(
"site"
)
if
len
(
silist
)
==
0
:
site
=
"UNKNOWN"
else
:
stag
=
silist
[
0
]
site
=
stag
.
getAttribute
(
"name"
)
print
"site: "
+
site
#
# Check for at least one proxy or proxyconfig tag
#
prlist
=
[
x
.
getAttribute
(
'url'
)
for
x
in
slcdom
.
getElementsByTagName
(
"proxy"
)]
if
len
(
prlist
)
==
0
:
prcfglist
=
[
x
.
getAttribute
(
'url'
)
for
x
in
slcdom
.
getElementsByTagName
(
"proxyconfig"
)]
if
len
(
prcfglist
)
==
0
:
print
"test_frontier.py: Error. no proxy or proxyconfig tag in file "
+
slcfil
sys
.
exit
(
same_error
)
print
print
"test_frontier.py: only proxyconfig urls defined, skipping squid pings for now"
print
#
# get pure squid site name
#
def
getSNameFromURL
(
url
):
part
=
string
.
split
(
url
,
'//'
)[
1
]
sqname
=
string
.
split
(
part
,
':'
)[
0
]
return
sqname
sqlist
=
map
(
getSNameFromURL
,
prlist
)
#
# Check whether has load balance proxies from site-local-config.xml
#
load
=
slcdom
.
getElementsByTagName
(
"load"
)
if
len
(
load
)
==
0
:
loadtag
=
"None"
else
:
loadtag
=
load
[
0
].
getAttribute
(
"balance"
)
print
"loadtag: "
+
loadtag
#
# Test access to squid
#
test_result
=
"Failed"
ever_warning
=
"False"
ever_ok
=
"False"
exeception_list
=
[
"nat005.gla.scotgrid.ac.uk"
]
for
squid
in
sqlist
:
if
squid
not
in
exeception_list
:
sping
=
os
.
popen
(
"ping -c3 "
+
squid
,
"r"
)
while
1
:
line
=
sping
.
readline
()
if
not
line
:
break
print
line
code
=
sping
.
close
()
if
code
!=
None
:
print
"test_frontier.py: Failed ping from %s to %s failed with error %s"
%
(
site
,
squid
,
code
)
ever_warning
=
"True"
if
ever_ok
==
"True"
:
test_result
=
"Warning"
else
:
if
ever_warning
==
"True"
:
test_result
=
"Warning"
else
:
test_result
=
"OK"
ever_ok
=
"True"
if
loadtag
==
"None"
:
break
if
test_result
==
"Failed"
and
ever_warning
==
"False"
:
test_result
=
"OK"
if
test_result
==
"OK"
:
print
"OK"
sys
.
exit
(
same_ok
)
elif
test_result
==
"Warning"
:
print
"Warning: there are proxy not responding on the chain of proxies"
sys
.
exit
(
same_warning
)
else
:
print
"test_frontier.py: Error: Failed ping with all the proxies on the chain"
sys
.
exit
(
same_error
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment