summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/bblayers.py
blob: 52aa4f811266205d77a52bc57192a6a03dc37892 (plain)
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
36
37
import unittest
import os
import logging
import re
import shutil

import oeqa.utils.ftools as ftools
from oeqa.selftest.base import oeSelfTest
from oeqa.utils.commands import runCmd

class BitbakeLayers(oeSelfTest):

    def test_bitbakelayers_showcrossdepends(self):
        result = runCmd('bitbake-layers show-cross-depends')
        self.assertTrue('aspell' in result.output)

    def test_bitbakelayers_showlayers(self):
        result = runCmd('bitbake-layers show_layers')
        self.assertTrue('meta-selftest' in result.output)

    def test_bitbakelayers_showappends(self):
        result = runCmd('bitbake-layers show_appends')
        self.assertTrue('xcursor-transparent-theme_0.1.1.bbappend' in result.output, msg='xcursor-transparent-theme_0.1.1.bbappend file was not recognised')

    def test_bitbakelayers_showoverlayed(self):
        result = runCmd('bitbake-layers show_overlayed')
        self.assertTrue('aspell' in result.output, msg='xcursor-transparent-theme_0.1.1.bbappend file was not recognised')

    def test_bitbakelayers_flatten(self):
        self.assertFalse(os.path.isdir(os.path.join(self.builddir, 'test')))
        result = runCmd('bitbake-layers flatten test')
        bb_file = os.path.join(self.builddir, 'test/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb')
        self.assertTrue(os.path.isfile(bb_file))
        contents = ftools.read_file(bb_file)
        find_in_contents = re.search("##### bbappended from meta-selftest #####\n(.*\n)*include test_recipe.inc", contents)
        shutil.rmtree(os.path.join(self.builddir, 'test'))
        self.assertTrue(find_in_contents)