summaryrefslogtreecommitdiffhomepage
path: root/test/test_php_targets.py
blob: 6085db4042b2f529d70820bfb751d30ebffc27fa (plain) (blame)
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
90
91
92
93
94
95
96
97
98
99
100
from unit.applications.lang.php import ApplicationPHP
from unit.option import option

prerequisites = {'modules': {'php': 'any'}}

client = ApplicationPHP()


def test_php_application_targets():
    targets_dir = f"{option.test_dir}/php/targets"
    assert 'success' in client.conf(
        {
            "listeners": {"*:8080": {"pass": "routes"}},
            "routes": [
                {
                    "match": {"uri": "/1"},
                    "action": {"pass": "applications/targets/1"},
                },
                {
                    "match": {"uri": "/2"},
                    "action": {"pass": "applications/targets/2"},
                },
                {"action": {"pass": "applications/targets/default"}},
            ],
            "applications": {
                "targets": {
                    "type": client.get_application_type(),
                    "processes": {"spare": 0},
                    "targets": {
                        "1": {
                            "script": "1.php",
                            "root": targets_dir,
                        },
                        "2": {
                            "script": "2.php",
                            "root": f'{targets_dir}/2',
                        },
                        "default": {
                            "index": "index.php",
                            "root": targets_dir,
                        },
                    },
                }
            },
        }
    )

    assert client.get(url='/1')['body'] == '1'
    assert client.get(url='/2')['body'] == '2'
    assert client.get(url='/blah')['status'] == 404
    assert client.get(url='/')['body'] == 'index'
    assert client.get(url='/1.php?test=test.php/')['body'] == '1'

    assert 'success' in client.conf(
        "\"1.php\"", 'applications/targets/targets/default/index'
    ), 'change targets index'
    assert client.get(url='/')['body'] == '1'

    assert 'success' in client.conf_delete(
        'applications/targets/targets/default/index'
    ), 'remove targets index'
    assert client.get(url='/')['body'] == 'index'


def test_php_application_targets_error():
    assert 'success' in client.conf(
        {
            "listeners": {"*:8080": {"pass": "applications/targets/default"}},
            "applications": {
                "targets": {
                    "type": client.get_application_type(),
                    "processes": {"spare": 0},
                    "targets": {
                        "default": {
                            "index": "index.php",
                            "root": f"{option.test_dir}/php/targets",
                        },
                    },
                }
            },
        }
    ), 'initial configuration'
    assert client.get()['status'] == 200

    assert 'error' in client.conf(
        {"pass": "applications/targets/blah"}, 'listeners/*:8080'
    ), 'invalid targets pass'
    assert 'error' in client.conf(
        f'"{option.test_dir}/php/targets"',
        'applications/targets/root',
    ), 'invalid root'
    assert 'error' in client.conf(
        '"index.php"', 'applications/targets/index'
    ), 'invalid index'
    assert 'error' in client.conf(
        '"index.php"', 'applications/targets/script'
    ), 'invalid script'
    assert 'error' in client.conf_delete(
        'applications/targets/default/root'
    ), 'root remove'