Example #1
0
    def test_045_range_proper_superset4(self):
        """Devicetreecon query with context range proper superset match (equal high)"""
        q = DevicetreeconQuery(self.p,
                               range_="s5 - s5:c1.c3", range_superset=True, range_proper=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree45")], path)
Example #2
0
    def test_044_range_proper_subset3(self):
        """Devicetreecon query with context range proper subset match (equal low only)"""
        q = DevicetreeconQuery(self.p,
                               range_="s4:c1 - s4:c1.c2", range_subset=True, range_proper=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree44")], path)
    def test_041_range_overlap2(self):
        """Devicetreecon query with context range overlap match (subset)"""
        q = DevicetreeconQuery(self.p,
                               range_="s1:c1,c2 - s1:c0.c3",
                               range_overlap=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree41")], path)
    def test_043_range_superset2(self):
        """Devicetreecon query with context range superset match (equal)"""
        q = DevicetreeconQuery(self.p,
                               range_="s3:c1 - s3:c1.c3",
                               range_superset=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree43")], path)
    def test_042_range_subset1(self):
        """Devicetreecon query with context range subset match"""
        q = DevicetreeconQuery(self.p,
                               range_="s2:c1,c2 - s2:c0.c3",
                               range_overlap=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree42")], path)
Example #6
0
    def test_000_unset(self):
        """Devicetreecon query with no criteria"""
        # query with no parameters gets all PCI paths.
        rules = sorted(self.p.devicetreecons())

        q = DevicetreeconQuery(self.p)
        q_rules = sorted(q.results())

        self.assertListEqual(rules, q_rules)
Example #7
0
    def test_040_range_exact(self):
        """Devicetreecon query with context range exact match"""
        q = DevicetreeconQuery(self.p, range_="s0:c1 - s0:c0.c4")

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree40")], path)
Example #8
0
    def test_031_type_regex(self):
        """Devicetreecon query with context type regex match"""
        q = DevicetreeconQuery(self.p, type_="type31(b|c)", type_regex=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree31000"), ("/dev/tree31001")], path)
Example #9
0
    def test_030_type_exact(self):
        """Devicetreecon query with context type exact match"""
        q = DevicetreeconQuery(self.p, type_="type30", type_regex=False)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree30")], path)
Example #10
0
    def test_021_role_regex(self):
        """Devicetreecon query with context role regex match"""
        q = DevicetreeconQuery(self.p, role="role21(a|c)_r", role_regex=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree21"), ("/dev/tree21001")], path)
Example #11
0
    def test_020_role_exact(self):
        """Devicetreecon query with context role exact match"""
        q = DevicetreeconQuery(self.p, role="role20_r", role_regex=False)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree20")], path)
Example #12
0
    def test_011_user_regex(self):
        """Devicetreecon query with context user regex match"""
        q = DevicetreeconQuery(self.p, user="******", user_regex=True)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree11"), ("/dev/tree11000")], path)
Example #13
0
    def test_010_user_exact(self):
        """Devicetreecon query with context user exact match"""
        q = DevicetreeconQuery(self.p, user="******", user_regex=False)

        path = sorted(p.path for p in q.results())
        self.assertListEqual([("/dev/tree10")], path)