1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Tests for the serializer object implementation using JSON."""
from __future__ import unicode_literals
import collections
import json
import time
import unittest
import uuid
from dfvfs.lib import definitions as dfvfs_definitions
from dfvfs.path import fake_path_spec
from dfvfs.path import factory as path_spec_factory
import plaso
from plaso.containers import event_sources
from plaso.containers import events
from plaso.containers import reports
from plaso.containers import sessions
from plaso.containers import tasks
from plaso.serializer import json_serializer
from tests import test_lib as shared_test_lib
class JSONSerializerTestCase(shared_test_lib.BaseTestCase):
"""Tests for a JSON serializer object."""
def _TestReadSerialized(self, serializer_object, json_dict):
"""Tests the ReadSerialized function.
Args:
serializer_object (JSONSerializer): the JSON serializer object.
json_dict (dict[str, object]): one or more JSON serialized values
Returns:
object: unserialized object.
"""
# We use json.dumps to make sure the dict does not serialize into
# an invalid JSON string such as one that contains Python string prefixes
# like b'' or u''.
json_string = json.dumps(json_dict)
unserialized_object = serializer_object.ReadSerialized(json_string)
self.assertIsNotNone(unserialized_object)
return unserialized_object
def _TestWriteSerialized(
self, serializer_object, unserialized_object, expected_json_dict):
"""Tests the WriteSerialized function.
Args:
serializer_object (JSONSerializer): the JSON serializer object.
unserialized_object (object): the unserialized object.
expected_json_dict (dict[str, object]): one or more expected JSON
serialized values.
Returns:
str: serialized JSON string.
"""
json_string = serializer_object.WriteSerialized(unserialized_object)
# We use json.loads here to compare dicts since we cannot pre-determine
# the actual order of values in the JSON string.
json_dict = json.loads(json_string)
self.assertEqual(
sorted(json_dict.items()), sorted(expected_json_dict.items()))
return json_string
class JSONAttributeContainerSerializerTest(JSONSerializerTestCase):
"""Tests for the JSON attribute container serializer object."""
def testReadAndWriteSerializedAnalysisReport(self):
"""Test ReadSerialized and WriteSerialized of AnalysisReport."""
expected_report_dict = {
'dude': [
['Google Keep - notes and lists',
'hmjkmjkepdijhoojdojkdfohbdgmmhki']
],
'frank': [
['YouTube', 'blpcfgokakmgnkcojhhkbfbldkacnbeo'],
['Google Play Music', 'icppfcnhkcmnfdhfhphakoifcfokfdhg']
]
}
expected_report_text = (
' == USER: dude ==\n'
' Google Keep - notes and lists [hmjkmjkepdijhoojdojkdfohbdgmmhki]\n'
'\n'
' == USER: frank ==\n'
' Google Play Music [icppfcnhkcmnfdhfhphakoifcfokfdhg]\n'
' YouTube [blpcfgokakmgnkcojhhkbfbldkacnbeo]\n'
'\n')
expected_analysis_report = reports.AnalysisReport(
plugin_name='chrome_extension_test', text=expected_report_text)
expected_analysis_report.report_dict = expected_report_dict
expected_analysis_report.time_compiled = 1431978243000000
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_analysis_report))
self.assertIsNotNone(json_string)
analysis_report = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(analysis_report)
self.assertIsInstance(analysis_report, reports.AnalysisReport)
# TODO: preserve the tuples in the report dict.
# TODO: add report_array tests.
expected_analysis_report_dict = {
'plugin_name': 'chrome_extension_test',
'report_dict': expected_report_dict,
'text': expected_report_text,
'time_compiled': 1431978243000000}
analysis_report_dict = analysis_report.CopyToDict()
self.assertEqual(
sorted(analysis_report_dict.items()),
sorted(expected_analysis_report_dict.items()))
# TODO: add ExtractionWarning tests.
def testReadAndWriteSerializedEventData(self):
"""Test ReadSerialized and WriteSerialized of EventData."""
expected_event_data = events.EventData()
expected_event_data.data_type = 'test:event2'
expected_event_data.parser = 'test_parser'
expected_event_data.empty_string = ''
expected_event_data.zero_integer = 0
expected_event_data.integer = 34
expected_event_data.float = -122.082203542683
expected_event_data.string = 'Normal string'
expected_event_data.unicode_string = 'And I am a unicorn.'
expected_event_data.my_list = ['asf', 4234, 2, 54, 'asf']
expected_event_data.a_tuple = ('some item', [234, 52, 15])
expected_event_data.null_value = None
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_event_data))
self.assertIsNotNone(json_string)
event_data = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(event_data)
self.assertIsInstance(event_data, events.EventData)
expected_event_data_dict = {
'a_tuple': ('some item', [234, 52, 15]),
'data_type': 'test:event2',
'empty_string': '',
'integer': 34,
'float': -122.082203542683,
'my_list': ['asf', 4234, 2, 54, 'asf'],
'parser': 'test_parser',
'string': 'Normal string',
'unicode_string': 'And I am a unicorn.',
'zero_integer': 0}
event_data_dict = event_data.CopyToDict()
self.assertEqual(event_data_dict, expected_event_data_dict)
def testReadAndWriteSerializedEventDataStream(self):
"""Test ReadSerialized and WriteSerialized of EventDataStream."""
test_file = self._GetTestFilePath(['ímynd.dd'])
volume_path_spec = path_spec_factory.Factory.NewPathSpec(
dfvfs_definitions.TYPE_INDICATOR_OS, location=test_file)
path_spec = path_spec_factory.Factory.NewPathSpec(
dfvfs_definitions.TYPE_INDICATOR_TSK, location='/',
parent=volume_path_spec)
expected_event_data_stream = events.EventDataStream()
expected_event_data_stream.md5_hash = 'e3df0d2abd2c27fbdadfb41a47442520'
expected_event_data_stream.path_spec = path_spec
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_event_data_stream))
self.assertIsNotNone(json_string)
event_data_stream = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(event_data_stream)
self.assertIsInstance(event_data_stream, events.EventDataStream)
expected_event_data_stream_dict = {
'md5_hash': 'e3df0d2abd2c27fbdadfb41a47442520',
'path_spec': path_spec.comparable}
event_data_stream_dict = event_data_stream.CopyToDict()
path_spec = event_data_stream_dict.get('path_spec', None)
if path_spec:
event_data_stream_dict['path_spec'] = path_spec.comparable
self.assertEqual(event_data_stream_dict, expected_event_data_stream_dict)
def testReadAndWriteSerializedEventObject(self):
"""Test ReadSerialized and WriteSerialized of EventObject."""
expected_event = events.EventObject()
expected_event.parser = 'test_parser'
expected_event.timestamp = 1234124
expected_event.timestamp_desc = 'Written'
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_event))
self.assertIsNotNone(json_string)
event = json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string)
self.assertIsNotNone(event)
self.assertIsInstance(event, events.EventObject)
expected_event_dict = {
'parser': 'test_parser',
'timestamp': 1234124,
'timestamp_desc': 'Written'}
event_dict = event.CopyToDict()
self.assertEqual(event_dict, expected_event_dict)
def testReadAndWriteSerializedEventSource(self):
"""Test ReadSerialized and WriteSerialized of EventSource."""
test_path_spec = fake_path_spec.FakePathSpec(location='/opt/plaso.txt')
expected_event_source = event_sources.EventSource(path_spec=test_path_spec)
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_event_source))
self.assertIsNotNone(json_string)
event_source = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(event_source)
self.assertIsInstance(event_source, event_sources.EventSource)
expected_event_source_dict = {
'path_spec': test_path_spec.comparable,
}
event_source_dict = event_source.CopyToDict()
path_spec = event_source_dict.get('path_spec', None)
if path_spec:
event_source_dict['path_spec'] = path_spec.comparable
self.assertEqual(
sorted(event_source_dict.items()),
sorted(expected_event_source_dict.items()))
def testReadAndWriteSerializedEventTag(self):
"""Test ReadSerialized and WriteSerialized of EventTag."""
expected_event_tag = events.EventTag()
expected_event_tag.AddLabels(['Malware', 'Common'])
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_event_tag))
self.assertIsNotNone(json_string)
event_tag = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(event_tag)
self.assertIsInstance(event_tag, events.EventTag)
expected_event_tag_dict = {
'labels': ['Malware', 'Common'],
}
event_tag_dict = event_tag.CopyToDict()
self.assertEqual(
sorted(event_tag_dict.items()),
sorted(expected_event_tag_dict.items()))
def testReadAndWriteSerializedSession(self):
"""Test ReadSerialized and WriteSerialized of Session."""
parsers_counter = collections.Counter()
parsers_counter['filestat'] = 3
parsers_counter['total'] = 3
expected_session = sessions.Session()
expected_session.product_name = 'plaso'
expected_session.product_version = plaso.__version__
expected_session.parsers_counter = parsers_counter
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_session))
self.assertIsNotNone(json_string)
session = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(session)
self.assertIsInstance(session, sessions.Session)
expected_session_dict = {
'aborted': False,
'analysis_reports_counter': session.analysis_reports_counter,
'debug_mode': False,
'event_labels_counter': session.event_labels_counter,
'identifier': session.identifier,
'parsers_counter': parsers_counter,
'preferred_encoding': 'utf-8',
'preferred_time_zone': 'UTC',
'product_name': 'plaso',
'product_version': plaso.__version__,
'start_time': session.start_time
}
session_dict = session.CopyToDict()
self.assertEqual(
sorted(session_dict.items()), sorted(expected_session_dict.items()))
def testReadAndWriteSerializedSessionCompletion(self):
"""Test ReadSerialized and WriteSerialized of SessionCompletion."""
timestamp = int(time.time() * 1000000)
session_identifier = '{0:s}'.format(uuid.uuid4().hex)
parsers_counter = collections.Counter()
parsers_counter['filestat'] = 3
parsers_counter['total'] = 3
expected_session_completion = sessions.SessionCompletion(
identifier=session_identifier)
expected_session_completion.timestamp = timestamp
expected_session_completion.parsers_counter = parsers_counter
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_session_completion))
self.assertIsNotNone(json_string)
session_completion = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(session_completion)
self.assertIsInstance(session_completion, sessions.SessionCompletion)
expected_session_completion_dict = {
'aborted': False,
'identifier': session_identifier,
'parsers_counter': parsers_counter,
'timestamp': timestamp
}
session_completion_dict = session_completion.CopyToDict()
self.assertEqual(
sorted(session_completion_dict.items()),
sorted(expected_session_completion_dict.items()))
def testReadAndWriteSerializedSessionStart(self):
"""Test ReadSerialized and WriteSerialized of SessionStart."""
timestamp = int(time.time() * 1000000)
session_identifier = '{0:s}'.format(uuid.uuid4().hex)
expected_session_start = sessions.SessionStart(
identifier=session_identifier)
expected_session_start.timestamp = timestamp
expected_session_start.product_name = 'plaso'
expected_session_start.product_version = plaso.__version__
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_session_start))
self.assertIsNotNone(json_string)
session_start = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(session_start)
self.assertIsInstance(session_start, sessions.SessionStart)
expected_session_start_dict = {
'identifier': session_identifier,
'product_name': 'plaso',
'product_version': plaso.__version__,
'timestamp': timestamp
}
session_start_dict = session_start.CopyToDict()
self.assertEqual(
sorted(session_start_dict.items()),
sorted(expected_session_start_dict.items()))
def testReadAndWriteSerializedTask(self):
"""Test ReadSerialized and WriteSerialized of Task."""
session_identifier = '{0:s}'.format(uuid.uuid4().hex)
expected_task = tasks.Task(session_identifier=session_identifier)
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_task))
self.assertIsNotNone(json_string)
task = json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string)
self.assertIsNotNone(task)
self.assertIsInstance(task, tasks.Task)
expected_task_dict = {
'aborted': False,
'has_retry': False,
'identifier': task.identifier,
'session_identifier': session_identifier,
'start_time': task.start_time
}
task_dict = task.CopyToDict()
self.assertEqual(
sorted(task_dict.items()), sorted(expected_task_dict.items()))
def testReadAndWriteSerializedTaskCompletion(self):
"""Test ReadSerialized and WriteSerialized of TaskCompletion."""
timestamp = int(time.time() * 1000000)
session_identifier = '{0:s}'.format(uuid.uuid4().hex)
task_identifier = '{0:s}'.format(uuid.uuid4().hex)
expected_task_completion = tasks.TaskCompletion(
identifier=task_identifier, session_identifier=session_identifier)
expected_task_completion.timestamp = timestamp
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_task_completion))
self.assertIsNotNone(json_string)
task_completion = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(task_completion)
self.assertIsInstance(task_completion, tasks.TaskCompletion)
expected_task_completion_dict = {
'aborted': False,
'identifier': task_identifier,
'session_identifier': session_identifier,
'timestamp': timestamp
}
task_completion_dict = task_completion.CopyToDict()
self.assertEqual(
sorted(task_completion_dict.items()),
sorted(expected_task_completion_dict.items()))
def testReadAndWriteSerializedTaskStart(self):
"""Test ReadSerialized and WriteSerialized of TaskStart."""
timestamp = int(time.time() * 1000000)
session_identifier = '{0:s}'.format(uuid.uuid4().hex)
task_identifier = '{0:s}'.format(uuid.uuid4().hex)
expected_task_start = tasks.TaskStart(
identifier=task_identifier, session_identifier=session_identifier)
expected_task_start.timestamp = timestamp
json_string = (
json_serializer.JSONAttributeContainerSerializer.WriteSerialized(
expected_task_start))
self.assertIsNotNone(json_string)
task_start = (
json_serializer.JSONAttributeContainerSerializer.ReadSerialized(
json_string))
self.assertIsNotNone(task_start)
self.assertIsInstance(task_start, tasks.TaskStart)
expected_task_start_dict = {
'identifier': task_identifier,
'session_identifier': session_identifier,
'timestamp': timestamp
}
task_start_dict = task_start.CopyToDict()
self.assertEqual(
sorted(task_start_dict.items()),
sorted(expected_task_start_dict.items()))
if __name__ == '__main__':
unittest.main()
|