blob: e898ad1a25bff44b28ab700387324a4c8f33c1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Software Name: MOON
# Version: 5.4
# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
# SPDX-License-Identifier: Apache-2.0
# This software is distributed under the 'Apache License 2.0',
# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
# or see the "LICENSE" file for more details.
import requests_mock
def register_nova(m):
m.register_uri(
'POST', 'http://keystone:5000/v3/auth/tokens',
headers={'X-Subject-Token': "b34e5a29-5494-4cc5-9356-daa244b8c254"}
)
m.register_uri(
'DELETE', 'http://keystone:5000/v3/auth/tokens',
headers={'X-Subject-Token': "b34e5a29-5494-4cc5-9356-daa244b8c254"}
)
m.register_uri(
'GET', 'http://keystone:5000/compute/v2.1/servers',
json={"servers": [{"name": "vm1"}]}
)
|