76 lines
2.0 KiB
Python
76 lines
2.0 KiB
Python
import datetime as dt
|
|
|
|
import pytest
|
|
import pytz
|
|
|
|
import stix2
|
|
|
|
from .constants import IDENTITY_ID
|
|
|
|
EXPECTED = """{
|
|
"type": "identity",
|
|
"id": "identity--311b2d2d-f010-5473-83ec-1edf84858f4c",
|
|
"created": "2015-12-21T19:59:11.000Z",
|
|
"modified": "2015-12-21T19:59:11.000Z",
|
|
"name": "John Smith",
|
|
"identity_class": "individual"
|
|
}"""
|
|
|
|
|
|
def test_identity_example():
|
|
identity = stix2.Identity(
|
|
id="identity--311b2d2d-f010-5473-83ec-1edf84858f4c",
|
|
created="2015-12-21T19:59:11.000Z",
|
|
modified="2015-12-21T19:59:11.000Z",
|
|
name="John Smith",
|
|
identity_class="individual",
|
|
)
|
|
|
|
assert str(identity) == EXPECTED
|
|
|
|
|
|
@pytest.mark.parametrize("data", [
|
|
EXPECTED,
|
|
{
|
|
"created": "2015-12-21T19:59:11.000Z",
|
|
"id": "identity--311b2d2d-f010-5473-83ec-1edf84858f4c",
|
|
"identity_class": "individual",
|
|
"modified": "2015-12-21T19:59:11.000Z",
|
|
"name": "John Smith",
|
|
"type": "identity"
|
|
},
|
|
])
|
|
def test_parse_identity(data):
|
|
identity = stix2.parse(data)
|
|
|
|
assert identity.type == 'identity'
|
|
assert identity.id == IDENTITY_ID
|
|
assert identity.created == dt.datetime(2015, 12, 21, 19, 59, 11, tzinfo=pytz.utc)
|
|
assert identity.modified == dt.datetime(2015, 12, 21, 19, 59, 11, tzinfo=pytz.utc)
|
|
assert identity.name == "John Smith"
|
|
|
|
|
|
def test_parse_no_type():
|
|
with pytest.raises(stix2.exceptions.ParseError):
|
|
stix2.parse("""
|
|
{
|
|
"id": "identity--311b2d2d-f010-5473-83ec-1edf84858f4c",
|
|
"created": "2015-12-21T19:59:11.000Z",
|
|
"modified": "2015-12-21T19:59:11.000Z",
|
|
"name": "John Smith",
|
|
"identity_class": "individual"
|
|
}""")
|
|
|
|
|
|
def test_identity_with_custom():
|
|
identity = stix2.Identity(
|
|
name="John Smith",
|
|
identity_class="individual",
|
|
custom_properties={'x_foo': 'bar'}
|
|
)
|
|
|
|
assert identity.x_foo == "bar"
|
|
assert "x_foo" in identity.object_properties()
|
|
|
|
# TODO: Add other examples
|