cti-python-stix2/stix2/test/v20/test_identity.py

80 lines
2.0 KiB
Python
Raw Normal View History

import datetime as dt
2017-04-19 15:22:08 +02:00
import pytest
import pytz
2017-02-24 18:56:55 +01:00
import stix2
2017-04-19 15:22:08 +02:00
from .constants import IDENTITY_ID
2017-02-24 18:56:55 +01:00
EXPECTED = """{
"type": "identity",
"id": "identity--311b2d2d-f010-4473-83ec-1edf84858f4c",
"created": "2015-12-21T19:59:11.000Z",
"modified": "2015-12-21T19:59:11.000Z",
2017-02-24 18:56:55 +01:00
"name": "John Smith",
"identity_class": "individual"
2017-02-24 18:56:55 +01:00
}"""
def test_identity_example():
identity = stix2.v20.Identity(
id=IDENTITY_ID,
created="2015-12-21T19:59:11.000Z",
modified="2015-12-21T19:59:11.000Z",
2017-02-24 18:56:55 +01:00
name="John Smith",
identity_class="individual",
)
2017-06-09 18:20:40 +02:00
assert str(identity) == EXPECTED
2017-02-24 18:56:55 +01:00
2017-04-19 15:22:08 +02:00
@pytest.mark.parametrize(
"data", [
EXPECTED,
{
"created": "2015-12-21T19:59:11.000Z",
"id": IDENTITY_ID,
"identity_class": "individual",
"modified": "2015-12-21T19:59:11.000Z",
"name": "John Smith",
"type": "identity",
},
],
)
2017-04-19 15:22:08 +02:00
def test_parse_identity(data):
identity = stix2.parse(data, version="2.0")
2017-04-19 15:22:08 +02:00
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"
2017-06-09 18:20:40 +02:00
def test_parse_no_type():
with pytest.raises(stix2.exceptions.ParseError):
stix2.parse(
"""
{
"id": "identity--311b2d2d-f010-4473-83ec-1edf84858f4c",
"created": "2015-12-21T19:59:11.000Z",
"modified": "2015-12-21T19:59:11.000Z",
"name": "John Smith",
"identity_class": "individual"
}""", version="2.0",
)
def test_identity_with_custom():
identity = stix2.v20.Identity(
name="John Smith",
identity_class="individual",
custom_properties={'x_foo': 'bar'},
)
assert identity.x_foo == "bar"
assert "x_foo" in identity.object_properties()
2017-02-24 18:56:55 +01:00
# TODO: Add other examples