Improve coverage of multicloud-azure plugin
[multicloud/azure.git] / azure / azure / api_v2 / service.py
1 #    Copyright (c) 2018 Amdocs
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
4 #    not use this file except in compliance with the License. You may obtain
5 #    a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 #    License for the specific language governing permissions and limitations
13 #    under the License.
14
15 from oslo_concurrency import processutils
16 from oslo_config import cfg
17 from oslo_service import service
18 from oslo_service import wsgi
19
20 from azure.api_v2 import app
21 from azure.pub.config import config as mc_cfg
22
23
24 CONF = cfg.CONF
25
26
27 class WSGIService(service.ServiceBase):
28     """Provides ability to launch API from wsgi app."""
29
30     def __init__(self):
31         self.app = app.setup_app()
32
33         self.workers = processutils.get_worker_count()
34
35         self.server = wsgi.Server(
36             CONF,
37             "azure",
38             self.app,
39             host="0.0.0.0",
40             port=mc_cfg.API_SERVER_PORT,
41             use_ssl=False
42         )
43
44     def start(self):
45         self.server.start()
46
47     def stop(self):
48         self.server.stop()
49
50     def wait(self):
51         self.server.wait()
52
53     def reset(self):
54         self.server.reset()