Code Coverage

Cobertura Coverage Report > osmclient.sol005 >

repo.py

Trend

Classes100%
 
Lines19%
   
Conditionals100%
 

File Coverage summary

NameClassesLinesConditionals
repo.py
100%
1/1
19%
13/69
100%
0/0

Coverage Breakdown by Class

NameLinesConditionals
repo.py
19%
13/69
N/A

Source

osmclient/sol005/repo.py
1 #
2 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
3 #    not use this file except in compliance with the License. You may obtain
4 #    a copy of the License at
5 #
6 #         http://www.apache.org/licenses/LICENSE-2.0
7 #
8 #    Unless required by applicable law or agreed to in writing, software
9 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 #    License for the specific language governing permissions and limitations
12 #    under the License.
13 #
14
15 1 """
16 OSM Repo API handling
17 """
18
19 1 from osmclient.common import utils
20 1 from osmclient.common.exceptions import ClientException
21 1 from osmclient.common.exceptions import NotFound
22 1 import json
23
24
25 1 class Repo(object):
26 1     def __init__(self, http=None, client=None):
27 0         self._http = http
28 0         self._client = client
29 0         self._apiName = "/admin"
30 0         self._apiVersion = "/v1"
31 0         self._apiResource = "/k8srepos"
32 0         self._apiBase = "{}{}{}".format(
33             self._apiName, self._apiVersion, self._apiResource
34         )
35
36 1     def create(self, name, repo):
37 0         self._client.get_token()
38 0         http_code, resp = self._http.post_cmd(
39             endpoint=self._apiBase, postfields_dict=repo
40         )
41         # print 'HTTP CODE: {}'.format(http_code)
42         # print 'RESP: {}'.format(resp)
43         # if http_code in (200, 201, 202, 204):
44 0         if resp:
45 0             resp = json.loads(resp)
46 0         if not resp or "id" not in resp:
47 0             raise ClientException("unexpected response from server - {}".format(resp))
48 0         print(resp["id"])
49         # else:
50         #    msg = ""
51         #    if resp:
52         #        try:
53         #            msg = json.loads(resp)
54         #        except ValueError:
55         #            msg = resp
56         #    raise ClientException("failed to add repo {} - {}".format(name, msg))
57
58 1     def update(self, name, repo):
59 0         self._client.get_token()
60 0         repo_dict = self.get(name)
61 0         http_code, resp = self._http.put_cmd(
62             endpoint="{}/{}".format(self._apiBase, repo_dict["_id"]),
63             postfields_dict=repo,
64         )
65         # print 'HTTP CODE: {}'.format(http_code)
66         # print 'RESP: {}'.format(resp)
67         # if http_code in (200, 201, 202, 204):
68         #    pass
69         # else:
70         #    msg = ""
71         #    if resp:
72         #        try:
73         #            msg = json.loads(resp)
74         #        except ValueError:
75         #            msg = resp
76         #    raise ClientException("failed to update repo {} - {}".format(name, msg))
77
78 1     def get_id(self, name):
79         """Returns a repo id from a repo name"""
80 0         self._client.get_token()
81 0         for repo in self.list():
82 0             if name == repo["name"]:
83 0                 return repo["_id"]
84 0         raise NotFound("Repo {} not found".format(name))
85
86 1     def delete(self, name, force=False):
87 0         self._client.get_token()
88 0         repo_id = name
89 0         if not utils.validate_uuid4(name):
90 0             repo_id = self.get_id(name)
91 0         querystring = ""
92 0         if force:
93 0             querystring = "?FORCE=True"
94 0         http_code, resp = self._http.delete_cmd(
95             "{}/{}{}".format(self._apiBase, repo_id, querystring)
96         )
97         # print 'HTTP CODE: {}'.format(http_code)
98         # print 'RESP: {}'.format(resp)
99 0         if http_code == 202:
100 0             print("Deletion in progress")
101 0         elif http_code == 204:
102 0             print("Deleted")
103         else:
104 0             msg = resp or ""
105             # if resp:
106             #     try:
107             #         msg = json.loads(resp)
108             #     except ValueError:
109             #         msg = resp
110 0             raise ClientException("failed to delete repo {} - {}".format(name, msg))
111
112 1     def list(self, filter=None):
113         """Returns a list of repos"""
114 0         self._client.get_token()
115 0         filter_string = ""
116 0         if filter:
117 0             filter_string = "?{}".format(filter)
118 0         _, resp = self._http.get2_cmd("{}{}".format(self._apiBase, filter_string))
119 0         if resp:
120 0             return json.loads(resp)
121 0         return list()
122
123 1     def get(self, name):
124         """Returns a repo based on name or id"""
125 0         self._client.get_token()
126 0         repo_id = name
127 0         if not utils.validate_uuid4(name):
128 0             repo_id = self.get_id(name)
129 0         try:
130 0             _, resp = self._http.get2_cmd("{}/{}".format(self._apiBase, repo_id))
131 0             if resp:
132 0                 resp = json.loads(resp)
133 0             if not resp or "_id" not in resp:
134 0                 raise ClientException("failed to get repo info: {}".format(resp))
135 0             return resp
136 0         except NotFound:
137 0             raise NotFound("Repo {} not found".format(name))