簡體   English   中英

使用django.test.client測試應用程序http請求,獲取錯誤

[英]Using django.test.client to test app http requests, getting errors

我們開始為我們的API編寫單元測試(使用Django Rest Framework創建)。 我們決定從簡單開始,使用內置的unittest和django.test.client類。 我已經編寫了測試的存根,它運行得很好:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import unittest

# from django.test.client import Client

class TestGrowth(unittest.TestCase):
    def setUp(self):
        # self.client = Client()
        pass

    def test_numbers_3_4(self):
        self.assertEqual(4, 4, True)

    def test_strings_a_3(self):
        self.assertEqual('andy', 'andy', True)


def suite():
    suite = unittest.TestSuite()

    # Add test cases to suite
    suite.addTests(unittest.makeSuite(TestGrowth))

    return suite

if __name__ == '__main__':
    # Run test suite
    unittest.TextTestRunner(verbosity=2).run(suite())

但是,只要我from django.test.client import Client取消注釋行讀取from django.test.client import Client我就會收到錯誤:

Traceback (most recent call last):
  File "./AccountGrowth.py", line 8, in <module>
    from django.test.client import Client
  File "/home/vagrant/.virtualenvs/emmasocial/lib/python2.7/site-packages/django/test/__init__.py", line 5, in <module>
    from django.test.client import Client, RequestFactory
  File "/home/vagrant/.virtualenvs/emmasocial/lib/python2.7/site-packages/django/test/client.py", line 21, in <module>
    from django.db import close_connection
  File "/home/vagrant/.virtualenvs/emmasocial/lib/python2.7/site-packages/django/db/__init__.py", line 11, in <module>
    if settings.DATABASES and DEFAULT_DB_ALIAS not in settings.DATABASES:
  File "/home/vagrant/.virtualenvs/emmasocial/lib/python2.7/site-packages/django/conf/__init__.py", line 53, in __getattr__
    self._setup(name)
  File "/home/vagrant/.virtualenvs/emmasocial/lib/python2.7/site-packages/django/conf/__init__.py", line 46, in _setup
    % (desc, ENVIRONMENT_VARIABLE))
django.core.exceptions.ImproperlyConfigured: Requested setting DATABASES, but settings are not configured.
You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.

我們在settings.py中定義DATABASES,如下所示:

if "DATABASE_URL" in os.environ:
    # Parse database configuration from $DATABASE_URL
    DATABASES = {
        'default': dj_database_url.config()
    }
else:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.mysql',  # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
            'NAME': 'emmasocial',                  # Or path to database file if using sqlite3.
            'USER': 'root',                        # Not used with sqlite3.
            'PASSWORD': '',                        # Not used with sqlite3.
            'HOST': '',                            # Set to empty string for localhost. Not used with sqlite3.
            'PORT': '',                            # Set to empty string for default. Not used with sqlite3.
        }
    }

我正在使用以下命令python ./AccountGrowth.py<app>/api/tests內的vagrant shell中運行測試。

任何人都可以解釋為什么會這樣嗎?

你沒有通過Django的測試運行器運行測試,它為你設置了所有這些。 if __name__ == '__main__'阻止或顯式調用run()if __name__ == '__main__'它,並且應該通過./manage.py test運行./manage.py test

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM