summaryrefslogtreecommitdiff
path: root/src/leap/eip/tests/data.py
blob: 284b398f557bc4e4f42c44f7696b67085d9afaa7 (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
from __future__ import unicode_literals
import os

# sample data used in tests

EIP_SAMPLE_JSON = {
    "provider": "testprovider.example.org",
    "transport": "openvpn",
    "openvpn_protocol": "tcp",
    "openvpn_port": 80,
    "openvpn_ca_certificate": os.path.expanduser(
        "~/.config/leap/providers/"
        "testprovider.example.org/"
        "keys/ca/testprovider-ca-cert.pem"),
    "openvpn_client_certificate": os.path.expanduser(
        "~/.config/leap/providers/"
        "testprovider.example.org/"
        "keys/client/openvpn.pem"),
    "connect_on_login": True,
    "block_cleartext_traffic": True,
    "primary_gateway": "usa_west",
    "secondary_gateway": "france",
    #"management_password": "oph7Que1othahwiech6J"
}

EIP_SAMPLE_SERVICE = {
    "serial": 1,
    "version": "0.1.0",
    "capabilities": {
        "transport": ["openvpn"],
        "ports": ["80", "53"],
        "protocols": ["udp", "tcp"],
        "static_ips": True,
        "adblock": True
    },
    "gateways": [
    {"country_code": "us",
     "label": {"en":"west"},
     "capabilities": {},
     "hosts": ["1.2.3.4", "1.2.3.5"]},
    ]
}