Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
67f1265e
Commit
67f1265e
authored
Oct 26, 2012
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix failing 'default' on ModelSerializer
parent
fc4614a8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
12 deletions
+14
-12
rest_framework/serializers.py
+1
-1
rest_framework/tests/models.py
+2
-2
rest_framework/tests/serializer.py
+11
-9
No files found.
rest_framework/serializers.py
View file @
67f1265e
...
...
@@ -410,7 +410,7 @@ class ModelSerializer(Serializer):
kwargs
=
{}
if
model_field
.
has_default
():
kwargs
[
'required'
]
=
False
kwargs
[
'default'
]
=
model_field
.
default
kwargs
[
'default'
]
=
model_field
.
get_default
()
if
model_field
.
__class__
==
models
.
TextField
:
kwargs
[
'widget'
]
=
widgets
.
Textarea
...
...
rest_framework/tests/models.py
View file @
67f1265e
...
...
@@ -62,12 +62,12 @@ class CallableDefaultValueModel(RESTFrameworkModel):
class
ManyToManyModel
(
RESTFrameworkModel
):
rel
=
models
.
ManyToManyField
(
Anchor
)
class
ReadOnlyManyToManyModel
(
RESTFrameworkModel
):
text
=
models
.
CharField
(
max_length
=
100
,
default
=
'anchor'
)
rel
=
models
.
ManyToManyField
(
Anchor
)
# Models to test generic relations
...
...
rest_framework/tests/serializer.py
View file @
67f1265e
...
...
@@ -7,7 +7,7 @@ from rest_framework.tests.models import *
class
SubComment
(
object
):
def
__init__
(
self
,
sub_comment
):
self
.
sub_comment
=
sub_comment
class
Comment
(
object
):
def
__init__
(
self
,
email
,
content
,
created
):
...
...
@@ -18,7 +18,7 @@ class Comment(object):
def
__eq__
(
self
,
other
):
return
all
([
getattr
(
self
,
attr
)
==
getattr
(
other
,
attr
)
for
attr
in
(
'email'
,
'content'
,
'created'
)])
def
get_sub_comment
(
self
):
sub_comment
=
SubComment
(
'And Merry Christmas!'
)
return
sub_comment
...
...
@@ -29,7 +29,7 @@ class CommentSerializer(serializers.Serializer):
content
=
serializers
.
CharField
(
max_length
=
1000
)
created
=
serializers
.
DateTimeField
()
sub_comment
=
serializers
.
Field
(
source
=
'get_sub_comment.sub_comment'
)
def
restore_object
(
self
,
data
,
instance
=
None
):
if
instance
is
None
:
return
Comment
(
**
data
)
...
...
@@ -42,6 +42,7 @@ class ActionItemSerializer(serializers.ModelSerializer):
class
Meta
:
model
=
ActionItem
class
BasicTests
(
TestCase
):
def
setUp
(
self
):
self
.
comment
=
Comment
(
...
...
@@ -73,7 +74,7 @@ class BasicTests(TestCase):
self
.
assertEquals
(
serializer
.
data
,
expected
)
def
test_retrieve
(
self
):
serializer
=
CommentSerializer
(
instance
=
self
.
comment
)
serializer
=
CommentSerializer
(
instance
=
self
.
comment
)
self
.
assertEquals
(
serializer
.
data
,
self
.
expected
)
def
test_create
(
self
):
...
...
@@ -104,7 +105,7 @@ class ValidationTests(TestCase):
'email'
:
'tom@example.com'
,
'content'
:
'x'
*
1001
,
'created'
:
datetime
.
datetime
(
2012
,
1
,
1
)
}
}
self
.
actionitem
=
ActionItem
(
'Some to do item'
,
)
...
...
@@ -131,7 +132,7 @@ class ValidationTests(TestCase):
"""Make sure that a boolean value with a 'False' value is not
mistaken for not having a default."""
data
=
{
'title'
:
'Some action item'
,
'title'
:
'Some action item'
,
#No 'done' value.
}
serializer
=
ActionItemSerializer
(
data
,
instance
=
self
.
actionitem
)
...
...
@@ -295,11 +296,13 @@ class ManyToManyTests(TestCase):
self
.
assertEquals
(
len
(
ManyToManyModel
.
objects
.
all
()),
2
)
self
.
assertEquals
(
instance
.
pk
,
2
)
self
.
assertEquals
(
list
(
instance
.
rel
.
all
()),
[])
class
ReadOnlyManyToManyTests
(
TestCase
):
def
setUp
(
self
):
class
ReadOnlyManyToManySerializer
(
serializers
.
ModelSerializer
):
rel
=
serializers
.
ManyRelatedField
(
readonly
=
True
)
rel
=
serializers
.
ManyRelatedField
(
readonly
=
True
)
class
Meta
:
model
=
ReadOnlyManyToManyModel
...
...
@@ -317,7 +320,6 @@ class ReadOnlyManyToManyTests(TestCase):
# A serialized representation of the model instance
self
.
data
=
{
'rel'
:
[
self
.
anchor
.
id
],
'id'
:
1
,
'text'
:
'anchor'
}
def
test_update
(
self
):
"""
Attempt to update an instance of a model with a ManyToMany
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment