本文整理汇总了Python中cybox.core.Observable.to_xml方法的典型用法代码示例。如果您正苦于以下问题:Python Observable.to_xml方法的具体用法?Python Observable.to_xml怎么用?Python Observable.to_xml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cybox.core.Observable
的用法示例。
在下文中一共展示了Observable.to_xml方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_keywords
# 需要导入模块: from cybox.core import Observable [as 别名]
# 或者: from cybox.core.Observable import to_xml [as 别名]
def test_keywords(self):
o = Observable()
o.title = "Test"
self.assertTrue("eyword" not in o.to_xml())
o.add_keyword("Foo")
print(o.to_xml())
self.assertTrue("<cybox:Keyword>Foo</cybox:Keyword>" in o.to_xml())
o2 = round_trip(o)
self.assertEqual(1, len(o2.keywords))
示例2: test_to_xml_default_encoded
# 需要导入模块: from cybox.core import Observable [as 别名]
# 或者: from cybox.core.Observable import to_xml [as 别名]
def test_to_xml_default_encoded(self):
o = Observable()
o.title = UNICODE_STR
xml = o.to_xml()
self.assertTrue(UNICODE_STR in xml.decode('utf-8'))
示例3: test_to_xml_no_encoding
# 需要导入模块: from cybox.core import Observable [as 别名]
# 或者: from cybox.core.Observable import to_xml [as 别名]
def test_to_xml_no_encoding(self):
o = Observable()
o.title = UNICODE_STR
xml = o.to_xml(encoding=None)
self.assertTrue(isinstance(xml, six.text_type))
self.assertTrue(UNICODE_STR in xml)
示例4: test_to_xml_utf16_encoded
# 需要导入模块: from cybox.core import Observable [as 别名]
# 或者: from cybox.core.Observable import to_xml [as 别名]
def test_to_xml_utf16_encoded(self):
encoding = 'utf-16'
o = Observable()
o.title = UNICODE_STR
xml = o.to_xml(encoding=encoding)
self.assertTrue(UNICODE_STR in xml.decode(encoding))