Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
0eccf8fb
Kaydet (Commit)
0eccf8fb
authored
Eki 07, 2014
tarafından
Loic Bistuer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed misplaced test case.
üst
8a4e9be3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
59 deletions
+59
-59
tests.py
tests/get_or_create/tests.py
+59
-59
No files found.
tests/get_or_create/tests.py
Dosyayı görüntüle @
0eccf8fb
...
@@ -66,6 +66,65 @@ class GetOrCreateTests(TestCase):
...
@@ -66,6 +66,65 @@ class GetOrCreateTests(TestCase):
Person
.
objects
.
get_or_create
,
first_name
=
"Tom"
,
last_name
=
"Smith"
Person
.
objects
.
get_or_create
,
first_name
=
"Tom"
,
last_name
=
"Smith"
)
)
def
test_get_or_create_on_related_manager
(
self
):
p
=
Publisher
.
objects
.
create
(
name
=
"Acme Publishing"
)
# Create a book through the publisher.
book
,
created
=
p
.
books
.
get_or_create
(
name
=
"The Book of Ed & Fred"
)
self
.
assertTrue
(
created
)
# The publisher should have one book.
self
.
assertEqual
(
p
.
books
.
count
(),
1
)
# Try get_or_create again, this time nothing should be created.
book
,
created
=
p
.
books
.
get_or_create
(
name
=
"The Book of Ed & Fred"
)
self
.
assertFalse
(
created
)
# And the publisher should still have one book.
self
.
assertEqual
(
p
.
books
.
count
(),
1
)
# Add an author to the book.
ed
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Ed"
)
self
.
assertTrue
(
created
)
# The book should have one author.
self
.
assertEqual
(
book
.
authors
.
count
(),
1
)
# Try get_or_create again, this time nothing should be created.
ed
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Ed"
)
self
.
assertFalse
(
created
)
# And the book should still have one author.
self
.
assertEqual
(
book
.
authors
.
count
(),
1
)
# Add a second author to the book.
fred
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Fred"
)
self
.
assertTrue
(
created
)
# The book should have two authors now.
self
.
assertEqual
(
book
.
authors
.
count
(),
2
)
# Create an Author not tied to any books.
Author
.
objects
.
create
(
name
=
"Ted"
)
# There should be three Authors in total. The book object should have two.
self
.
assertEqual
(
Author
.
objects
.
count
(),
3
)
self
.
assertEqual
(
book
.
authors
.
count
(),
2
)
# Try creating a book through an author.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
"Ed's Recipes"
,
publisher
=
p
)
self
.
assertTrue
(
created
)
# Now Ed has two Books, Fred just one.
self
.
assertEqual
(
ed
.
books
.
count
(),
2
)
self
.
assertEqual
(
fred
.
books
.
count
(),
1
)
# Use the publisher's primary key value instead of a model instance.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
'The Great Book of Ed'
,
publisher_id
=
p
.
id
)
self
.
assertTrue
(
created
)
# Try get_or_create again, this time nothing should be created.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
'The Great Book of Ed'
,
publisher_id
=
p
.
id
)
self
.
assertFalse
(
created
)
# The publisher should have three books.
self
.
assertEqual
(
p
.
books
.
count
(),
3
)
class
GetOrCreateTestsWithManualPKs
(
TestCase
):
class
GetOrCreateTestsWithManualPKs
(
TestCase
):
...
@@ -289,62 +348,3 @@ class UpdateOrCreateTests(TestCase):
...
@@ -289,62 +348,3 @@ class UpdateOrCreateTests(TestCase):
self
.
assertFalse
(
created
)
self
.
assertFalse
(
created
)
self
.
assertEqual
(
book
.
name
,
name
)
self
.
assertEqual
(
book
.
name
,
name
)
self
.
assertEqual
(
author
.
books
.
count
(),
1
)
self
.
assertEqual
(
author
.
books
.
count
(),
1
)
def
test_related
(
self
):
p
=
Publisher
.
objects
.
create
(
name
=
"Acme Publishing"
)
# Create a book through the publisher.
book
,
created
=
p
.
books
.
get_or_create
(
name
=
"The Book of Ed & Fred"
)
self
.
assertTrue
(
created
)
# The publisher should have one book.
self
.
assertEqual
(
p
.
books
.
count
(),
1
)
# Try get_or_create again, this time nothing should be created.
book
,
created
=
p
.
books
.
get_or_create
(
name
=
"The Book of Ed & Fred"
)
self
.
assertFalse
(
created
)
# And the publisher should still have one book.
self
.
assertEqual
(
p
.
books
.
count
(),
1
)
# Add an author to the book.
ed
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Ed"
)
self
.
assertTrue
(
created
)
# The book should have one author.
self
.
assertEqual
(
book
.
authors
.
count
(),
1
)
# Try get_or_create again, this time nothing should be created.
ed
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Ed"
)
self
.
assertFalse
(
created
)
# And the book should still have one author.
self
.
assertEqual
(
book
.
authors
.
count
(),
1
)
# Add a second author to the book.
fred
,
created
=
book
.
authors
.
get_or_create
(
name
=
"Fred"
)
self
.
assertTrue
(
created
)
# The book should have two authors now.
self
.
assertEqual
(
book
.
authors
.
count
(),
2
)
# Create an Author not tied to any books.
Author
.
objects
.
create
(
name
=
"Ted"
)
# There should be three Authors in total. The book object should have two.
self
.
assertEqual
(
Author
.
objects
.
count
(),
3
)
self
.
assertEqual
(
book
.
authors
.
count
(),
2
)
# Try creating a book through an author.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
"Ed's Recipes"
,
publisher
=
p
)
self
.
assertTrue
(
created
)
# Now Ed has two Books, Fred just one.
self
.
assertEqual
(
ed
.
books
.
count
(),
2
)
self
.
assertEqual
(
fred
.
books
.
count
(),
1
)
# Use the publisher's primary key value instead of a model instance.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
'The Great Book of Ed'
,
publisher_id
=
p
.
id
)
self
.
assertTrue
(
created
)
# Try get_or_create again, this time nothing should be created.
_
,
created
=
ed
.
books
.
get_or_create
(
name
=
'The Great Book of Ed'
,
publisher_id
=
p
.
id
)
self
.
assertFalse
(
created
)
# The publisher should have three books.
self
.
assertEqual
(
p
.
books
.
count
(),
3
)
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