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
|
# Copyright (c) 2012 Canonical Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
__metaclass__ = type
import datetime
import os
from tempfile import _RandomNameSequence
import time
import unittest
from dateutil.tz import (
tzoffset,
tzutc,
)
from pycassa.util import convert_uuid_to_time
from grackle.model import (
CassandraConnection,
_parse_message,
)
TEMPLATE_MESSAGE = """\
From: sysadmin@example.com
To: developer@example.com
Subject: Everything is broken
Date: {date}
Message-Id: {id}
Help, everything has just broken.
"""
TEST_MESSAGE = TEMPLATE_MESSAGE.format(
date='Sat, 1 Jan 2000 11:02:34 +1100',
id='<aaaaaaaaaaaaa@example.com>')
class TestParseMessage(unittest.TestCase):
def test_works(self):
# _parse_message extracts interesting fields. It also parses the
# date and returns it separately.
date, msg = _parse_message(TEST_MESSAGE)
self.assertEqual('sysadmin@example.com', msg['from'])
self.assertEqual('developer@example.com', msg['to'])
self.assertEqual('Everything is broken', msg['subject'])
self.assertEqual('2000-01-01T11:02:34+11:00', msg['date'])
self.assertEqual('<aaaaaaaaaaaaa@example.com>', msg['message-id'])
self.assertEqual(
datetime.datetime(
2000, 1, 1, 11, 2, 34, tzinfo=tzoffset('', 39600)),
date)
class TestAddMessage(unittest.TestCase):
def test_add_message(self):
c = CassandraConnection(
os.environ['GRACKLE_TEST_KEYSPACE'], ['localhost:9160'])
archive = next(_RandomNameSequence())
# Write the message out to Cassandra, and read it back in.
key = c.add_message(archive, TEST_MESSAGE)
cmsg = c.messages.get(key)
# The archive should contain a single message, a reference to
# our new key.
archive_messages = c.archive_messages.get(archive).items()
self.assertEqual(1, len(archive_messages))
self.assertEqual(key, archive_messages[0][1])
# The key in archive_message is a TimeUUID for the Date field in
# the message.
utctime = time.mktime(datetime.datetime(
2000, 1, 1, 0, 2, 34, tzinfo=tzutc()).timetuple())
self.assertEqual(
utctime,
convert_uuid_to_time(archive_messages[0][0]))
# The stored message contains the full original text of the
# message, as well as interesting fields parsed out.
self.assertEqual(TEST_MESSAGE, cmsg['content'])
parsed_message = _parse_message(TEST_MESSAGE)[1]
for key, value in parsed_message.iteritems():
self.assertEqual(value, cmsg[key])
|