isso/specs/test_comment.py

118 lines
3.7 KiB
Python
Raw Normal View History

import urllib
import tempfile
import unittest
from werkzeug.test import Client
from werkzeug.wrappers import Response
from isso import Isso, json
from isso.models import Comment
def comment(**kw):
return Comment.fromjson(json.dumps(kw))
class TestComments(unittest.TestCase):
def setUp(self):
fd, self.path = tempfile.mkstemp()
2012-10-21 07:51:32 +00:00
self.app = Isso({'SQLITE': self.path, 'PRODUCTION': False,
'MARKUP': 'isso.markup.Markup'})
2012-10-17 20:20:02 +00:00
self.client = Client(self.app, Response)
self.get = lambda *x, **z: self.client.get(*x, **z)
self.put = lambda *x, **z: self.client.put(*x, **z)
self.post = lambda *x, **z: self.client.post(*x, **z)
self.delete = lambda *x, **z: self.client.delete(*x, **z)
def testGet(self):
self.post('/comment/path/new', data=json.dumps(comment(text='Lorem ipsum ...')))
r = self.get('/comment/path/1')
assert r.status_code == 200
rv = json.loads(r.data)
assert rv['id'] == 1
assert rv['text'] == 'Lorem ipsum ...'
def testCreate(self):
rv = self.post('/comment/path/new', data=json.dumps(comment(text='Lorem ipsum ...')))
assert rv.status_code == 201
2012-10-17 20:20:02 +00:00
assert len(filter(lambda header: header[0] == 'Set-Cookie', rv.headers)) == 1
c = Comment.fromjson(rv.data)
assert not c.pending
assert not c.deleted
assert c.text == 'Lorem ipsum ...'
def testCreateAndGetMultiple(self):
for i in range(20):
self.post('/comment/path/new', data=json.dumps(comment(text='Spam')))
r = self.get('/comment/path/')
assert r.status_code == 200
rv = json.loads(r.data)
assert len(rv) == 20
2012-10-16 20:56:21 +00:00
def testGetInvalid(self):
assert self.get('/comment/path/123').status_code == 404
assert self.get('/comment/path/spam/123').status_code == 404
2012-10-16 20:56:21 +00:00
assert self.get('/comment/foo/').status_code == 404
2012-10-17 09:06:26 +00:00
def testUpdate(self):
self.post('/comment/path/new', data=json.dumps(comment(text='Lorem ipsum ...')))
self.put('/comment/path/1', data=json.dumps(comment(
text='Hello World', author='me', website='http://example.com/')))
r = self.get('/comment/path/1')
assert r.status_code == 200
rv = json.loads(r.data)
assert rv['text'] == 'Hello World'
assert rv['author'] == 'me'
assert rv['website'] == 'http://example.com/'
assert 'modified' in rv
def testDelete(self):
self.post('/comment/path/new', data=json.dumps(comment(text='Lorem ipsum ...')))
2012-10-17 10:22:52 +00:00
r = self.delete('/comment/path/1')
assert r.status_code == 200
assert json.loads(r.data) == None
assert self.get('/comment/path/1').status_code == 404
2012-10-17 09:06:26 +00:00
def testDeleteWithReference(self):
2012-10-17 20:20:02 +00:00
client = Client(self.app, Response)
resp = client.post('/comment/path/new', data=json.dumps(comment(text='First')))
self.post('/comment/path/new', data=json.dumps(comment(text='Second', parent=1)))
2012-10-17 09:06:26 +00:00
2012-10-17 20:20:02 +00:00
r = client.delete('/comment/path/1')
assert r.status_code == 200
assert Comment(**json.loads(r.data)).deleted
2012-10-17 10:22:52 +00:00
assert self.get('/comment/path/1').status_code == 200
assert self.get('/comment/path/2').status_code == 200
def testPathVariations(self):
paths = ['/sub/path/', '/path.html', '/sub/path.html', '%2Fpath/%2F']
for path in paths:
assert self.post('/comment/' + path + '/new',
data=json.dumps(comment(text='...'))).status_code == 201
for path in paths:
assert self.get('/comment/' + path)
assert self.get('/comment/' + path + '/1')