##// END OF EJS Templates
Moved signatures block to the model block. All the signed content is in the 'content' block now. Removed edit time, previous and next posts links from the XML sync output because they can be computed from the post itself and can be changed locally for foreign posts (which breaks the signature)
Moved signatures block to the model block. All the signed content is in the 'content' block now. Removed edit time, previous and next posts links from the XML sync output because they can be computed from the post itself and can be changed locally for foreign posts (which breaks the signature)

File last commit:

r838:2b96b9e7 decentral
r838:2b96b9e7 decentral
Show More
test_sync.py
47 lines | 1.5 KiB | text/x-python | PythonLexer
from boards.models import KeyPair, Post
from boards.tests.mocks import MockRequest
from boards.views.sync import respond_get
__author__ = 'neko259'
from django.test import TestCase
class SyncTest(TestCase):
def test_get(self):
"""
Forms a GET request of a post and checks the response.
"""
KeyPair.objects.generate_key(primary=True)
post = Post.objects.create_post(title='test_title', text='test_text')
request = MockRequest()
request.POST['xml'] = (
'<request type="get" version="1.0">'
'<model name="post" version="1.0">'
'<id key="%s" local-id="%d" type="%s" />'
'</model>'
'</request>' % (post.global_id.key,
post.id,
post.global_id.key_type)
)
self.assertTrue(
'<status>success</status>'
'<models>'
'<model name="post">'
'<content>'
'<id key="%s" local-id="%d" type="%s" />'
'<title>%s</title>'
'<text>%s</text>'
'<pub-time>%d</pub-time>'
'</content>' % (
post.global_id.key,
post.id,
post.global_id.key_type,
post.title,
post.text.raw,
post.get_pub_time_epoch(),
) in respond_get(request).content.decode(),
'Wrong response generated for the GET request.')