[elbe-devel] [PATCH v2 1/4] tests: Create test case for simple xml
Bastian Germann
bage at linutronix.de
Tue Aug 4 13:49:09 CEST 2020
Am 03.08.20 um 18:39 schrieb Olivier Dion:
> Files under tests/ matching simple*.xml are used for testing
> simple build.
>
> This is taken from the current Jenkin file for elbe-ci.
Typo: Jenkins
>
> Signed-off-by: Olivier Dion <dion at linutronix.de>
With the typo fixed:
Reviewd-by: Bastian Germann <bage at linutronix.de>
> ---
> elbepack/tests/test_xml.py | 54 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 54 insertions(+)
> create mode 100644 elbepack/tests/test_xml.py
>
> diff --git a/elbepack/tests/test_xml.py b/elbepack/tests/test_xml.py
> new file mode 100644
> index 00000000..f397a90b
> --- /dev/null
> +++ b/elbepack/tests/test_xml.py
> @@ -0,0 +1,54 @@
> +# ELBE - Debian Based Embedded Rootfilesystem Builder
> +# Copyright (c) 2020 Olivier Dion <dion at linutronix.de>
> +#
> +# SPDX-License-Identifier: GPL-3.0-or-later
> +
> +import os
> +import unittest
> +import tempfile
> +
> +from elbepack.directories import elbe_dir, elbe_exe
> +from elbepack.commands.test import ElbeTestCase, ElbeTestLevel
> +from elbepack.shellhelper import system
> +
> + at unittest.skipIf(ElbeTestCase.level < ElbeTestLevel.INITVM,
> + "Test level not set to INITVM")
> +class TestSimpleXML(ElbeTestCase):
> +
> + params = [os.path.join(elbe_dir, "tests", fname)
> + for fname
> + in os.listdir(os.path.join(elbe_dir, "tests"))
> + if fname.startswith("simple") and fname.endswith(".xml")]
> +
> + def test_simple_build(self):
> +
> + with tempfile.TemporaryDirectory(prefix="elbe-test-simple-xml-") as build_dir:
> +
> + prj = os.path.join(build_dir, "uuid.prj")
> + uuid = None
> +
> + try:
> + system('%s initvm submit "%s" --output "%s" --keep-files '
> + '--build-sdk --writeproject "%s"' %
> + (elbe_exe, self.param, build_dir, prj))
> +
> + # Ensure project build is done
> + with open(prj, "r") as f:
> + uuid = f.read()
> + system("%s control list_projects | "
> + "grep %s | grep build_done || false" %
> + (elbe_exe, uuid))
> +
> + # TODO:old - Uncomment this when elbe check-build is available
> + #
> + #for cmd in ("cdrom", "img", "sdk", "rebuild"):
> + # with self.subTest(cmd=cmd):
> + # system('%s check-build %s "%s"' % (elbe_exe, cmd, build_dir))
> +
> + # pylint: disable=try-except-raise
> + except:
> + raise
> + else:
> + system('%s control del_project %s' % (elbe_exe, uuid),
> + allow_fail=True)
> +
>
More information about the elbe-devel
mailing list