~unity-2d-team/unity-2d/Shell-MultiMonitor

« back to all changes in this revision

Viewing changes to grackle/tests/test_model.py

  • Committer: Aaron Bentley
  • Date: 2012-01-10 10:46:26 UTC
  • Revision ID: aaron@canonical.com-20120110104626-39ehw9nhnzdzggtw
Add README and LICENSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2012 Canonical Ltd
2
 
#
3
 
# This program is free software: you can redistribute it and/or modify
4
 
# it under the terms of the GNU Affero General Public License as published by
5
 
# the Free Software Foundation, either version 3 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU Affero General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU Affero General Public
14
 
# License along with this program. If not, see
15
 
# <http://www.gnu.org/licenses/>.
16
 
 
17
 
__metaclass__ = type
18
 
 
19
 
import datetime
20
 
import os
21
 
from tempfile import _RandomNameSequence
22
 
import time
23
 
import unittest
24
 
 
25
 
from dateutil.tz import (
26
 
    tzoffset,
27
 
    tzutc,
28
 
    )
29
 
from pycassa.util import convert_uuid_to_time
30
 
 
31
 
from grackle.model import (
32
 
    CassandraConnection,
33
 
    _parse_message,
34
 
    )
35
 
 
36
 
 
37
 
TEMPLATE_MESSAGE = """\
38
 
From: sysadmin@example.com
39
 
To: developer@example.com
40
 
Subject: Everything is broken
41
 
Date: {date}
42
 
Message-Id: {id}
43
 
 
44
 
Help, everything has just broken.
45
 
"""
46
 
 
47
 
TEST_MESSAGE = TEMPLATE_MESSAGE.format(
48
 
    date='Sat, 1 Jan 2000 11:02:34 +1100',
49
 
    id='<aaaaaaaaaaaaa@example.com>')
50
 
 
51
 
 
52
 
class TestParseMessage(unittest.TestCase):
53
 
 
54
 
    def test_works(self):
55
 
        # _parse_message extracts interesting fields. It also parses the
56
 
        # date and returns it separately.
57
 
        date, msg = _parse_message(TEST_MESSAGE)
58
 
        self.assertEqual('sysadmin@example.com', msg['from'])
59
 
        self.assertEqual('developer@example.com', msg['to'])
60
 
        self.assertEqual('Everything is broken', msg['subject'])
61
 
        self.assertEqual('2000-01-01T11:02:34+11:00', msg['date'])
62
 
        self.assertEqual('<aaaaaaaaaaaaa@example.com>', msg['message-id'])
63
 
        self.assertEqual(
64
 
            datetime.datetime(
65
 
                2000, 1, 1, 11, 2, 34, tzinfo=tzoffset('', 39600)),
66
 
            date)
67
 
 
68
 
 
69
 
class TestAddMessage(unittest.TestCase):
70
 
 
71
 
    def test_add_message(self):
72
 
        c = CassandraConnection(
73
 
            os.environ['GRACKLE_TEST_KEYSPACE'], ['localhost:9160'])
74
 
        archive = next(_RandomNameSequence())
75
 
 
76
 
        # Write the message out to Cassandra, and read it back in.
77
 
        key = c.add_message(archive, TEST_MESSAGE)
78
 
        cmsg = c.messages.get(key)
79
 
 
80
 
        # The archive should contain a single message, a reference to
81
 
        # our new key.
82
 
        archive_messages = c.archive_messages.get(archive).items()
83
 
        self.assertEqual(1, len(archive_messages))
84
 
        self.assertEqual(key, archive_messages[0][1])
85
 
 
86
 
        # The key in archive_message is a TimeUUID for the Date field in
87
 
        # the message.
88
 
        utctime = time.mktime(datetime.datetime(
89
 
            2000, 1, 1, 0, 2, 34, tzinfo=tzutc()).timetuple())
90
 
        self.assertEqual(
91
 
            utctime,
92
 
            convert_uuid_to_time(archive_messages[0][0]))
93
 
 
94
 
        # The stored message contains the full original text of the
95
 
        # message, as well as interesting fields parsed out.
96
 
        self.assertEqual(TEST_MESSAGE, cmsg['content'])
97
 
        parsed_message = _parse_message(TEST_MESSAGE)[1]
98
 
        for key, value in parsed_message.iteritems():
99
 
            self.assertEqual(value, cmsg[key])