~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/tests/test_client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 22:45:15 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317224515-r2n23tqc8cx7cul4
Only store the unique information needed by grackle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from BaseHTTPServer import (
2
 
    HTTPServer,
3
 
    BaseHTTPRequestHandler,
4
 
    )
 
1
__metaclass__ = type
 
2
 
5
3
from email.message import Message
6
4
from email.mime.multipart import MIMEMultipart
7
5
from email.mime.text import MIMEText
8
 
import httplib
9
 
import logging
10
 
import os
11
 
from signal import SIGKILL
12
 
import simplejson
13
6
from StringIO import StringIO
14
 
import sys
15
7
from unittest import TestCase
16
 
from urlparse import urlparse
17
8
 
18
9
from testtools import ExpectedException
19
10
 
20
 
from grackle.client import (
21
 
    GrackleClient,
 
11
from grackle.client import GrackleClient
 
12
from grackle.error import (
 
13
    ArchiveIdExists,
22
14
    UnparsableDateRange,
23
15
    UnsupportedDisplayType,
24
16
    UnsupportedOrder,
25
17
    )
26
 
from grackle.store import (
27
 
    make_json_message,
28
 
    MemoryStore,
29
 
    )
 
18
from grackle.service import ForkedFakeService
 
19
from grackle.store import make_json_message
30
20
 
31
21
 
32
22
def make_message(message_id, body='body', headers=None, hidden=False):
60
50
    return make_message(message_id, parts.as_string(), headers, hidden)
61
51
 
62
52
 
63
 
class ForkedFakeService:
64
 
    """A Grackle service fake, as a ContextManager."""
65
 
 
66
 
    def __init__(self, port, message_archives=None, write_logs=False):
67
 
        """Constructor.
68
 
 
69
 
        :param port: The tcp port to use.
70
 
        :param message_archives: A dict of lists of dicts representing
71
 
            archives of messages. The outer dict represents the archive,
72
 
            the list represents the list of messages for that archive.
73
 
        :param write_logs: If true, log messages will be written to stdout.
74
 
        """
75
 
        self.pid = None
76
 
        self.port = port
77
 
        if message_archives is None:
78
 
            self.message_archives = {}
79
 
        else:
80
 
            self.message_archives = message_archives
81
 
        self.read_end, self.write_end = os.pipe()
82
 
        self.write_logs = write_logs
83
 
 
84
 
    @staticmethod
85
 
    def from_client(client, message_archives=None):
86
 
        """Instantiate a ForkedFakeService from the client.
87
 
 
88
 
        :param port: The client to provide service for.
89
 
        :param message_archives: A dict of lists of dicts representing
90
 
            archives of messages. The outer dict represents the archive,
91
 
            the list represents the list of messages for that archive.
92
 
        """
93
 
        return ForkedFakeService(client.port, message_archives)
94
 
 
95
 
    def is_ready(self):
96
 
        """Tell the parent process that the server is ready for writes."""
97
 
        os.write(self.write_end, 'asdf')
98
 
 
99
 
    def __enter__(self):
100
 
        """Run the service.
101
 
 
102
 
        Fork and start a server in the child.  Return when the server is ready
103
 
        for use."""
104
 
        pid = os.fork()
105
 
        if pid == 0:
106
 
            self.start_server()
107
 
        self.pid = pid
108
 
        os.read(self.read_end, 1)
109
 
        return
110
 
 
111
 
    def start_server(self):
112
 
        """Start the HTTP server."""
113
 
        service = HTTPServer(('', self.port), FakeGrackleRequestHandler)
114
 
        service.store = MemoryStore(self.message_archives)
115
 
        for archive_id, messages in service.store.message_archives.iteritems():
116
 
            for message in messages:
117
 
                message.setdefault('headers', {})
118
 
        self.is_ready()
119
 
        if self.write_logs:
120
 
            logging.basicConfig(
121
 
                stream=sys.stderr, level=logging.INFO)
122
 
        service.serve_forever()
123
 
 
124
 
    def __exit__(self, exc_type, exc_val, traceback):
125
 
        os.kill(self.pid, SIGKILL)
126
 
 
127
 
 
128
 
class FakeGrackleRequestHandler(BaseHTTPRequestHandler):
129
 
    """A request handler that forwards to server.store."""
130
 
 
131
 
    def __init__(self, *args, **kwargs):
132
 
        """Constructor.  Sets up logging."""
133
 
        self.logger = logging.getLogger('http')
134
 
        BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
135
 
 
136
 
    def do_POST(self):
137
 
        """Create a message on POST."""
138
 
        scheme, netloc, path, params, query_string, fragments = (
139
 
            urlparse(self.path))
140
 
        parts = path.split('/')
141
 
        if parts[1] != 'archive':
142
 
            # This is an unknonwn operation?
143
 
            return
144
 
        if 'content-length' in self.headers:
145
 
            operation = 'put_message'
146
 
        else:
147
 
            operation = 'hide_message'
148
 
        if operation == 'put_message':
149
 
            message = self.rfile.read(int(self.headers['content-length']))
150
 
            try:
151
 
                # This expected path is /archive/archive_id/message_id.
152
 
                self.server.store.put_message(parts[2], parts[3], message)
153
 
                self.send_response(httplib.CREATED)
154
 
                self.end_headers()
155
 
                self.wfile.close()
156
 
            except:
157
 
                self.send_error(httplib.BAD_REQUEST)
158
 
        elif operation == 'hide_message':
159
 
            try:
160
 
                # This expected path is /archive/archive_id/message_id.
161
 
                response = self.server.store.hide_message(
162
 
                    parts[2], parts[3], query_string)
163
 
                self.send_response(httplib.OK)
164
 
                self.end_headers()
165
 
                self.wfile.write(simplejson.dumps(response))
166
 
            except:
167
 
                self.send_error(httplib.BAD_REQUEST)
168
 
 
169
 
    def do_GET(self):
170
 
        """Retrieve a list of messages on GET."""
171
 
        scheme, netloc, path, params, query_string, fragments = (
172
 
            urlparse(self.path))
173
 
        parts = path.split('/')
174
 
        if parts[1] == 'archive':
175
 
            try:
176
 
                response = self.server.store.get_messages(
177
 
                    parts[2], query_string)
178
 
                self.send_response(httplib.OK)
179
 
                self.end_headers()
180
 
                self.wfile.write(simplejson.dumps(response))
181
 
            except Exception, error:
182
 
                self.send_response(
183
 
                    httplib.BAD_REQUEST, error.__doc__)
184
 
                return
185
 
 
186
 
    def log_message(self, format, *args):
187
 
        """Override log_message to use standard Python logging."""
188
 
        message = "%s - - [%s] %s\n" % (
189
 
            self.address_string(), self.log_date_time_string(), format % args)
190
 
        self.logger.info(message)
 
53
class TestPutArchive(TestCase):
 
54
 
 
55
    def test_put_archive(self):
 
56
        client = GrackleClient('localhost', 8410)
 
57
        message_archives = {}
 
58
        with ForkedFakeService.from_client(client, message_archives):
 
59
            client.put_archive('arch1')
 
60
            response = client.get_messages('arch1')
 
61
        self.assertEqual(0, len(response['messages']))
 
62
 
 
63
    def test_put_archive_existing_archive(self):
 
64
        client = GrackleClient('localhost', 8411)
 
65
        message_archives = {'arch1': []}
 
66
        with ForkedFakeService.from_client(client, message_archives):
 
67
            with ExpectedException(ArchiveIdExists, ''):
 
68
                client.put_archive('arch1')
191
69
 
192
70
 
193
71
class TestPutMessage(TestCase):