def test_053_range_superset2(self): """Ibendportcon query with context range superset match (equal)""" q = IbendportconQuery(self.p, range_="s3:c1 - s3:c1.c3", range_superset=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test53"], ibendportcons)
def test_052_range_subset1(self): """Ibendportcon query with context range subset match""" q = IbendportconQuery(self.p, range_="s2:c1,c2 - s2:c0.c3", range_overlap=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test52"], ibendportcons)
def test_051_range_overlap5(self): """Ibendportcon query with context range overlap match (overlap high level)""" q = IbendportconQuery(self.p, range_="s1:c1,c2 - s1:c0.c4", range_overlap=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test51"], ibendportcons)
def test_000_unset(self): """Ibendportcon query with no criteria""" # query with no parameters gets all ibendportcons. ibendportcons = sorted(self.p.ibendportcons()) q = IbendportconQuery(self.p) q_ibendportcons = sorted(q.results()) self.assertListEqual(ibendportcons, q_ibendportcons)
def test_055_range_proper_superset4(self): """Ibendportcon query with context range proper superset match (equal high)""" q = IbendportconQuery(self.p, range_="s5 - s5:c1.c3", range_superset=True, range_proper=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test55"], ibendportcons)
def test_054_range_proper_subset3(self): """Ibendportcon query with context range proper subset match (equal low only)""" q = IbendportconQuery(self.p, range_="s4:c1 - s4:c1.c2", range_subset=True, range_proper=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test54"], ibendportcons)
def test_040_type_exact(self): """Ibendportcon query with context type exact match""" q = IbendportconQuery(self.p, type_="type40", type_regex=False) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test40"], ibendportcons)
def test_031_role_regex(self): """Ibendportcon query with context role regex match""" q = IbendportconQuery(self.p, role="role31(a|c)_r", role_regex=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test31a", "test31c"], ibendportcons)
def test_030_role_exact(self): """Ibendportcon query with context role exact match""" q = IbendportconQuery(self.p, role="role30_r", role_regex=False) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test30"], ibendportcons)
def test_021_user_regex(self): """Ibendportcon query with context user regex match""" q = IbendportconQuery(self.p, user="******", user_regex=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test21a", "test21b"], ibendportcons)
def test_020_user_exact(self): """Ibendportcon query with context user exact match""" q = IbendportconQuery(self.p, user="******", user_regex=False) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test20"], ibendportcons)
def test_010_port(self): """Ibendportcon query with port match.""" q = IbendportconQuery(self.p, port=10) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test10"], ibendportcons)
def test_002_name_regext(self): """Ibendportcon query with regex name match.""" q = IbendportconQuery(self.p, name="test2(a|b)", name_regex=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test2a", "test2b"], ibendportcons)
def test_001_name_exact(self): """Ibendportcon query with exact name match.""" q = IbendportconQuery(self.p, name="test1", name_regex=False) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test1"], ibendportcons)
def test_050_range_exact(self): """Ibendportcon query with context range exact match""" q = IbendportconQuery(self.p, range_="s0:c1 - s0:c0.c4") ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test50"], ibendportcons)
def test_041_type_regex(self): """Ibendportcon query with context type regex match""" q = IbendportconQuery(self.p, type_="type41(b|c)", type_regex=True) ibendportcons = sorted(n.name for n in q.results()) self.assertListEqual(["test41b", "test41c"], ibendportcons)