summaryrefslogtreecommitdiffhomepage
path: root/test/test_php_basic.py
blob: 1420ec21988e357d30a2a03073eca04466999e7a (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
from unit.control import TestControl


class TestPHPBasic(TestControl):
    prerequisites = {'modules': {'php': 'any'}}

    conf_app = {
        "app": {
            "type": "php",
            "processes": {"spare": 0},
            "root": "/app",
            "index": "index.php",
        }
    }

    conf_basic = {
        "listeners": {"*:7080": {"pass": "applications/app"}},
        "applications": conf_app,
    }

    def test_php_get_applications(self):
        self.conf(self.conf_app, 'applications')

        conf = self.conf_get()

        assert conf['listeners'] == {}, 'listeners'
        assert conf['applications'] == {
            "app": {
                "type": "php",
                "processes": {"spare": 0},
                "root": "/app",
                "index": "index.php",
            }
        }, 'applications'

        assert self.conf_get('applications') == {
            "app": {
                "type": "php",
                "processes": {"spare": 0},
                "root": "/app",
                "index": "index.php",
            }
        }, 'applications prefix'

        assert self.conf_get('applications/app') == {
            "type": "php",
            "processes": {"spare": 0},
            "root": "/app",
            "index": "index.php",
        }, 'applications prefix 2'

        assert self.conf_get('applications/app/type') == 'php', 'type'
        assert (
            self.conf_get('applications/app/processes/spare') == 0
        ), 'spare processes'

    def test_php_get_listeners(self):
        self.conf(self.conf_basic)

        assert self.conf_get()['listeners'] == {
            "*:7080": {"pass": "applications/app"}
        }, 'listeners'

        assert self.conf_get('listeners') == {
            "*:7080": {"pass": "applications/app"}
        }, 'listeners prefix'

        assert self.conf_get('listeners/*:7080') == {
            "pass": "applications/app"
        }, 'listeners prefix 2'

    def test_php_change_listener(self):
        self.conf(self.conf_basic)
        self.conf({"*:7081": {"pass": "applications/app"}}, 'listeners')

        assert self.conf_get('listeners') == {
            "*:7081": {"pass": "applications/app"}
        }, 'change listener'

    def test_php_add_listener(self):
        self.conf(self.conf_basic)
        self.conf({"pass": "applications/app"}, 'listeners/*:7082')

        assert self.conf_get('listeners') == {
            "*:7080": {"pass": "applications/app"},
            "*:7082": {"pass": "applications/app"},
        }, 'add listener'

    def test_php_change_application(self):
        self.conf(self.conf_basic)

        self.conf('30', 'applications/app/processes/max')
        assert (
            self.conf_get('applications/app/processes/max') == 30
        ), 'change application max'

        self.conf('"/www"', 'applications/app/root')
        assert (
            self.conf_get('applications/app/root') == '/www'
        ), 'change application root'

    def test_php_delete(self):
        self.conf(self.conf_basic)

        assert 'error' in self.conf_delete('applications/app')
        assert 'success' in self.conf_delete('listeners/*:7080')
        assert 'success' in self.conf_delete('applications/app')
        assert 'error' in self.conf_delete('applications/app')

    def test_php_delete_blocks(self):
        self.conf(self.conf_basic)

        assert 'success' in self.conf_delete('listeners')
        assert 'success' in self.conf_delete('applications')

        assert 'success' in self.conf(self.conf_app, 'applications')
        assert 'success' in self.conf(
            {"*:7081": {"pass": "applications/app"}}, 'listeners'
        ), 'applications restore'