Change the default domain of Client() in unittest of Django
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
add a comment |
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
2
FYI: TestCase automatically addsself.clientas an instance of Client, so you don't need to doself.c = Client()insetUp. Just changeself.c.getin your test methods totest.client.get:)
– adamnfish
Jun 9 '11 at 10:25
add a comment |
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
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
python django unit-testing django-views django-unittest
edited Jun 9 '11 at 10:20
Shashi
asked Jun 9 '11 at 10:05
ShashiShashi
1,28021431
1,28021431
2
FYI: TestCase automatically addsself.clientas an instance of Client, so you don't need to doself.c = Client()insetUp. Just changeself.c.getin your test methods totest.client.get:)
– adamnfish
Jun 9 '11 at 10:25
add a comment |
2
FYI: TestCase automatically addsself.clientas an instance of Client, so you don't need to doself.c = Client()insetUp. Just changeself.c.getin your test methods totest.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
add a comment |
2 Answers
2
active
oldest
votes
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")
3
yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")
– Shashi
Jun 9 '11 at 10:47
add a comment |
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/')
Giving some words explaining your answer goes a long way beyond a "just code" answer.
– planetmaker
Nov 21 '18 at 9:33
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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")
3
yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")
– Shashi
Jun 9 '11 at 10:47
add a comment |
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")
3
yes working i directly add SERVER_NAME in client like C = Client(SERVER_NAME="mydomain.com")
– Shashi
Jun 9 '11 at 10:47
add a comment |
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")
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")
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
add a comment |
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
add a comment |
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/')
Giving some words explaining your answer goes a long way beyond a "just code" answer.
– planetmaker
Nov 21 '18 at 9:33
add a comment |
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/')
Giving some words explaining your answer goes a long way beyond a "just code" answer.
– planetmaker
Nov 21 '18 at 9:33
add a comment |
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/')
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/')
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
2
FYI: TestCase automatically adds
self.clientas an instance of Client, so you don't need to doself.c = Client()insetUp. Just changeself.c.getin your test methods totest.client.get:)– adamnfish
Jun 9 '11 at 10:25