aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/fetch/db_fetch/test_data/db_fetch_vedges_vpp.py
blob: 24265ae4b4166ec0a30e120b7d1f2a8b572c5355 (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
89
###############################################################################
# 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                                  #
###############################################################################
VEDGE_FOLDER_ID = "ubuntu0-vedges"

HOST = {
    "host_type": [
        "Controller",
        "Compute",
        "Network"
    ],
    "id": "ubuntu0",
}

HOST_WITHOUT_REQUIRED_HOST_TYPE = {
    "host_type": [

    ]
}

VERSION = [
    "vpp v16.09-rc0~157-g203c632 built by localadmin on ubuntu0 at Sun Jun 26 16:35:15 PDT 2016\n"
]

INTERFACES = [
    "              Name               Idx       State          Counter          Count     ",
    "TenGigabitEthernetc/0/0           5         up       rx packets                502022",
    "                                                     rx bytes               663436206",
    "                                                     tx packets                 81404",
    "                                                     tx bytes                 6366378",
    "                                                     drops                       1414",
    "                                                     punts                          1",
    "                                                     rx-miss                    64525",
    "VirtualEthernet0/0/0              7         up       tx packets                 31496",
    "                                                     tx bytes                 2743185",
    "local0                            0        down      ",
    "pg/stream-0                       1        down      ",
]

PORTS = {
    "TenGigabitEthernetc/0/0": {
        "id": "5",
        "name": "TenGigabitEthernetc/0/0",
        "state": "up"
    },
    "VirtualEthernet0/0/0": {
        "id": "7",
        "name": "VirtualEthernet0/0/0",
        "state": "up"
    },
    "local0": {
        "id": "0",
        "name": "local0",
        "state": "down"
    },
    "pg/stream-0": {
        "id": "1",
        "name": "pg/stream-0",
        "state": "down"
    }
}


VEDGE_RESULTS = [
    {
        "host": "ubuntu0",
        "id": "ubuntu0-VPP",
        "name": "VPP-ubuntu0",
        "agent_type": "VPP",
        "binary": "vpp v16.09-rc0~157-g203c632",
        "ports": PORTS
    }
]

VEDGE_RESULTS_WITHOUT_BINARY = [
    {
        "host": "ubuntu0",
        "id": "ubuntu0-VPP",
        "name": "VPP-ubuntu0",
        "agent_type": "VPP",
        "ports": PORTS
    }
]