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
|
from BaseHTTPServer import (
HTTPServer,
BaseHTTPRequestHandler,
)
import httplib
import os
from signal import SIGKILL
from StringIO import StringIO
from unittest import TestCase
from testtools import ExpectedException
from grackle import client
class Forked:
def __init__(self, func_or_method):
self.func_or_method = func_or_method
self.pid = None
def __enter__(self):
pid = os.fork()
if pid != 0:
self.pid = pid
return
self.func_or_method()
def __exit__(self, exc_type, exc_val, traceback):
os.kill(self.pid, SIGKILL)
class FakeGrackleRequestHandler(BaseHTTPRequestHandler):
def do_POST(self):
message = self.rfile.read(int(self.headers['content-length']))
if message == 'This is a message':
self.send_response(httplib.CREATED)
self.end_headers()
self.wfile.close()
else:
self.send_error(httplib.BAD_REQUEST)
def run_service():
service = HTTPServer(('', 8435), FakeGrackleRequestHandler)
service.serve_forever()
class TestPutMessage(TestCase):
def test_put_message(self):
with Forked(run_service):
client.put_message('arch1', StringIO('This is a message'))
with ExpectedException(Exception, 'wtf'):
client.put_message('arch1', StringIO('This is not a message'))
|