support/testing: core testing infrastructure
This commit adds the core of a new testing infrastructure that allows to
perform runtime testing of Buildroot generated systems. This
infrastructure uses the Python unittest logic as its foundation.
This core infrastructure commit includes the following aspects:
- A base test class, called BRTest, defined in
support/testing/infra/basetest.py. This base test class inherited
from the Python provided unittest.TestCase, and must be subclassed by
all Buildroot test cases.
Its main purpose is to provide the Python unittest setUp() and
tearDown() methods. In our case, setUp() takes care of building the
Buildroot system described in the test case, and instantiate the
Emulator object in case runtime testing is needed. The tearDown()
method simply cleans things up (stop the emulator, remove the output
directory).
- A Builder class, defined in support/testing/infra/builder.py, simply
responsible for building the Buildroot system in each test case.
- An Emulator class, defined in support/testing/infra/emulator.py,
responsible for running the generated system under Qemu, allowing
each test case to run arbitrary commands inside the emulated system.
- A run-tests script, which is the entry point to start the tests.
Even though I wrote the original version of this small infrastructure, a
huge amount of rework and improvement has been done by Maxime
Hadjinlian, and squashed into this patch. So many thanks to Maxime for
cleaning up and improving my Python code!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-03-20 21:36:50 +01:00
|
|
|
import unittest
|
|
|
|
import os
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
from infra.builder import Builder
|
|
|
|
from infra.emulator import Emulator
|
|
|
|
|
|
|
|
BASIC_TOOLCHAIN_CONFIG = \
|
|
|
|
"""
|
|
|
|
BR2_arm=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2015.05-1190-g4a48479.tar.bz2"
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_GCC_4_7=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_10=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
|
|
|
|
# BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG is not set
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_CXX=y
|
|
|
|
"""
|
|
|
|
|
|
|
|
MINIMAL_CONFIG = \
|
|
|
|
"""
|
|
|
|
BR2_INIT_NONE=y
|
|
|
|
BR2_SYSTEM_BIN_SH_NONE=y
|
|
|
|
# BR2_PACKAGE_BUSYBOX is not set
|
|
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
|
|
"""
|
|
|
|
|
|
|
|
class BRTest(unittest.TestCase):
|
|
|
|
config = None
|
|
|
|
downloaddir = None
|
|
|
|
outputdir = None
|
|
|
|
logtofile = True
|
|
|
|
keepbuilds = False
|
2017-06-29 04:45:47 +02:00
|
|
|
jlevel = None
|
support/testing: core testing infrastructure
This commit adds the core of a new testing infrastructure that allows to
perform runtime testing of Buildroot generated systems. This
infrastructure uses the Python unittest logic as its foundation.
This core infrastructure commit includes the following aspects:
- A base test class, called BRTest, defined in
support/testing/infra/basetest.py. This base test class inherited
from the Python provided unittest.TestCase, and must be subclassed by
all Buildroot test cases.
Its main purpose is to provide the Python unittest setUp() and
tearDown() methods. In our case, setUp() takes care of building the
Buildroot system described in the test case, and instantiate the
Emulator object in case runtime testing is needed. The tearDown()
method simply cleans things up (stop the emulator, remove the output
directory).
- A Builder class, defined in support/testing/infra/builder.py, simply
responsible for building the Buildroot system in each test case.
- An Emulator class, defined in support/testing/infra/emulator.py,
responsible for running the generated system under Qemu, allowing
each test case to run arbitrary commands inside the emulated system.
- A run-tests script, which is the entry point to start the tests.
Even though I wrote the original version of this small infrastructure, a
huge amount of rework and improvement has been done by Maxime
Hadjinlian, and squashed into this patch. So many thanks to Maxime for
cleaning up and improving my Python code!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-03-20 21:36:50 +01:00
|
|
|
|
2017-07-10 01:21:20 +02:00
|
|
|
def __init__(self, names):
|
|
|
|
super(BRTest, self).__init__(names)
|
|
|
|
self.testname = self.__class__.__name__
|
2017-07-10 22:40:06 +02:00
|
|
|
self.builddir = self.outputdir and os.path.join(self.outputdir, self.testname)
|
2017-07-10 01:21:20 +02:00
|
|
|
self.emulator = None
|
2017-07-18 22:38:39 +02:00
|
|
|
self.config = '\n'.join([line.lstrip() for line in self.config.splitlines()])
|
2017-07-10 01:21:20 +02:00
|
|
|
|
support/testing: core testing infrastructure
This commit adds the core of a new testing infrastructure that allows to
perform runtime testing of Buildroot generated systems. This
infrastructure uses the Python unittest logic as its foundation.
This core infrastructure commit includes the following aspects:
- A base test class, called BRTest, defined in
support/testing/infra/basetest.py. This base test class inherited
from the Python provided unittest.TestCase, and must be subclassed by
all Buildroot test cases.
Its main purpose is to provide the Python unittest setUp() and
tearDown() methods. In our case, setUp() takes care of building the
Buildroot system described in the test case, and instantiate the
Emulator object in case runtime testing is needed. The tearDown()
method simply cleans things up (stop the emulator, remove the output
directory).
- A Builder class, defined in support/testing/infra/builder.py, simply
responsible for building the Buildroot system in each test case.
- An Emulator class, defined in support/testing/infra/emulator.py,
responsible for running the generated system under Qemu, allowing
each test case to run arbitrary commands inside the emulated system.
- A run-tests script, which is the entry point to start the tests.
Even though I wrote the original version of this small infrastructure, a
huge amount of rework and improvement has been done by Maxime
Hadjinlian, and squashed into this patch. So many thanks to Maxime for
cleaning up and improving my Python code!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-03-20 21:36:50 +01:00
|
|
|
def show_msg(self, msg):
|
2017-05-10 23:33:44 +02:00
|
|
|
print "{} {:40s} {}".format(datetime.datetime.now().strftime("%H:%M:%S"),
|
|
|
|
self.testname, msg)
|
support/testing: core testing infrastructure
This commit adds the core of a new testing infrastructure that allows to
perform runtime testing of Buildroot generated systems. This
infrastructure uses the Python unittest logic as its foundation.
This core infrastructure commit includes the following aspects:
- A base test class, called BRTest, defined in
support/testing/infra/basetest.py. This base test class inherited
from the Python provided unittest.TestCase, and must be subclassed by
all Buildroot test cases.
Its main purpose is to provide the Python unittest setUp() and
tearDown() methods. In our case, setUp() takes care of building the
Buildroot system described in the test case, and instantiate the
Emulator object in case runtime testing is needed. The tearDown()
method simply cleans things up (stop the emulator, remove the output
directory).
- A Builder class, defined in support/testing/infra/builder.py, simply
responsible for building the Buildroot system in each test case.
- An Emulator class, defined in support/testing/infra/emulator.py,
responsible for running the generated system under Qemu, allowing
each test case to run arbitrary commands inside the emulated system.
- A run-tests script, which is the entry point to start the tests.
Even though I wrote the original version of this small infrastructure, a
huge amount of rework and improvement has been done by Maxime
Hadjinlian, and squashed into this patch. So many thanks to Maxime for
cleaning up and improving my Python code!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-03-20 21:36:50 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.show_msg("Starting")
|
2017-07-10 01:21:20 +02:00
|
|
|
config = self.config
|
2017-06-29 04:45:47 +02:00
|
|
|
if self.jlevel:
|
|
|
|
config += "BR2_JLEVEL={}\n".format(self.jlevel)
|
|
|
|
self.b = Builder(config, self.builddir, self.logtofile)
|
support/testing: core testing infrastructure
This commit adds the core of a new testing infrastructure that allows to
perform runtime testing of Buildroot generated systems. This
infrastructure uses the Python unittest logic as its foundation.
This core infrastructure commit includes the following aspects:
- A base test class, called BRTest, defined in
support/testing/infra/basetest.py. This base test class inherited
from the Python provided unittest.TestCase, and must be subclassed by
all Buildroot test cases.
Its main purpose is to provide the Python unittest setUp() and
tearDown() methods. In our case, setUp() takes care of building the
Buildroot system described in the test case, and instantiate the
Emulator object in case runtime testing is needed. The tearDown()
method simply cleans things up (stop the emulator, remove the output
directory).
- A Builder class, defined in support/testing/infra/builder.py, simply
responsible for building the Buildroot system in each test case.
- An Emulator class, defined in support/testing/infra/emulator.py,
responsible for running the generated system under Qemu, allowing
each test case to run arbitrary commands inside the emulated system.
- A run-tests script, which is the entry point to start the tests.
Even though I wrote the original version of this small infrastructure, a
huge amount of rework and improvement has been done by Maxime
Hadjinlian, and squashed into this patch. So many thanks to Maxime for
cleaning up and improving my Python code!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-03-20 21:36:50 +01:00
|
|
|
|
|
|
|
if not self.keepbuilds:
|
|
|
|
self.b.delete()
|
|
|
|
|
|
|
|
if not self.b.is_finished():
|
|
|
|
self.show_msg("Building")
|
|
|
|
self.b.build()
|
|
|
|
self.show_msg("Building done")
|
|
|
|
|
|
|
|
self.emulator = Emulator(self.builddir, self.downloaddir, self.logtofile)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.show_msg("Cleaning up")
|
|
|
|
if self.emulator:
|
|
|
|
self.emulator.stop()
|
|
|
|
if self.b and not self.keepbuilds:
|
|
|
|
self.b.delete()
|