Code Coverage

Cobertura Coverage Report > osmclient.v1 >

vca.py

Trend

Classes0%
 
Lines0%
 
Conditionals100%
 

File Coverage summary

NameClassesLinesConditionals
vca.py
0%
0/1
0%
0/27
100%
0/0

Coverage Breakdown by Class

NameLinesConditionals
vca.py
0%
0/27
N/A

Source

osmclient/v1/vca.py
1 # Copyright 2017 Sandvine
2 #
3 # All Rights Reserved.
4 #
5 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
6 #    not use this file except in compliance with the License. You may obtain
7 #    a copy of the License at
8 #
9 #         http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #    Unless required by applicable law or agreed to in writing, software
12 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 #    License for the specific language governing permissions and limitations
15 #    under the License.
16
17 0 """
18 OSM VCA API handling
19 """
20
21 0 from osmclient.common.exceptions import ClientException
22
23
24 0 class Vca(object):
25 0     def __init__(self, http=None, client=None):
26 0         self._http = http
27 0         self._client = client
28
29 0     def list(self):
30 0         resp = self._http.get_cmd(
31             "api/config/{}config-agent".format(self._client.so_rbac_project_path)
32         )
33 0         if resp and "rw-config-agent:config-agent" in resp:
34 0             return resp["rw-config-agent:config-agent"]["account"]
35 0         return list()
36
37 0     def delete(self, name):
38 0         if "success" not in self._http.delete_cmd(
39             "api/config/{}config-agent/account/{}".format(
40                 self._client.so_rbac_project_path, name
41             )
42         ):
43 0             raise ClientException("failed to delete config agent {}".format(name))
44
45 0     def create(self, name, account_type, server, user, secret):
46 0         postdata = {}
47 0         postdata["account"] = list()
48
49 0         account = {}
50 0         account["name"] = name
51 0         account["account-type"] = account_type
52 0         account["juju"] = {}
53 0         account["juju"]["user"] = user
54 0         account["juju"]["secret"] = secret
55 0         account["juju"]["ip-address"] = server
56 0         postdata["account"].append(account)
57
58 0         if "success" not in self._http.post_cmd(
59             "api/config/{}config-agent".format(self._client.so_rbac_project_path),
60             postdata,
61         ):
62 0             raise ClientException("failed to create config agent {}".format(name))