aboutsummaryrefslogtreecommitdiffstats
path: root/moon_utilities/tests/unit_python/mock_slaves.py
blob: f3ac04d8ca394e6f8f649ea57c69bea9d68e8688 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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.



def register_slaves(m):
    m.register_uri(
        'DELETE', 'http://127.0.0.1:10000/update/assignment/098764321/subject/098764321/098764321/098764321',
        json={}
    )
    m.register_uri(
        'DELETE', 'http://127.0.0.1:10000/update/data/098764321/subject',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/perimeter/098764321/098764321/subject',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/pdp/098764321',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/policy/098764321',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/rules/1234567890',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/model/1234567890',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/meta_data/1234567890',
        json={}
    )
    m.register_uri(
        'PUT', 'http://127.0.0.1:10000/update/meta_rule/1234567890',
        json={}
    )