Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inventory-provider
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
geant-swd
dashboardv3
inventory-provider
Commits
425a8a8c
Commit
425a8a8c
authored
6 years ago
by
Erik Reid
Browse files
Options
Downloads
Patches
Plain Diff
added interface descriptions to interface/hostname response
parent
cd54d301
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
inventory_provider/routes/data.py
+11
-9
11 additions, 9 deletions
inventory_provider/routes/data.py
test/test_data_routes.py
+9
-1
9 additions, 1 deletion
test/test_data_routes.py
with
20 additions
and
10 deletions
inventory_provider/routes/data.py
+
11
−
9
View file @
425a8a8c
...
@@ -59,22 +59,24 @@ def router_interfaces(hostname):
...
@@ -59,22 +59,24 @@ def router_interfaces(hostname):
r
=
redis
.
StrictRedis
(
r
=
redis
.
StrictRedis
(
host
=
redis_config
[
"
hostname
"
],
host
=
redis_config
[
"
hostname
"
],
port
=
redis_config
[
"
port
"
])
port
=
redis_config
[
"
port
"
])
ifc_data_string
=
r
.
hget
(
hostname
,
'
snmp-
interfaces
'
)
ifc_data_string
=
r
.
hget
(
hostname
,
'
interfaces
'
)
if
not
ifc_data_string
:
if
not
ifc_data_string
:
return
Response
(
return
Response
(
response
=
"
no available info for
'
%s
'"
%
hostname
,
response
=
"
no available info for
'
%s
'"
%
hostname
,
status
=
404
,
status
=
404
,
mimetype
=
"
text/html
"
)
mimetype
=
"
text/html
"
)
def
_interfaces
(
d
):
for
ii
in
d
[
'
interface-information
'
]:
for
ifc_list
in
ii
[
'
physical-interface
'
]
+
ii
[
'
logical-interface
'
]:
for
ifc
in
ifc_list
:
yield
{
'
name
'
:
ifc
[
'
name
'
][
0
][
'
data
'
],
'
description
'
:
ifc
[
'
description
'
][
0
][
'
data
'
]
}
def
_interfaces
(
s
):
ifc_data
=
json
.
loads
(
ifc_data_string
.
decode
(
'
utf-8
'
))
for
ifc
in
json
.
loads
(
s
):
interfaces
=
list
(
_interfaces
(
ifc_data
))
if
'
v4InterfaceName
'
in
ifc
:
yield
ifc
[
'
v4InterfaceName
'
]
if
'
v6InterfaceName
'
in
ifc
:
yield
ifc
[
'
v6InterfaceName
'
]
interfaces
=
list
(
_interfaces
(
ifc_data_string
.
decode
(
'
utf-8
'
)))
if
not
interfaces
:
if
not
interfaces
:
return
Response
(
return
Response
(
response
=
"
no interfaces found for
'
%s
'"
%
hostname
,
response
=
"
no interfaces found for
'
%s
'"
%
hostname
,
...
...
This diff is collapsed.
Click to expand it.
test/test_data_routes.py
+
9
−
1
View file @
425a8a8c
...
@@ -241,7 +241,15 @@ def test_router_interfaces(client_with_mocked_data):
...
@@ -241,7 +241,15 @@ def test_router_interfaces(client_with_mocked_data):
interfaces_list_schema
=
{
interfaces_list_schema
=
{
"
$schema
"
:
"
http://json-schema.org/draft-07/schema#
"
,
"
$schema
"
:
"
http://json-schema.org/draft-07/schema#
"
,
"
type
"
:
"
array
"
,
"
type
"
:
"
array
"
,
"
items
"
:
{
"
type
"
:
"
string
"
}
"
items
"
:
{
"
type
"
:
"
object
"
,
"
properties
"
:
{
"
name
"
:
{
"
type
"
:
"
string
"
},
"
description
"
:
{
"
type
"
:
"
string
"
}
},
"
required
"
:
[
"
name
"
,
"
description
"
],
"
additionalProperties
"
:
False
}
}
}
for
router
in
_routers
(
client_with_mocked_data
):
for
router
in
_routers
(
client_with_mocked_data
):
...
...
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