mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
bitbake: tests/utils.py: test origvalue in a callback matches what is expected
There were no tests that verified the value of origvalue in the callback routines used by edit_metadata(). This patch adds one for a simple multiline variable. (Bitbake rev: ece3a4d02d8162dee78c2062c10291b5fd625c36) Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e1e459e480
commit
7e739acfa7
@@ -23,6 +23,7 @@ import unittest
|
|||||||
import bb
|
import bb
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
|
import re
|
||||||
|
|
||||||
class VerCmpString(unittest.TestCase):
|
class VerCmpString(unittest.TestCase):
|
||||||
|
|
||||||
@@ -377,6 +378,27 @@ do_functionname() {
|
|||||||
self.assertTrue(updated, 'List should be updated but isn\'t')
|
self.assertTrue(updated, 'List should be updated but isn\'t')
|
||||||
self.assertEqual(newlines, newfile5.splitlines(True))
|
self.assertEqual(newlines, newfile5.splitlines(True))
|
||||||
|
|
||||||
|
# Make sure the orig value matches what we expect it to be
|
||||||
|
def test_edit_metadata_origvalue(self):
|
||||||
|
origfile = """
|
||||||
|
MULTILINE = " stuff \\
|
||||||
|
morestuff"
|
||||||
|
"""
|
||||||
|
expected_value = "stuff morestuff"
|
||||||
|
global value_in_callback
|
||||||
|
value_in_callback = ""
|
||||||
|
|
||||||
|
def handle_var(varname, origvalue, op, newlines):
|
||||||
|
global value_in_callback
|
||||||
|
value_in_callback = origvalue
|
||||||
|
return (origvalue, op, -1, False)
|
||||||
|
|
||||||
|
bb.utils.edit_metadata(origfile.splitlines(True),
|
||||||
|
['MULTILINE'],
|
||||||
|
handle_var)
|
||||||
|
|
||||||
|
testvalue = re.sub('\s+', ' ', value_in_callback.strip())
|
||||||
|
self.assertEqual(expected_value, testvalue)
|
||||||
|
|
||||||
class EditBbLayersConf(unittest.TestCase):
|
class EditBbLayersConf(unittest.TestCase):
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user