thingy_objects
Marnanel Thurman 2018-09-05 23:09:11 +01:00
rodzic f2b8c6b7c8
commit 3da527d639
2 zmienionych plików z 193 dodań i 4 usunięć

Wyświetl plik

@ -61,9 +61,6 @@ class ActivityObjectView(django.views.View):
class CollectionView(ActivityObjectView):
class Meta:
abstract = True
def get(self, request, *args, **kwargs):
items = self.get_collection_items(*args, **kwargs)
@ -113,7 +110,7 @@ class CollectionView(ActivityObjectView):
return self._render(result)
def get_collection_items(self, *args, **kwargs):
return RuntimeError("not in the superclass")
return kwargs['items']
def _stringify_object(self, obj):
return str(obj)

Wyświetl plik

@ -0,0 +1,192 @@
from django.test import TestCase, Client
from django_kepi.models import Actor, Following
from things_for_testing.models import ThingUser
from things_for_testing.views import ThingUserCollection
import datetime
import json
EXAMPLE_SERVER = 'http://testserver'
JSON_TYPE = 'application/activity+json'
PAGE_LENGTH = 50
class ResponseTests(TestCase):
# We are checking:
# - TombstoneException (may as well test it here)
# - response(various objects)
# - response(thing that throws Tombstone)
# - default CollectionResponse, passing in items
# - specialised CollectionResponses with overridden _transform_item
################ unfixed below this line
def check_collection(self,
path,
expectedTotalItems):
c = Client(
HTTP_ACCEPT = JSON_TYPE,
)
response = c.get(path)
if response.status_code!=200:
raise RuntimeError(response.content)
self.assertEqual(response['Content-Type'], JSON_TYPE)
result = json.loads(response.content.decode(encoding='UTF-8'))
for field in [
'@context',
'id',
'totalItems',
'type',
]:
self.assertIn(field, result)
if expectedTotalItems==0:
self.assertNotIn('first', result)
else:
self.assertIn('first', result)
self.assertEqual(result['first'], EXAMPLE_SERVER+path+'?page=1')
self.assertEqual(result['id'], EXAMPLE_SERVER+path)
self.assertEqual(result['totalItems'], expectedTotalItems)
self.assertEqual(result['type'], 'OrderedCollection')
def check_collection_page(self,
path,
page_number,
expectedTotalItems,
expectedOnPage,
):
def full_path(page):
if page is None:
query = ''
else:
query = '?page={}'.format(page)
return EXAMPLE_SERVER + path + query
c = Client(
HTTP_ACCEPT = JSON_TYPE,
)
response = c.get(full_path(page_number))
if response['Content-Type']=='text/html':
# let's just give up here so they have a chance
# of figuring out the error message from the server.
raise RuntimeError(response.content)
self.assertEqual(response['Content-Type'], JSON_TYPE)
result = json.loads(response.content.decode(encoding='UTF-8'))
for field in [
'@context',
'id',
'totalItems',
'type',
'partOf',
]:
self.assertIn(field, result)
self.assertEqual(result['id'], full_path(page_number))
self.assertEqual(result['totalItems'], expectedTotalItems)
self.assertEqual(result['type'], 'OrderedCollectionPage')
self.assertEqual(result['orderedItems'], expectedOnPage)
self.assertEqual(result['partOf'], full_path(None))
if page_number!=1:
self.assertIn('prev', result)
self.assertEqual(result['prev'], full_path(page_number-1))
else:
self.assertNotIn('prev', result)
if (page_number-1)<int((expectedTotalItems-1)/PAGE_LENGTH):
self.assertIn('next', result)
self.assertEqual(result['next'], full_path(page_number+1))
else:
self.assertNotIn('next', result)
def test_usageByOtherApps(self):
PATH = '/thing-users'
EXPECTED_SERIALIZATION = [
{'id': 'https://example.com/user/alice', 'name': 'alice', 'type': 'Person',
'favourite_colour': 'red'},
{'id': 'https://example.com/user/bob', 'name': 'bob', 'type': 'Person',
'favourite_colour': 'green'},
{'id': 'https://example.com/user/carol', 'name': 'carol', 'type': 'Person',
'favourite_colour': 'blue'},
]
users = [
ThingUser(name='alice', favourite_colour='red'),
ThingUser(name='bob', favourite_colour='green'),
ThingUser(name='carol', favourite_colour='blue'),
]
for user in users:
user.save()
self.check_collection(
path=PATH,
expectedTotalItems=len(users),
)
self.check_collection_page(
path=PATH,
page_number=1,
expectedTotalItems=len(users),
expectedOnPage=EXPECTED_SERIALIZATION,
)
def test_followers_and_following(self):
people = {}
for name in ['alice', 'bob', 'carol']:
people[name] = ThingUser(name=name)
people[name].save()
reln = Following(
follower = people[name].actor,
following = people['alice'].actor,
)
reln.save()
path = '/users/alice/followers'
self.check_collection(
path=path,
expectedTotalItems=3,
)
self.check_collection_page(
path=path,
page_number=1,
expectedTotalItems=3,
expectedOnPage=['alice', 'bob', 'carol'],
)
for name in ['alice', 'bob', 'carol']:
path='/users/{}/following'.format(name)
self.check_collection(
path=path,
expectedTotalItems=1,
)
self.check_collection_page(
path=path,
page_number=1,
expectedTotalItems=1,
expectedOnPage=['alice'],
)