aboutsummaryrefslogtreecommitdiff
path: root/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
blob: c1693da51931db7874e204c7cc026ada7b40f84e (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
38
#!/usr/bin/env python3

# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Unit tests for mass_seccomp_editor.py"""

import unittest
from unittest import mock

import mass_seccomp_editor

BASE_SECCOMP_CONTENTS = """
fstat: 1
poll: 1
foobar: 1
"""

TEST_FP = "foo"


class TestMassSeccompEditor(unittest.TestCase):
    """Test the mass_seccomp_editor."""

    def test_check_missing_sycalls(self):
        """Test we can find missing syscalls."""
        with mock.patch(
            "builtins.open", mock.mock_open(read_data=BASE_SECCOMP_CONTENTS)
        ):
            out = mass_seccomp_editor.check_missing_syscalls(
                ["fstat", "dup", "fizzbuzz"], TEST_FP
            )
        self.assertEqual(out, set(["dup", "fizzbuzz"]))


if __name__ == "__main__":
    unittest.main()