summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_isolation_chroot.py
blob: dd0dede02c8258d07813905b2bc86eab21bae7db (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
import pytest
from unit.applications.lang.python import TestApplicationPython


class TestPythonIsolation(TestApplicationPython):
    prerequisites = {'modules': {'python': 'any'}}

    def test_python_isolation_chroot(self, is_su, temp_dir):
        if not is_su:
            pytest.skip('requires root')

        isolation = {
            'rootfs': temp_dir,
        }

        self.load('ns_inspect', isolation=isolation)

        assert not (
            self.getjson(url=f'/?path={temp_dir}')['body']['FileExists']
        ), 'temp_dir does not exists in rootfs'

        assert self.getjson(url='/?path=/proc/self')['body'][
            'FileExists'
        ], 'no /proc/self'

        assert not (
            self.getjson(url='/?path=/dev/pts')['body']['FileExists']
        ), 'no /dev/pts'

        assert not (
            self.getjson(url='/?path=/sys/kernel')['body']['FileExists']
        ), 'no /sys/kernel'

        ret = self.getjson(url='/?path=/app/python/ns_inspect')

        assert ret['body']['FileExists'], 'application exists in rootfs'