API : ajout des jeux (nom et plateforme)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
from django.contrib.auth.models import User
|
||||
from django.urls import reverse
|
||||
from games.models import Platform
|
||||
from games.models import Game, Platform
|
||||
from rest_framework import status
|
||||
from rest_framework.test import APITestCase, force_authenticate
|
||||
import json
|
||||
@ -42,4 +42,59 @@ class PlatformTest(APITestCase):
|
||||
Platform.objects.all().order_by('name').values_list(
|
||||
'name', flat=True))
|
||||
platforms = [x.get('name') for x in json.loads(response.content)]
|
||||
self.assertEqual(platforms, sorted_platformss)
|
||||
self.assertEqual(platforms, sorted_platforms)
|
||||
|
||||
|
||||
class GameTest(APITestCase):
|
||||
|
||||
@classmethod
|
||||
def setUpTestData(cls):
|
||||
cls.superuser = User.objects.create_superuser(
|
||||
'admin',
|
||||
'admin@localhost',
|
||||
'admin')
|
||||
|
||||
def test_create_game(self):
|
||||
"""
|
||||
Check we can create a game object.
|
||||
"""
|
||||
# Game works on specific platform
|
||||
console = Platform.objects.create(name='Game Boy')
|
||||
console_url = reverse('platform-detail', kwargs={'pk': console.id})
|
||||
|
||||
url = reverse('game-list')
|
||||
data = {
|
||||
'name': 'Tetris',
|
||||
'collection': console_url,
|
||||
}
|
||||
self.client.force_authenticate(user=self.superuser)
|
||||
response = self.client.post(url, data, format='json')
|
||||
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
||||
self.assertEqual(Game.objects.count(), 1)
|
||||
self.assertEqual(Game.objects.get().name, 'Tetris')
|
||||
self.assertEqual(Game.objects.get().collection_id, console.id)
|
||||
|
||||
|
||||
def test_sorted_games(self):
|
||||
"""
|
||||
Check that game list is sorted.
|
||||
"""
|
||||
console = Platform.objects.create(name='BestPlatform4Ever')
|
||||
Game.objects.create(
|
||||
name='Pomperman',
|
||||
collection=console)
|
||||
Game.objects.create(
|
||||
name='Vektoria',
|
||||
collection=console)
|
||||
Game.objects.create(
|
||||
name='Qrackovitchya',
|
||||
collection=console)
|
||||
url = reverse('game-list')
|
||||
self.client.force_authenticate(user=self.superuser)
|
||||
response = self.client.get(url, format='json')
|
||||
sorted_games = list(
|
||||
Game.objects.all().order_by('name').values_list(
|
||||
'name', flat=True))
|
||||
games = [x.get('name') for x in json.loads(response.content)]
|
||||
self.assertEqual(games, sorted_games)
|
||||
|
||||
|
Reference in New Issue
Block a user