summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/layerappend.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/layerappend.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/layerappend.py95
1 files changed, 95 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/layerappend.py b/meta/lib/oeqa/selftest/cases/layerappend.py
new file mode 100644
index 0000000000..9562116309
--- /dev/null
+++ b/meta/lib/oeqa/selftest/cases/layerappend.py
@@ -0,0 +1,95 @@
1import os
2
3from oeqa.selftest.case import OESelftestTestCase
4from oeqa.utils.commands import runCmd, bitbake, get_bb_var
5import oeqa.utils.ftools as ftools
6from oeqa.core.decorator.oeid import OETestID
7
8class LayerAppendTests(OESelftestTestCase):
9 layerconf = """
10# We have a conf and classes directory, append to BBPATH
11BBPATH .= ":${LAYERDIR}"
12
13# We have a recipes directory, add to BBFILES
14BBFILES += "${LAYERDIR}/recipes*/*.bb ${LAYERDIR}/recipes*/*.bbappend"
15
16BBFILE_COLLECTIONS += "meta-layerINT"
17BBFILE_PATTERN_meta-layerINT := "^${LAYERDIR}/"
18BBFILE_PRIORITY_meta-layerINT = "6"
19"""
20 recipe = """
21LICENSE="CLOSED"
22INHIBIT_DEFAULT_DEPS = "1"
23
24python do_build() {
25 bb.plain('Building ...')
26}
27addtask build
28"""
29 append = """
30FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
31
32SRC_URI_append = " file://appendtest.txt"
33
34sysroot_stage_all_append() {
35 install -m 644 ${WORKDIR}/appendtest.txt ${SYSROOT_DESTDIR}/
36}
37
38"""
39
40 append2 = """
41FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
42
43SRC_URI_append += "file://appendtest.txt"
44"""
45 layerappend = ''
46
47 def tearDownLocal(self):
48 if self.layerappend:
49 ftools.remove_from_file(self.builddir + "/conf/bblayers.conf", self.layerappend)
50 super(LayerAppendTests, self).tearDownLocal()
51
52 @OETestID(1196)
53 def test_layer_appends(self):
54 corebase = get_bb_var("COREBASE")
55
56 for l in ["0", "1", "2"]:
57 layer = os.path.join(corebase, "meta-layertest" + l)
58 self.assertFalse(os.path.exists(layer))
59 os.mkdir(layer)
60 os.mkdir(layer + "/conf")
61 with open(layer + "/conf/layer.conf", "w") as f:
62 f.write(self.layerconf.replace("INT", l))
63 os.mkdir(layer + "/recipes-test")
64 if l == "0":
65 with open(layer + "/recipes-test/layerappendtest.bb", "w") as f:
66 f.write(self.recipe)
67 elif l == "1":
68 with open(layer + "/recipes-test/layerappendtest.bbappend", "w") as f:
69 f.write(self.append)
70 os.mkdir(layer + "/recipes-test/layerappendtest")
71 with open(layer + "/recipes-test/layerappendtest/appendtest.txt", "w") as f:
72 f.write("Layer 1 test")
73 elif l == "2":
74 with open(layer + "/recipes-test/layerappendtest.bbappend", "w") as f:
75 f.write(self.append2)
76 os.mkdir(layer + "/recipes-test/layerappendtest")
77 with open(layer + "/recipes-test/layerappendtest/appendtest.txt", "w") as f:
78 f.write("Layer 2 test")
79 self.track_for_cleanup(layer)
80
81 self.layerappend = "BBLAYERS += \"{0}/meta-layertest0 {0}/meta-layertest1 {0}/meta-layertest2\"".format(corebase)
82 ftools.append_file(self.builddir + "/conf/bblayers.conf", self.layerappend)
83 stagingdir = get_bb_var("SYSROOT_DESTDIR", "layerappendtest")
84 bitbake("layerappendtest")
85 data = ftools.read_file(stagingdir + "/appendtest.txt")
86 self.assertEqual(data, "Layer 2 test")
87 os.remove(corebase + "/meta-layertest2/recipes-test/layerappendtest/appendtest.txt")
88 bitbake("layerappendtest")
89 data = ftools.read_file(stagingdir + "/appendtest.txt")
90 self.assertEqual(data, "Layer 1 test")
91 with open(corebase + "/meta-layertest2/recipes-test/layerappendtest/appendtest.txt", "w") as f:
92 f.write("Layer 2 test")
93 bitbake("layerappendtest")
94 data = ftools.read_file(stagingdir + "/appendtest.txt")
95 self.assertEqual(data, "Layer 2 test")