aboutsummaryrefslogblamecommitdiffstats
path: root/ctrack/organisations/tests/test_views.py
blob: 2111410bb8694b60a578d667457043e4cf81001e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                              

                                                                    





                                                                        





                                  








                                                                     
import pytest
from django.contrib.auth import get_user_model
from django.test import RequestFactory

from ctrack.organisations.tests.factories import OrganisationFactory

from ..views import OrganisationListView

pytestmark = pytest.mark.django_db


# https://docs.djangoproject.com/en/3.0/topics/testing/advanced/#example
def test_organisation_list_view():

    OrganisationFactory.create()
    OrganisationFactory.create()
    OrganisationFactory.create()

    factory = RequestFactory()
    user = get_user_model().objects.create_user(
        username="testy", email="testy@test.com", password="test1020"
    )
    request = factory.get("/organisations")
    request.user = user
    response = OrganisationListView.as_view()(request)
    assert response.status_code == 200
    assert len(response.context_data["organisation_list"]) == 3