##// END OF EJS Templates
Fixed API related tests
Fixed API related tests

File last commit:

r936:ff78113e decentral
r1175:3d7a615a decentral
Show More
test_keys.py
87 lines | 3.2 KiB | text/x-python | PythonLexer
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 from base64 import b64encode
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 import logging
neko259
Merged with default branch (tests split)
r822 from django.test import TestCase
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 from boards.models import KeyPair, GlobalId, Post
logger = logging.getLogger(__name__)
neko259
Merged with default branch (tests split)
r822
class KeyTest(TestCase):
def test_create_key(self):
key = KeyPair.objects.generate_key('ecdsa')
self.assertIsNotNone(key, 'The key was not created.')
def test_validation(self):
key = KeyPair.objects.generate_key(key_type='ecdsa')
message = 'msg'
signature = key.sign(message)
valid = KeyPair.objects.verify(key.public_key, message, signature,
key_type='ecdsa')
self.assertTrue(valid, 'Message verification failed.')
def test_primary_constraint(self):
KeyPair.objects.generate_key(key_type='ecdsa', primary=True)
neko259
Fixed posting without a primary key defined. Use more proper way to assert an exception
r835 with self.assertRaises(Exception):
neko259
Merged with default branch (tests split)
r822 KeyPair.objects.generate_key(key_type='ecdsa', primary=True)
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 def test_model_id_save(self):
neko259
Merged with default branch (tests split)
r822 model_id = GlobalId(key_type='test', key='test key', local_id='1')
model_id.save()
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 def test_request_get(self):
post = self._create_post_with_key()
neko259
Added test for reflinks. Added management command to get posts from other node...
r841 request = GlobalId.objects.generate_request_get([post.global_id])
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 logger.debug(request)
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 key = KeyPair.objects.get(primary=True)
neko259
Added more parameters to the post xml output
r828 self.assertTrue('<request type="get" version="1.0">'
'<model name="post" version="1.0">'
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 '<id key="%s" local-id="1" type="%s" />'
neko259
Added more parameters to the post xml output
r828 '</model>'
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 '</request>' % (
key.public_key,
key.key_type,
) in request,
neko259
Merged with default branch (tests split)
r822 'Wrong XML generated for the GET request.')
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827
def test_response_get(self):
post = self._create_post_with_key()
neko259
Added next id list, previous id list and thread to the post XML output
r829 reply_post = Post.objects.create_post(title='test_title',
neko259
Fixed posting without a primary key defined. Use more proper way to assert an exception
r835 text='[post]%d[/post]' % post.id,
thread=post.get_thread())
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827
neko259
Added next id list, previous id list and thread to the post XML output
r829 response = Post.objects.generate_response_get([reply_post])
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 logger.debug(response)
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 key = KeyPair.objects.get(primary=True)
self.assertTrue('<status>success</status>'
neko259
Added more parameters to the post xml output
r828 '<models>'
neko259
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)
r838 '<model name="post">'
'<content>'
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 '<id key="%s" local-id="%d" type="%s" />'
neko259
Added more parameters to the post xml output
r828 '<title>test_title</title>'
neko259
Added next id list, previous id list and thread to the post XML output
r829 '<text>[post]%d[/post]</text>'
neko259
Use global thread ID instead of local one.
r936 '<thread><id key="%s" local-id="%d" type="%s" /></thread>'
neko259
Added more parameters to the post xml output
r828 '<pub-time>%s</pub-time>'
neko259
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)
r838 '</content>' % (
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 key.public_key,
neko259
Added next id list, previous id list and thread to the post XML output
r829 reply_post.id,
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 key.key_type,
neko259
Added next id list, previous id list and thread to the post XML output
r829 post.id,
neko259
Use global thread ID instead of local one.
r936 key.public_key,
neko259
Added next id list, previous id list and thread to the post XML output
r829 post.id,
neko259
Use global thread ID instead of local one.
r936 key.key_type,
neko259
Added next id list, previous id list and thread to the post XML output
r829 str(reply_post.get_pub_time_epoch()),
neko259
Added more parameters to the post xml output
r828 ) in response,
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 'Wrong XML generated for the GET response.')
def _create_post_with_key(self):
neko259
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
r837 KeyPair.objects.generate_key(primary=True)
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827
return Post.objects.create_post(title='test_title', text='test_text')