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

13 by William Grant
Test add_message a little.
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
18 by William Grant
Betterer tests.
19
import datetime
20 by William Grant
Creating a keyspace and schema for each test (or even test run) is too slow -- it takes about 2s. Instead use a random archivename.
20
import os
21
from tempfile import _RandomNameSequence
18 by William Grant
Betterer tests.
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
13 by William Grant
Test add_message a little.
30
21 by William Grant
Merge grackle.server into grackle. Alter Makefile to run all the tests.
31
from grackle.model import (
18 by William Grant
Betterer tests.
32
    CassandraConnection,
33
    _parse_message,
34
    )
13 by William Grant
Test add_message a little.
35
36
22 by William Grant
Template messages yay.
37
TEMPLATE_MESSAGE = """\
13 by William Grant
Test add_message a little.
38
From: sysadmin@example.com
39
To: developer@example.com
40
Subject: Everything is broken
22 by William Grant
Template messages yay.
41
Date: {date}
42
Message-Id: {id}
13 by William Grant
Test add_message a little.
43
44
Help, everything has just broken.
45
"""
46
22 by William Grant
Template messages yay.
47
TEST_MESSAGE = TEMPLATE_MESSAGE.format(
48
    date='Sat, 1 Jan 2000 11:02:34 +1100',
49
    id='<aaaaaaaaaaaaa@example.com>')
50
13 by William Grant
Test add_message a little.
51
18 by William Grant
Betterer tests.
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
22 by William Grant
Template messages yay.
69
class TestAddMessage(unittest.TestCase):
18 by William Grant
Betterer tests.
70
71
    def test_add_message(self):
20 by William Grant
Creating a keyspace and schema for each test (or even test run) is too slow -- it takes about 2s. Instead use a random archivename.
72
        c = CassandraConnection(
73
            os.environ['GRACKLE_TEST_KEYSPACE'], ['localhost:9160'])
74
        archive = next(_RandomNameSequence())
18 by William Grant
Betterer tests.
75
76
        # Write the message out to Cassandra, and read it back in.
20 by William Grant
Creating a keyspace and schema for each test (or even test run) is too slow -- it takes about 2s. Instead use a random archivename.
77
        key = c.add_message(archive, TEST_MESSAGE)
13 by William Grant
Test add_message a little.
78
        cmsg = c.messages.get(key)
18 by William Grant
Betterer tests.
79
80
        # The archive should contain a single message, a reference to
81
        # our new key.
20 by William Grant
Creating a keyspace and schema for each test (or even test run) is too slow -- it takes about 2s. Instead use a random archivename.
82
        archive_messages = c.archive_messages.get(archive).items()
18 by William Grant
Betterer tests.
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.
13 by William Grant
Test add_message a little.
96
        self.assertEqual(TEST_MESSAGE, cmsg['content'])
18 by William Grant
Betterer tests.
97
        parsed_message = _parse_message(TEST_MESSAGE)[1]
98
        for key, value in parsed_message.iteritems():
99
            self.assertEqual(value, cmsg[key])