mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

This adds SPDX license headers in place of the wide assortment of things currently in our script headers. We default to GPL-2.0-only except for the oeqa code where it was clearly submitted and marked as MIT on the most part or some scripts which had the "or later" GPL versioning. The patch also drops other obsolete bits of file headers where they were encoountered such as editor modelines, obsolete maintainer information or the phrase "All rights reserved" which is now obsolete and not required in copyright headers (in this case its actually confusing for licensing as all rights were not reserved). More work is needed for OE-Core but this takes care of the bulk of the scripts and meta/lib directories. The top level LICENSE files are tweaked to match the new structure and the SPDX naming. (From OE-Core rev: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
103 lines
3.6 KiB
Python
103 lines
3.6 KiB
Python
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
from oeqa.utils.commands import get_bb_var, get_bb_vars, bitbake, runCmd
|
|
import oe.path
|
|
import os
|
|
|
|
class LibOE(OESelftestTestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(LibOE, cls).setUpClass()
|
|
cls.tmp_dir = get_bb_var('TMPDIR')
|
|
|
|
def test_copy_tree_special(self):
|
|
"""
|
|
Summary: oe.path.copytree() should copy files with special character
|
|
Expected: 'test file with sp£c!al @nd spaces' should exist in
|
|
copy destination
|
|
Product: OE-Core
|
|
Author: Joshua Lock <joshua.g.lock@intel.com>
|
|
"""
|
|
testloc = oe.path.join(self.tmp_dir, 'liboetests')
|
|
src = oe.path.join(testloc, 'src')
|
|
dst = oe.path.join(testloc, 'dst')
|
|
bb.utils.mkdirhier(testloc)
|
|
bb.utils.mkdirhier(src)
|
|
testfilename = 'test file with sp£c!al @nd spaces'
|
|
|
|
# create the test file and copy it
|
|
open(oe.path.join(src, testfilename), 'w+b').close()
|
|
oe.path.copytree(src, dst)
|
|
|
|
# ensure path exists in dest
|
|
fileindst = os.path.isfile(oe.path.join(dst, testfilename))
|
|
self.assertTrue(fileindst, "File with spaces doesn't exist in dst")
|
|
|
|
oe.path.remove(testloc)
|
|
|
|
def test_copy_tree_xattr(self):
|
|
"""
|
|
Summary: oe.path.copytree() should preserve xattr on copied files
|
|
Expected: testxattr file in destination should have user.oetest
|
|
extended attribute
|
|
Product: OE-Core
|
|
Author: Joshua Lock <joshua.g.lock@intel.com>
|
|
"""
|
|
testloc = oe.path.join(self.tmp_dir, 'liboetests')
|
|
src = oe.path.join(testloc, 'src')
|
|
dst = oe.path.join(testloc, 'dst')
|
|
bb.utils.mkdirhier(testloc)
|
|
bb.utils.mkdirhier(src)
|
|
testfilename = 'testxattr'
|
|
|
|
# ensure we have setfattr available
|
|
bitbake("attr-native")
|
|
|
|
bb_vars = get_bb_vars(['SYSROOT_DESTDIR', 'bindir'], 'attr-native')
|
|
destdir = bb_vars['SYSROOT_DESTDIR']
|
|
bindir = bb_vars['bindir']
|
|
bindir = destdir + bindir
|
|
|
|
# create a file with xattr and copy it
|
|
open(oe.path.join(src, testfilename), 'w+b').close()
|
|
runCmd('%s/setfattr -n user.oetest -v "testing liboe" %s' % (bindir, oe.path.join(src, testfilename)))
|
|
oe.path.copytree(src, dst)
|
|
|
|
# ensure file in dest has user.oetest xattr
|
|
result = runCmd('%s/getfattr -n user.oetest %s' % (bindir, oe.path.join(dst, testfilename)))
|
|
self.assertIn('user.oetest="testing liboe"', result.output, 'Extended attribute not sert in dst')
|
|
|
|
oe.path.remove(testloc)
|
|
|
|
def test_copy_hardlink_tree_count(self):
|
|
"""
|
|
Summary: oe.path.copyhardlinktree() shouldn't miss out files
|
|
Expected: src and dst should have the same number of files
|
|
Product: OE-Core
|
|
Author: Joshua Lock <joshua.g.lock@intel.com>
|
|
"""
|
|
testloc = oe.path.join(self.tmp_dir, 'liboetests')
|
|
src = oe.path.join(testloc, 'src')
|
|
dst = oe.path.join(testloc, 'dst')
|
|
bb.utils.mkdirhier(testloc)
|
|
bb.utils.mkdirhier(src)
|
|
testfiles = ['foo', 'bar', '.baz', 'quux']
|
|
|
|
def touchfile(tf):
|
|
open(oe.path.join(src, tf), 'w+b').close()
|
|
|
|
for f in testfiles:
|
|
touchfile(f)
|
|
|
|
oe.path.copyhardlinktree(src, dst)
|
|
|
|
dstcnt = len(os.listdir(dst))
|
|
srccnt = len(os.listdir(src))
|
|
self.assertEquals(dstcnt, len(testfiles), "Number of files in dst (%s) differs from number of files in src(%s)." % (dstcnt, srccnt))
|
|
|
|
oe.path.remove(testloc)
|