Update buildroot 2020.02.01 (#622)
* Update buildroot 2020.02.01 Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix LN * Fix wpa Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix lint Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * fix-network Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix script Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
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):
|
||||
cmd = "cd /opt && /usr/bin/django-admin startproject testsite"
|
||||
self.assertRunOk(cmd, timeout=30)
|
||||
|
||||
cmd = "cd /opt/testsite && " + self.interpreter + " ./manage.py migrate"
|
||||
output, exit_code = self.emulator.run(cmd, timeout=30)
|
||||
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 30"
|
||||
self.assertRunOk(cmd, timeout=35)
|
||||
|
||||
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
|
||||
"""
|
||||
Reference in New Issue
Block a user