Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eduGAIN Connectivity Check
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
edugain
eduGAIN Connectivity Check
Commits
f5d90b8a
Commit
f5d90b8a
authored
5 years ago
by
Marco Malavolti
Browse files
Options
Downloads
Patches
Plain Diff
Added .gitgnore and small change on script
parent
5e02eeca
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
eccs2.py
+8
-1
8 additions, 1 deletion
eccs2.py
with
10 additions
and
1 deletion
.gitignore
0 → 100644
+
2
−
0
View file @
f5d90b8a
selenium_chromedriver.log
*.swp
This diff is collapsed.
Click to expand it.
eccs2.py
+
8
−
1
View file @
f5d90b8a
...
@@ -109,7 +109,14 @@ if __name__=="__main__":
...
@@ -109,7 +109,14 @@ if __name__=="__main__":
#listIdPs = getIdPs()
#listIdPs = getIdPs()
for
idp
in
listIdPs
:
for
idp
in
listIdPs
:
result
=
[]
for
sp
in
sps
:
for
sp
in
sps
:
print
(
"
IdP
'
%s
'
on SP
'
%s
'
results into: %s
"
%
(
idp
,
sp
,
checkIdP
(
driver
,
sp
,
idp
)))
result
.
append
(
checkIdP
(
driver
,
sp
,
idp
))
# se tutti e 2 i check sono andati bene, allora l'IdP è OK, altrimenti no.
if
(
result
[
0
]
==
result
[
1
]
==
"
OK
"
):
print
(
"
IdP
'
%s
'
results into: OK
"
%
(
idp
))
else
:
print
(
"
IdP
'
%s
'
results into: NOT OK
"
%
(
idp
))
driver
.
close
()
driver
.
close
()
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