diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-11-09 11:57:54 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:03:53 +0000 |
commit | 115f80adf1b230c5d0392e7833e9aeb274642bcb (patch) | |
tree | d14b624b3f5772021b03b3871d317738420813ec | |
parent | 039deafa5f2c8fab31b8373b39f8bc219377b893 (diff) | |
download | openembedded-core-115f80adf1b230c5d0392e7833e9aeb274642bcb.tar.gz openembedded-core-115f80adf1b230c5d0392e7833e9aeb274642bcb.tar.bz2 openembedded-core-115f80adf1b230c5d0392e7833e9aeb274642bcb.zip |
oeqa/core/cases: Add example test cases
Serves as an first input of how to the OEQA framework works.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
-rw-r--r-- | meta/lib/oeqa/core/cases/__init__.py | 0 | ||||
-rw-r--r-- | meta/lib/oeqa/core/cases/example/data.json | 1 | ||||
-rw-r--r-- | meta/lib/oeqa/core/cases/example/test_basic.py | 20 |
3 files changed, 21 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/cases/__init__.py b/meta/lib/oeqa/core/cases/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/meta/lib/oeqa/core/cases/__init__.py diff --git a/meta/lib/oeqa/core/cases/example/data.json b/meta/lib/oeqa/core/cases/example/data.json new file mode 100644 index 0000000000..21d6b16d17 --- /dev/null +++ b/meta/lib/oeqa/core/cases/example/data.json @@ -0,0 +1 @@ +{"ARCH": "x86", "IMAGE": "core-image-minimal"}
\ No newline at end of file diff --git a/meta/lib/oeqa/core/cases/example/test_basic.py b/meta/lib/oeqa/core/cases/example/test_basic.py new file mode 100644 index 0000000000..11cf3800cc --- /dev/null +++ b/meta/lib/oeqa/core/cases/example/test_basic.py @@ -0,0 +1,20 @@ +# Copyright (C) 2016 Intel Corporation +# Released under the MIT license (see COPYING.MIT) + +from oeqa.core.case import OETestCase +from oeqa.core.decorator.depends import OETestDepends + +class OETestExample(OETestCase): + def test_example(self): + self.logger.info('IMAGE: %s' % self.td.get('IMAGE')) + self.assertEqual('core-image-minimal', self.td.get('IMAGE')) + self.logger.info('ARCH: %s' % self.td.get('ARCH')) + self.assertEqual('x86', self.td.get('ARCH')) + +class OETestExampleDepend(OETestCase): + @OETestDepends(['OETestExample.test_example']) + def test_example_depends(self): + pass + + def test_example_no_depends(self): + pass |