hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
from tests.package.test_python import TestPythonPackageBase
 
 
class TestPythonDjango(TestPythonPackageBase):
    config = TestPythonPackageBase.config
    sample_scripts = ["tests/package/sample_python_django.py"]
 
    def run_sample_scripts(self):
        timeout = 35 * self.emulator.timeout_multiplier
 
        cmd = "cd /opt && /usr/bin/django-admin startproject testsite"
        self.assertRunOk(cmd, timeout=timeout)
 
        cmd = "cd /opt/testsite && " + self.interpreter + " ./manage.py migrate"
        output, exit_code = self.emulator.run(cmd, timeout=timeout)
        self.assertIn("Operations to perform:", output[0])
        self.assertEqual(exit_code, 0)
 
        cmd = "cd /opt/testsite && " + self.interpreter + " ./manage.py runserver 0.0.0.0:1234 & "
        # give some time to setup the server
        cmd += "sleep {}".format(str(30 * self.emulator.timeout_multiplier))
        self.assertRunOk(cmd, timeout=timeout)
 
        cmd = "netstat -ltn 2>/dev/null | grep 0.0.0.0:1234"
        self.assertRunOk(cmd)
 
 
class TestPythonPy3Django(TestPythonDjango):
    __test__ = True
    config = TestPythonDjango.config + \
        """
        BR2_PACKAGE_PYTHON3=y
        BR2_PACKAGE_PYTHON_DJANGO=y
        BR2_PACKAGE_PYTHON3_SQLITE=y
        """