Django 애플리케이션을 테스트하기 위해 Fixture를 로드하는 트릭

4943 단어
데이터베이스 기반 웹 사이트의 테스트 케이스는 데이터베이스에 데이터가 없으면 별로 쓸모가 없습니다. 테스트 데이터를 데이터베이스에 쉽게 넣을 수 있도록 Django의 사용자 정의 TestCase 클래스는 고정 장치를 로드하는 방법을 제공합니다.( 여기에서 세부사항을 참조하십시오)
픽스처를 생성하고 INSTALLED_APPS 중 하나의 픽스처 디렉토리에 배치하면 django.test.TestCase 하위 클래스에 조명기 클래스 속성을 지정하여 단위 테스트에서 이를 사용할 수 있습니다.

from django.test import TestCase
from myapp.models import Animal

class AnimalTestCase(TestCase):
    fixtures = ['myfixture.json']

    def setUp(self):
        # Test definitions as before.
        call_setup_methods()

    def testFluffyAnimals(self):
        # A test that uses the fixtures.
        call_some_test_code()

그러나 setUpClass()를 추가해야 하는 경우 고정 장치가 작동하지 않습니다.
사실 setUpcClass()가 실행되기 전에는 픽스처를 삽입할 수 없습니다.
이 문제를 해결하기 위해 setUpClass() 메소드에서 "python admin.py loaddata myfixture.json"명령을 호출할 수 있습니다.

from django.test import TestCase
from myapp.models import Animal
from django.core import management

class AnimalTestCase(TestCase):def setUpClass(cls):
        # use command to load fixture
        management.call_command("loaddata", "myfixture.json")
        call_setup_methods()

    def testFluffyAnimals(self):
        # A test that uses the fixtures.
        call_some_test_code()

이 프로젝트가 PyDev에서 개발 및 테스트되지 않았더라도 지금은 괜찮습니다.
그렇지 않으면 Eclipse PyDev에서 "run as unittest"를 클릭하여 테스트 케이스를 실행할 때 Fixture에 또 다른 유선 문제가 있으며 testCase 클래스의 setUpClass()를 제외한 다른 테스트 메소드에서는 Fixture 데이터가 작동하지 않습니다. 아래와 같이 코드를 수정해야 합니다.

from django.test import TestCase
from myapp.models import Animal
from django.core import management

class AnimalTestCase(TestCase):
    fixtures = ['myfixture.json']

    def setUpClass(cls):
        # use command to load fixture
        management.call_command("loaddata", "myfixture.json")
        call_setup_methods()

    def testFluffyAnimals(self):
        # A test that uses the fixtures.
        call_some_test_code()

이유가 명확하지 않거나 PyDev에 약간의 결함이 있거나 내 오해일 수 있습니다. 어떤 제안이든 환영합니다!
 
 

재인쇄: https://www.cnblogs.com/Alex-Python-Waiter/archive/2012/10/30/2747142.html

좋은 웹페이지 즐겨찾기