summaryrefslogtreecommitdiffhomepage
path: root/test/test_static_share.py
blob: 5384866ebe6d655a466363d046b1dfd59335d875 (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
import os
from pathlib import Path

import pytest
from unit.applications.proto import TestApplicationProto


class TestStaticShare(TestApplicationProto):
    prerequisites = {}

    @pytest.fixture(autouse=True)
    def setup_method_fixture(self, temp_dir):
        os.makedirs(temp_dir + '/assets/dir')
        os.makedirs(temp_dir + '/assets/dir2')

        Path(temp_dir + '/assets/dir/file').write_text('1')
        Path(temp_dir + '/assets/dir2/file2').write_text('2')

        assert 'success' in self.conf(
            {
                "listeners": {"*:7080": {"pass": "routes"}},
                "routes": [{"action": {"share": temp_dir + "/assets$uri"}}],
                "applications": {},
            }
        )

    def action_update(self, conf):
        assert 'success' in self.conf(conf, 'routes/0/action')

    def test_share_array(self, temp_dir):
        assert self.get(url='/dir/file')['body'] == '1'
        assert self.get(url='/dir2/file2')['body'] == '2'

        self.action_update({"share": [temp_dir + "/assets/dir$uri"]})

        assert self.get(url='/file')['body'] == '1'
        assert self.get(url='/file2')['status'] == 404

        self.action_update(
            {
                "share": [
                    temp_dir + "/assets/dir$uri",
                    temp_dir + "/assets/dir2$uri",
                ]
            }
        )

        assert self.get(url='/file')['body'] == '1'
        assert self.get(url='/file2')['body'] == '2'

        self.action_update(
            {
                "share": [
                    temp_dir + "/assets/dir2$uri",
                    temp_dir + "/assets/dir3$uri",
                ]
            }
        )

        assert self.get(url='/file')['status'] == 404
        assert self.get(url='/file2')['body'] == '2'

    def test_share_array_fallback(self):
        self.action_update(
            {"share": ["/blah", "/blah2"], "fallback": {"return": 201}}
        )

        assert self.get()['status'] == 201

    def test_share_array_invalid(self):
        assert 'error' in self.conf({"share": []}, 'routes/0/action')
        assert 'error' in self.conf({"share": {}}, 'routes/0/action')