Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Oliver Walters 2019-08-30 02:59:01 +10:00
commit d319c79abb
5 changed files with 79 additions and 5 deletions

View File

@ -152,7 +152,8 @@ REST_FRAMEWORK = {
'rest_framework.authentication.BasicAuthentication',
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.TokenAuthentication',
)
),
'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema'
}
WSGI_APPLICATION = 'InvenTree.wsgi.application'

View File

@ -0,0 +1,27 @@
""" Unit tests for the main web views """
from django.test import TestCase
from django.urls import reverse
from django.contrib.auth import get_user_model
import os
class ViewTests(TestCase):
""" Tests for various top-level views """
def setUp(self):
# Create a user
User = get_user_model()
User.objects.create_user('username', 'user@email.com', 'password')
self.client.login(username='username', password='password')
def test_api_doc(self):
""" Test that the api-doc view works """
api_url = os.path.join(reverse('index'), 'api-doc') + '/'
response = self.client.get(api_url)
self.assertEqual(response.status_code, 200)

View File

@ -4,6 +4,8 @@ from django.test import TestCase
from django.urls import reverse
from django.contrib.auth import get_user_model
import json
class StockViewTestCase(TestCase):
@ -128,3 +130,43 @@ class StockItemTest(StockViewTestCase):
# Copy from an invalid item, invalid location
response = self.client.get(reverse('stock-item-create'), {'location': 999, 'copy': 9999}, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
self.assertEqual(response.status_code, 200)
def test_serialize_item(self):
# Test the serialization view
url = reverse('stock-item-serialize', args=(100,))
# GET the form
response = self.client.get(url, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
self.assertEqual(response.status_code, 200)
data_valid = {
'quantity': 5,
'serial_numbers': '1-5',
'destination': 4,
'notes': 'Serializing stock test'
}
data_invalid = {
'quantity': 4,
'serial_numbers': 'dd-23-adf',
'destination': 'blorg'
}
# POST
response = self.client.post(url, data_valid, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
self.assertEqual(response.status_code, 200)
data = json.loads(response.content)
self.assertTrue(data['form_valid'])
# Try again to serialize with the same numbers
response = self.client.post(url, data_valid, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
self.assertEqual(response.status_code, 200)
data = json.loads(response.content)
self.assertFalse(data['form_valid'])
# POST with invalid data
response = self.client.post(url, data_invalid, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
self.assertEqual(response.status_code, 200)
data = json.loads(response.content)
self.assertFalse(data['form_valid'])

View File

@ -267,6 +267,9 @@ class StockTest(TestCase):
with self.assertRaises(ValidationError):
item.serializeStock(5, [1, 2, 3, 4, 5], self.user)
with self.assertRaises(ValidationError):
item.serializeStock(5, [1, 2, 3], self.user)
# Pick a StockItem which can actually be serialized
item = StockItem.objects.get(pk=100)
@ -284,7 +287,7 @@ class StockTest(TestCase):
with self.assertRaises(ValidationError):
item.serializeStock(3, "hello", self.user)
def test_seiralize_stock_valid(self):
def test_serialize_stock_valid(self):
""" Perform valid stock serializations """
# There are 10 of these in stock

View File

@ -491,10 +491,10 @@ class StockItemSerialize(AjaxUpdateView):
item = self.get_object()
quantity = request.POST.get('quantity', None)
quantity = request.POST.get('quantity', 0)
serials = request.POST.get('serial_numbers', '')
dest_id = request.POST.get('destination', None)
notes = request.POST.get('note', None)
notes = request.POST.get('note', '')
user = request.user
valid = True
@ -509,6 +509,7 @@ class StockItemSerialize(AjaxUpdateView):
except ValidationError as e:
form.errors['serial_numbers'] = e.messages
valid = False
numbers = []
if valid:
try:
@ -517,7 +518,7 @@ class StockItemSerialize(AjaxUpdateView):
messages = e.message_dict
for k in messages.keys():
if k in ['quantity', 'destionation', 'serial_numbers']:
if k in ['quantity', 'destination', 'serial_numbers']:
form.errors[k] = messages[k]
else:
form.non_field_errors = messages[k]