Change the default domain of Client() in unittest of Django












13















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 ?










share|improve this question




















  • 2





    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
















13















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 ?










share|improve this question




















  • 2





    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














13












13








13


4






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 ?










share|improve this question
















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 ?







python django unit-testing django-views django-unittest






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 9 '11 at 10:20







Shashi

















asked Jun 9 '11 at 10:05









ShashiShashi

1,28021431




1,28021431








  • 2





    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














  • 2





    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








2




2





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





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












2 Answers
2






active

oldest

votes


















24














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")





share|improve this answer



















  • 3





    yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

    – Shashi
    Jun 9 '11 at 10:47





















0














The code can help not only in unit test, but it can also help for DRF to use context in a serializer
ResponseSerializer(instance=obj, context={'request': get_request}).data





from django.test.client import RequestFactory
rf = RequestFactory()
rf.defaults['SERVER_NAME'] = 'my-site.com'
get_request = rf.get('/hello/')





share|improve this answer


























  • Giving some words explaining your answer goes a long way beyond a "just code" answer.

    – planetmaker
    Nov 21 '18 at 9:33











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f6291120%2fchange-the-default-domain-of-client-in-unittest-of-django%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









24














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")





share|improve this answer



















  • 3





    yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

    – Shashi
    Jun 9 '11 at 10:47


















24














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")





share|improve this answer



















  • 3





    yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

    – Shashi
    Jun 9 '11 at 10:47
















24












24








24







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")





share|improve this answer













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")






share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 9 '11 at 10:32









adamnfishadamnfish

6,97332239




6,97332239








  • 3





    yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

    – Shashi
    Jun 9 '11 at 10:47
















  • 3





    yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

    – Shashi
    Jun 9 '11 at 10:47










3




3





yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

– Shashi
Jun 9 '11 at 10:47







yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")

– Shashi
Jun 9 '11 at 10:47















0














The code can help not only in unit test, but it can also help for DRF to use context in a serializer
ResponseSerializer(instance=obj, context={'request': get_request}).data





from django.test.client import RequestFactory
rf = RequestFactory()
rf.defaults['SERVER_NAME'] = 'my-site.com'
get_request = rf.get('/hello/')





share|improve this answer


























  • Giving some words explaining your answer goes a long way beyond a "just code" answer.

    – planetmaker
    Nov 21 '18 at 9:33
















0














The code can help not only in unit test, but it can also help for DRF to use context in a serializer
ResponseSerializer(instance=obj, context={'request': get_request}).data





from django.test.client import RequestFactory
rf = RequestFactory()
rf.defaults['SERVER_NAME'] = 'my-site.com'
get_request = rf.get('/hello/')





share|improve this answer


























  • Giving some words explaining your answer goes a long way beyond a "just code" answer.

    – planetmaker
    Nov 21 '18 at 9:33














0












0








0







The code can help not only in unit test, but it can also help for DRF to use context in a serializer
ResponseSerializer(instance=obj, context={'request': get_request}).data





from django.test.client import RequestFactory
rf = RequestFactory()
rf.defaults['SERVER_NAME'] = 'my-site.com'
get_request = rf.get('/hello/')





share|improve this answer















The code can help not only in unit test, but it can also help for DRF to use context in a serializer
ResponseSerializer(instance=obj, context={'request': get_request}).data





from django.test.client import RequestFactory
rf = RequestFactory()
rf.defaults['SERVER_NAME'] = 'my-site.com'
get_request = rf.get('/hello/')






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 21 '18 at 10:14

























answered Nov 21 '18 at 7:30









madjardimadjardi

2,4552224




2,4552224













  • Giving some words explaining your answer goes a long way beyond a "just code" answer.

    – planetmaker
    Nov 21 '18 at 9:33



















  • Giving some words explaining your answer goes a long way beyond a "just code" answer.

    – planetmaker
    Nov 21 '18 at 9:33

















Giving some words explaining your answer goes a long way beyond a "just code" answer.

– planetmaker
Nov 21 '18 at 9:33





Giving some words explaining your answer goes a long way beyond a "just code" answer.

– planetmaker
Nov 21 '18 at 9:33


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f6291120%2fchange-the-default-domain-of-client-in-unittest-of-django%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to send String Array data to Server using php in android

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Is anime1.com a legal site for watching anime?