I am writing a unit test for Django views.

class TestLog(unittest.TestCase):
    """Test for Contact"""
    def setUp(self):
        self.c = Client()
        try:
            self.bob = User.objects.create_user("mojo","b@example.com", "bmojo")
        except :
            print ''

    def test_get_emails(self):
        response = self.c.get('/text/')
        self.assertEqual(response.status_code, 200)


    def test_htmlemils(self):
        response = self.c.get('/emails/html/upload')
        self.assertEqual(response.status_code, 200)

The c = Client() takes the 'http://testserver' as domain which i want to overwrite ,i want to add my real domain in that test client ,is their way to customize the test Client ?

link|improve this question

FYI: TestCase automatically adds self.client as an instance of Client, so you don't need to do self.c = Client() in setUp. Just change self.c.get in your test methods to test.client.get :) – adamnfish Jun 9 '11 at 10:25
feedback

1 Answer

up vote 3 down vote accepted

Django's Client extends RequestFactory so you should be able to pass in extra params as keyword arguments.

Try:

response = self.c.get('/emails/html/upload', SERVER_NAME="mydomain.com")
link|improve this answer
1  
yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com") – Shashi Jun 9 '11 at 10:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.