aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/fetch/api_fetch/test_data/api_fetch_projects.py
blob: 4b2c678ff4f0d5e50f5a9e307daf49efb14ab56e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems)   #
# and others                                                                  #
#                                                                             #
# All rights reserved. This program and the accompanying materials            #
# are made available under the terms of the Apache License, Version 2.0       #
# which accompanies this distribution, and is available at                    #
# http://www.apache.org/licenses/LICENSE-2.0                                  #
###############################################################################
PROJECTS_CORRECT_RESPONSE = {
    "projects": [
        {
            "name": "Calipso-project"
        },
        {
            "name": "admin",
        }
    ]
}

PROJECT_RESULT = [
    "Calipso-project",
    "admin"
]

PROJECTS_RESPONSE_WITHOUT_PROJECTS = ""

REGION_PROJECTS = [
    {
        "description": "",
        "enabled": True,
        "id": "75c0eb79ff4a42b0ae4973c8375ddf40",
        "name": "OSDNA-project"
    },
    {
        "description": "admin tenant",
        "enabled": True,
        "id": "8c1751e0ce714736a63fee3c776164da",
        "name": "admin"
    }
]

USERS_PROJECTS = [
    "OSDNA-project",
    "admin"
]

REGION_URL_NOVER = "http://10.56.20.239:35357"

REGION_RESPONSE = {
    "tenants": [
        {
            "name": "Calipso-project"
        },
        {
            "name": "admin"
        },
        {
            "name": "services"
        }
    ]
}

REGION_RESULT = [
    {
        "name": "Calipso-project"
    },
    {
        "name": "admin"
    }
]

REGION_RESULT_WITH_NON_USER_PROJECT = [
    {
        "name": "Calipso-project"
    },
    {
        "name": "admin"
    },
    {
        "name": "non-user project"
    }
]

REGION_ERROR_RESPONSE = []

REGION_NAME = "RegionOne"
PROJECT_ID = "admin"