本文整理汇总了Python中setools.PortconQuery类的典型用法代码示例。如果您正苦于以下问题:Python PortconQuery类的具体用法?Python PortconQuery怎么用?Python PortconQuery使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PortconQuery类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_058_single_proper_superset_edge3
def test_058_single_proper_superset_edge3(self):
"""Portcon query with single port proper superset, high equal edge case"""
q = PortconQuery(
self.p, ports=(50800, 50801), ports_superset=True, ports_proper=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50801, 50801)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:7,代码来源:portconquery.py
示例2: test_059_range_proper_superset_edge3
def test_059_range_proper_superset_edge3(self):
"""Portcon query with range proper superset, equal low port edge case"""
q = PortconQuery(
self.p, ports=(50901, 50911), ports_superset=True, ports_proper=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50901, 50910)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:7,代码来源:portconquery.py
示例3: test_054_single_proper_subset
def test_054_single_proper_subset(self):
"""Portcon query with single port proper subset"""
q = PortconQuery(
self.p, ports=(50400, 50400), ports_subset=True, ports_proper=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:7,代码来源:portconquery.py
示例4: test_055_range_proper_subset_edge3
def test_055_range_proper_subset_edge3(self):
"""Portcon query with range proper subset, high equal edge case"""
q = PortconQuery(
self.p, ports=(50501, 50510), ports_subset=True, ports_proper=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50500, 50510)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:7,代码来源:portconquery.py
示例5: test_000_unset
def test_000_unset(self):
"""Portcon query with no criteria"""
# query with no parameters gets all ports.
rules = sorted(self.p.portcons())
q = PortconQuery(self.p)
q_rules = sorted(q.results())
self.assertListEqual(rules, q_rules)
开发者ID:GitForNeo,项目名称:setools,代码行数:9,代码来源:portconquery.py
示例6: test_061_range_overlap_low_half
def test_061_range_overlap_low_half(self):
"""Portcon query with range overlap, low half match"""
q = PortconQuery(self.p, ports=(60100, 60105), ports_overlap=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(60101, 60110)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例7: test_060_single_overlap_edge3
def test_060_single_overlap_edge3(self):
"""Portcon query with single overlap, range match proper superset"""
q = PortconQuery(self.p, ports=(60000, 60002), ports_overlap=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(60001, 60001)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例8: test_044_range_proper_subset4
def test_044_range_proper_subset4(self):
"""Portcon query with context range proper subset match (equal high only)"""
q = PortconQuery(self.p, range_="s4:c1,c2 - s4:c1.c3", range_subset=True, range_proper=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(44, 44)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例9: test_040_range_exact
def test_040_range_exact(self):
"""Portcon query with context range exact match"""
q = PortconQuery(self.p, range_="s0:c1 - s0:c0.c4")
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(40, 40)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例10: test_050_single_equal
def test_050_single_equal(self):
"""Portcon query with single port exact match"""
q = PortconQuery(self.p, ports=(50, 50))
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50, 50)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例11: test_010_user_exact
def test_010_user_exact(self):
"""Portcon query with context user exact match"""
q = PortconQuery(self.p, user="user10", user_regex=False)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(10, 10)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例12: test_064_range_overlap_equal
def test_064_range_overlap_equal(self):
"""Portcon query with range overlap, equal match"""
q = PortconQuery(self.p, ports=(60400, 60410), ports_overlap=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(60400, 60410)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例13: test_056_single_superset_edge1
def test_056_single_superset_edge1(self):
"""Portcon query with single port superset, equal edge case"""
q = PortconQuery(self.p, ports=(50601, 50601), ports_superset=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50601, 50601)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例14: test_053_range_subset
def test_053_range_subset(self):
"""Portcon query with range subset"""
q = PortconQuery(self.p, ports=(50301, 50309), ports_subset=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50300, 50310)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例15: test_052_single_subset
def test_052_single_subset(self):
"""Portcon query with single port subset"""
q = PortconQuery(self.p, ports=(50200, 50200), ports_subset=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50200, 50200)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例16: test_051_range_equal
def test_051_range_equal(self):
"""Portcon query with port range exact match"""
q = PortconQuery(self.p, ports=(50100, 50110))
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50100, 50110)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例17: test_062_range_overlap_high_half
def test_062_range_overlap_high_half(self):
"""Portcon query with range overlap, high half match"""
q = PortconQuery(self.p, ports=(60205, 60211), ports_overlap=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(60200, 60210)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例18: test_057_range_superset_edge1
def test_057_range_superset_edge1(self):
"""Portcon query with range superset, equal edge case"""
q = PortconQuery(self.p, ports=(50700, 50710), ports_superset=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(50700, 50710)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例19: test_063_range_overlap_middle
def test_063_range_overlap_middle(self):
"""Portcon query with range overlap, middle match"""
q = PortconQuery(self.p, ports=(60305, 60308), ports_overlap=True)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(60300, 60310)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
示例20: test_020_role_exact
def test_020_role_exact(self):
"""Portcon query with context role exact match"""
q = PortconQuery(self.p, role="role20_r", role_regex=False)
ports = sorted(p.ports for p in q.results())
self.assertListEqual([(20, 20)], ports)
开发者ID:GitForNeo,项目名称:setools,代码行数:6,代码来源:portconquery.py
注:本文中的setools.PortconQuery类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论