elf_test.py 3.9 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6
# Copyright (c) 2017 Google, Inc
# Written by Simon Glass <sjg@chromium.org>
#
# Test for the elf module

7
from contextlib import contextmanager
8 9 10 11
import os
import sys
import unittest

12 13 14 15 16
try:
  from StringIO import StringIO
except ImportError:
  from io import StringIO

17 18 19
import elf

binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

# Use this to suppress stdout/stderr output:
# with capture_sys_output() as (stdout, stderr)
#   ...do something...
@contextmanager
def capture_sys_output():
  capture_out, capture_err = StringIO(), StringIO()
  old_out, old_err = sys.stdout, sys.stderr
  try:
    sys.stdout, sys.stderr = capture_out, capture_err
    yield capture_out, capture_err
  finally:
    sys.stdout, sys.stderr = old_out, old_err


class FakeEntry:
    def __init__(self, contents_size):
        self.contents_size = contents_size
        self.data = 'a' * contents_size

    def GetPath(self):
        return 'entry_path'

43
class FakeSection:
44 45 46 47
    def __init__(self, sym_value=1):
        self.sym_value = sym_value

    def GetPath(self):
48
        return 'section_path'
49 50 51

    def LookupSymbol(self, name, weak, msg):
        return self.sym_value
52 53 54

class TestElf(unittest.TestCase):
    def testAllSymbols(self):
55
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
56 57 58 59
        syms = elf.GetSymbols(fname, [])
        self.assertIn('.ucode', syms)

    def testRegexSymbols(self):
60
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
61 62 63 64 65 66 67
        syms = elf.GetSymbols(fname, ['ucode'])
        self.assertIn('.ucode', syms)
        syms = elf.GetSymbols(fname, ['missing'])
        self.assertNotIn('.ucode', syms)
        syms = elf.GetSymbols(fname, ['missing', 'ucode'])
        self.assertIn('.ucode', syms)

68 69
    def testMissingFile(self):
        entry = FakeEntry(10)
70
        section = FakeSection()
71
        with self.assertRaises(ValueError) as e:
72
            syms = elf.LookupAndWriteSymbols('missing-file', entry, section)
73 74 75 76 77
        self.assertIn("Filename 'missing-file' not found in input path",
                      str(e.exception))

    def testOutsideFile(self):
        entry = FakeEntry(10)
78
        section = FakeSection()
79 80
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
        with self.assertRaises(ValueError) as e:
81
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
82 83 84 85 86
        self.assertIn('entry_path has offset 4 (size 8) but the contents size '
                      'is a', str(e.exception))

    def testMissingImageStart(self):
        entry = FakeEntry(10)
87
        section = FakeSection()
88
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_bad')
89
        self.assertEqual(elf.LookupAndWriteSymbols(elf_fname, entry, section),
90 91 92 93
                         None)

    def testBadSymbolSize(self):
        entry = FakeEntry(10)
94
        section = FakeSection()
95 96
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_size')
        with self.assertRaises(ValueError) as e:
97
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
98 99 100 101 102
        self.assertIn('has size 1: only 4 and 8 are supported',
                      str(e.exception))

    def testNoValue(self):
        entry = FakeEntry(20)
103
        section = FakeSection(sym_value=None)
104
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
105
        syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
106 107 108 109 110
        self.assertEqual(chr(255) * 16 + 'a' * 4, entry.data)

    def testDebug(self):
        elf.debug = True
        entry = FakeEntry(20)
111
        section = FakeSection()
112 113
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
        with capture_sys_output() as (stdout, stderr):
114
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
115 116 117 118
        elf.debug = False
        self.assertTrue(len(stdout.getvalue()) > 0)


119 120
if __name__ == '__main__':
    unittest.main()