mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add a smattering of unit tests
This commit is contained in:
parent
6a7c722efc
commit
697a338700
70
InvenTree/label/test_api.py
Normal file
70
InvenTree/label/test_api.py
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
# Tests for labels
|
||||||
|
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from rest_framework.test import APITestCase
|
||||||
|
|
||||||
|
from django.urls import reverse
|
||||||
|
from django.contrib.auth import get_user_model
|
||||||
|
|
||||||
|
|
||||||
|
class TestReportTests(APITestCase):
|
||||||
|
"""
|
||||||
|
Tests for the StockItem TestReport templates
|
||||||
|
"""
|
||||||
|
|
||||||
|
fixtures = [
|
||||||
|
'category',
|
||||||
|
'part',
|
||||||
|
'location',
|
||||||
|
'stock',
|
||||||
|
]
|
||||||
|
|
||||||
|
list_url = reverse('api-stockitem-testreport-list')
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
user = get_user_model()
|
||||||
|
|
||||||
|
self.user = user.objects.create_user('testuser', 'test@testing.com', 'password')
|
||||||
|
|
||||||
|
self.user.is_staff = True
|
||||||
|
self.user.save()
|
||||||
|
|
||||||
|
self.client.login(username='testuser', password='password')
|
||||||
|
|
||||||
|
def do_list(self, filters={}):
|
||||||
|
|
||||||
|
response = self.client.get(self.list_url, filters, format='json')
|
||||||
|
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
|
return response.data
|
||||||
|
|
||||||
|
def test_list(self):
|
||||||
|
|
||||||
|
response = self.do_list()
|
||||||
|
|
||||||
|
# TODO - Add some report templates to the fixtures
|
||||||
|
self.assertEqual(len(response), 0)
|
||||||
|
|
||||||
|
# TODO - Add some tests to this response
|
||||||
|
response = self.do_list(
|
||||||
|
{
|
||||||
|
'item': 10,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# TODO - Add some tests to this response
|
||||||
|
response = self.do_list(
|
||||||
|
{
|
||||||
|
'item': 100000,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# TODO - Add some tests to this response
|
||||||
|
response = self.do_list(
|
||||||
|
{
|
||||||
|
'items': [10, 11, 12],
|
||||||
|
}
|
||||||
|
)
|
@ -1,4 +1,4 @@
|
|||||||
# Tests for Part Parameters
|
# Tests for labels
|
||||||
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
@ -43,9 +43,9 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
<div class='filter-list' id='filter-list-stock'>
|
||||||
<div class='filter-list' id='filter-list-stock'>
|
<!-- An empty div in which the filter list will be constructed -->
|
||||||
<!-- An empty div in which the filter list will be constructed -->
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user