Skip to content

Commit

Permalink
TestUserQuery: Update tests to pytest fixtures.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris PeBenito <[email protected]>
  • Loading branch information
pebenito committed Apr 18, 2024
1 parent aacebae commit 088e33e
Showing 1 changed file with 107 additions and 109 deletions.
216 changes: 107 additions & 109 deletions tests/library/test_userquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,236 +2,234 @@
#
# SPDX-License-Identifier: GPL-2.0-only
#
import os
import unittest
import pytest
import setools

from setools import UserQuery

from .policyrep.util import compile_policy
@pytest.mark.obj_args("tests/library/userquery.conf")
class TestUserQuery:


class UserQueryTest(unittest.TestCase):

@classmethod
def setUpClass(cls):
cls.p = compile_policy("tests/library/userquery.conf")

@classmethod
def tearDownClass(cls):
os.unlink(cls.p.path)

def test_000_unset(self):
def test_unset(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with no criteria."""
# query with no parameters gets all types.
allusers = sorted(self.p.users())
allusers = sorted(compiled_policy.users())

q = UserQuery(self.p)
q = setools.UserQuery(compiled_policy)
qusers = sorted(q.results())

self.assertListEqual(allusers, qusers)
assert allusers == qusers

def test_001_name_exact(self):
def test_name_exact(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with exact name match."""
q = UserQuery(self.p, name="test1_u")
q = setools.UserQuery(compiled_policy, name="test1_u")

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test1_u"], users)
assert ["test1_u"] == users

def test_002_name_regex(self):
def test_name_regex(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with regex name match."""
q = UserQuery(self.p, name="test2_u(1|2)", name_regex=True)
q = setools.UserQuery(compiled_policy, name="test2_u(1|2)", name_regex=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test2_u1", "test2_u2"], users)
assert ["test2_u1", "test2_u2"] == users

def test_010_role_intersect(self):
def test_role_intersect(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with role set intersection."""
q = UserQuery(self.p, roles=["test10a_r", "test10b_r"])
q = setools.UserQuery(compiled_policy, roles=["test10a_r", "test10b_r"])

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test10_u1", "test10_u2", "test10_u3",
"test10_u4", "test10_u5", "test10_u6"], users)
assert ["test10_u1", "test10_u2", "test10_u3",
"test10_u4", "test10_u5", "test10_u6"] == users

def test_011_role_equality(self):
def test_role_equality(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with role set equality."""
q = UserQuery(
self.p, roles=["test11a_r", "test11b_r"], roles_equal=True)
q = setools.UserQuery(
compiled_policy, roles=["test11a_r", "test11b_r"], roles_equal=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test11_u2"], users)
assert ["test11_u2"] == users

def test_012_role_regex(self):
def test_role_regex(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with role regex match."""
q = UserQuery(self.p, roles="test12(a|b)_r", roles_regex=True)
q = setools.UserQuery(compiled_policy, roles="test12(a|b)_r", roles_regex=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test12_u1", "test12_u2", "test12_u3",
"test12_u4", "test12_u5", "test12_u6"], users)
assert ["test12_u1", "test12_u2", "test12_u3",
"test12_u4", "test12_u5", "test12_u6"] == users

def test_020_level_equal(self):
def test_level_equal(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level equality."""
q = UserQuery(self.p, level="s3:c0,c4")
q = setools.UserQuery(compiled_policy, level="s3:c0,c4")

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test20"], users)
assert ["test20"] == users

def test_021_level_dom1(self):
def test_level_dom1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level dominance."""
q = UserQuery(self.p, level="s2:c1,c2,c4", level_dom=True)
q = setools.UserQuery(compiled_policy, level="s2:c1,c2,c4", level_dom=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test21"], users)
assert ["test21"] == users

def test_021_level_dom2(self):
def test_level_dom2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level dominance (equal)."""
q = UserQuery(self.p, level="s2:c1,c4", level_dom=True)
q = setools.UserQuery(compiled_policy, level="s2:c1,c4", level_dom=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test21"], users)
assert ["test21"] == users

def test_022_level_domby1(self):
def test_level_domby1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level dominated-by."""
q = UserQuery(self.p, level="s3:c2", level_domby=True)
q = setools.UserQuery(compiled_policy, level="s3:c2", level_domby=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test22"], users)
assert ["test22"] == users

def test_022_level_domby2(self):
def test_level_domby2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level dominated-by (equal)."""
q = UserQuery(self.p, level="s3:c2,c4", level_domby=True)
q = setools.UserQuery(compiled_policy, level="s3:c2,c4", level_domby=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test22"], users)
assert ["test22"] == users

def test_023_level_incomp(self):
def test_level_incomp(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with default level icomparable."""
q = UserQuery(self.p, level="s5:c0.c5,c7", level_incomp=True)
q = setools.UserQuery(compiled_policy, level="s5:c0.c5,c7", level_incomp=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test23"], users)
assert ["test23"] == users

def test_040_range_exact(self):
def test_range_exact(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range exact match"""
q = UserQuery(self.p, range_="s0:c5 - s0:c0.c5")
q = setools.UserQuery(compiled_policy, range_="s0:c5 - s0:c0.c5")

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test40"], users)
assert ["test40"] == users

def test_041_range_overlap1(self):
def test_range_overlap1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range overlap match (equal)"""
q = UserQuery(self.p, range_="s1:c5 - s1:c1.c3,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s1:c5 - s1:c1.c3,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test41"], users)
assert ["test41"] == users

def test_041_range_overlap2(self):
def test_range_overlap2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range overlap match (subset)"""
q = UserQuery(self.p, range_="s1:c2,c5 - s1:c2.c3,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s1:c2,c5 - s1:c2.c3,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test41"], users)
assert ["test41"] == users

def test_041_range_overlap3(self):
def test_range_overlap3(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range overlap match (superset)"""
q = UserQuery(self.p, range_="s1 - s1:c0.c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s1 - s1:c0.c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test41"], users)
assert ["test41"] == users

def test_041_range_overlap4(self):
def test_range_overlap4(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range overlap match (overlap low level)"""
q = UserQuery(self.p, range_="s1:c5 - s1:c2,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s1:c5 - s1:c2,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test41"], users)
assert ["test41"] == users

def test_041_range_overlap5(self):
def test_range_overlap5(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range overlap match (overlap high level)"""
q = UserQuery(self.p, range_="s1:c5,c2 - s1:c1.c3,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s1:c5,c2 - s1:c1.c3,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test41"], users)
assert ["test41"] == users

def test_042_range_subset1(self):
def test_range_subset1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range subset match"""
q = UserQuery(self.p, range_="s2:c2,c5 - s2:c2.c3,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s2:c2,c5 - s2:c2.c3,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test42"], users)
assert ["test42"] == users

def test_042_range_subset2(self):
def test_range_subset2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range subset match (equal)"""
q = UserQuery(self.p, range_="s2:c5 - s2:c1.c3,c5", range_overlap=True)
q = setools.UserQuery(compiled_policy, range_="s2:c5 - s2:c1.c3,c5", range_overlap=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test42"], users)
assert ["test42"] == users

def test_043_range_superset1(self):
def test_range_superset1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range superset match"""
q = UserQuery(self.p, range_="s3 - s3:c0.c6", range_superset=True)
q = setools.UserQuery(compiled_policy, range_="s3 - s3:c0.c6", range_superset=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test43"], users)
assert ["test43"] == users

def test_043_range_superset2(self):
def test_range_superset2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range superset match (equal)"""
q = UserQuery(self.p, range_="s3:c5 - s3:c1.c3,c5.c6", range_superset=True)
q = setools.UserQuery(compiled_policy, range_="s3:c5 - s3:c1.c3,c5.c6",
range_superset=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test43"], users)
assert ["test43"] == users

def test_044_range_proper_subset1(self):
def test_range_proper_subset1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper subset match"""
q = UserQuery(self.p, range_="s4:c2,c5", range_subset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s4:c2,c5", range_subset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test44"], users)
assert ["test44"] == users

def test_044_range_proper_subset2(self):
def test_range_proper_subset2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper subset match (equal)"""
q = UserQuery(self.p, range_="s4:c5 - s4:c1.c3,c5", range_subset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s4:c5 - s4:c1.c3,c5", range_subset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual([], users)
assert [] == users

def test_044_range_proper_subset3(self):
def test_range_proper_subset3(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper subset match (equal low)"""
q = UserQuery(self.p, range_="s4:c5 - s4:c1.c2,c5", range_subset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s4:c5 - s4:c1.c2,c5", range_subset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test44"], users)
assert ["test44"] == users

def test_044_range_proper_subset4(self):
def test_range_proper_subset4(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper subset match (equal high)"""
q = UserQuery(self.p, range_="s4:c1,c5 - s4:c1.c3,c5", range_subset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s4:c1,c5 - s4:c1.c3,c5", range_subset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test44"], users)
assert ["test44"] == users

def test_045_range_proper_superset1(self):
def test_range_proper_superset1(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper superset match"""
q = UserQuery(self.p, range_="s5 - s5:c0.c5", range_superset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s5 - s5:c0.c5", range_superset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test45"], users)
assert ["test45"] == users

def test_045_range_proper_superset2(self):
def test_range_proper_superset2(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper superset match (equal)"""
q = UserQuery(self.p, range_="s5:c5 - s5:c1.c3,c5", range_superset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s5:c5 - s5:c1.c3,c5", range_superset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual([], users)
assert [] == users

def test_045_range_proper_superset3(self):
def test_range_proper_superset3(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper superset match (equal low)"""
q = UserQuery(self.p, range_="s5:c5 - s5:c1.c5", range_superset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s5:c5 - s5:c1.c5", range_superset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test45"], users)
assert ["test45"] == users

def test_045_range_proper_superset4(self):
def test_range_proper_superset4(self, compiled_policy: setools.SELinuxPolicy) -> None:
"""User query with range proper superset match (equal high)"""
q = UserQuery(self.p, range_="s5 - s5:c1.c3,c5", range_superset=True, range_proper=True)
q = setools.UserQuery(compiled_policy, range_="s5 - s5:c1.c3,c5", range_superset=True,
range_proper=True)

users = sorted(str(u) for u in q.results())
self.assertListEqual(["test45"], users)
assert ["test45"] == users

0 comments on commit 088e33e

Please sign in to comment.