Querying the database in a Django unit test












1















I am creating a web application which has a POST endpoint, that does two things:




  1. Saves the POSTed data (a university review) in the database.

  2. Redirects the user to an overview page.


Here is the code for it:



if request.method == 'POST':
review = Review(university=university,
user=User.objects.get(pk=1),
summary=request.POST['summary'])

review.save()

return HttpResponseRedirect(reverse('university_overview', args=(university_id,)))


I haven't yet implemented passing the user data to the endpoint, and that's why I'm saving everything under the user with pk=1.



My test is as follows:



class UniversityAddReviewTestCase(TestCase):
def setUp(self):
user = User.objects.create(username="username", password="password", email="email")
university = University.objects.create(name="Oxford University", country="UK", info="Meh", rating="9")
Review.objects.create(university=university, summary="Very nice", user_id=user.id)
Review.objects.create(university=university, summary="Very bad", user_id=user.id)

new_review = {
'summary': 'It was okay.'
}

self.response = Client().post('/%s/reviews/add' % university.id, new_review)

def test_database_updated(self):
self.assertEqual(len(Review.objects.all()), 3)


The result is this:



  File ".../core/views.py", line 20, in detail
user=User.objects.get(pk=1),
File ".../ENV/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File ".../ENV/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get
self.model._meta.object_name
django.contrib.auth.models.DoesNotExist: User matching query does not exist.


Why is this happening? I know the user I'm creating has a pk=1, as when I actually print it during the test it's 1.










share|improve this question























  • is this the only place in your tests where you create a user?

    – Henry Woody
    Nov 19 '18 at 23:39











  • no, I have other tests that create users as well

    – pavlos163
    Nov 19 '18 at 23:49











  • it is however the only user in the specific TestCase class

    – pavlos163
    Nov 19 '18 at 23:50











  • oh and are there are test methods in this TestCase besides test_database_updated?

    – Henry Woody
    Nov 19 '18 at 23:52











  • there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

    – pavlos163
    Nov 20 '18 at 0:08
















1















I am creating a web application which has a POST endpoint, that does two things:




  1. Saves the POSTed data (a university review) in the database.

  2. Redirects the user to an overview page.


Here is the code for it:



if request.method == 'POST':
review = Review(university=university,
user=User.objects.get(pk=1),
summary=request.POST['summary'])

review.save()

return HttpResponseRedirect(reverse('university_overview', args=(university_id,)))


I haven't yet implemented passing the user data to the endpoint, and that's why I'm saving everything under the user with pk=1.



My test is as follows:



class UniversityAddReviewTestCase(TestCase):
def setUp(self):
user = User.objects.create(username="username", password="password", email="email")
university = University.objects.create(name="Oxford University", country="UK", info="Meh", rating="9")
Review.objects.create(university=university, summary="Very nice", user_id=user.id)
Review.objects.create(university=university, summary="Very bad", user_id=user.id)

new_review = {
'summary': 'It was okay.'
}

self.response = Client().post('/%s/reviews/add' % university.id, new_review)

def test_database_updated(self):
self.assertEqual(len(Review.objects.all()), 3)


The result is this:



  File ".../core/views.py", line 20, in detail
user=User.objects.get(pk=1),
File ".../ENV/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File ".../ENV/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get
self.model._meta.object_name
django.contrib.auth.models.DoesNotExist: User matching query does not exist.


Why is this happening? I know the user I'm creating has a pk=1, as when I actually print it during the test it's 1.










share|improve this question























  • is this the only place in your tests where you create a user?

    – Henry Woody
    Nov 19 '18 at 23:39











  • no, I have other tests that create users as well

    – pavlos163
    Nov 19 '18 at 23:49











  • it is however the only user in the specific TestCase class

    – pavlos163
    Nov 19 '18 at 23:50











  • oh and are there are test methods in this TestCase besides test_database_updated?

    – Henry Woody
    Nov 19 '18 at 23:52











  • there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

    – pavlos163
    Nov 20 '18 at 0:08














1












1








1








I am creating a web application which has a POST endpoint, that does two things:




  1. Saves the POSTed data (a university review) in the database.

  2. Redirects the user to an overview page.


Here is the code for it:



if request.method == 'POST':
review = Review(university=university,
user=User.objects.get(pk=1),
summary=request.POST['summary'])

review.save()

return HttpResponseRedirect(reverse('university_overview', args=(university_id,)))


I haven't yet implemented passing the user data to the endpoint, and that's why I'm saving everything under the user with pk=1.



My test is as follows:



class UniversityAddReviewTestCase(TestCase):
def setUp(self):
user = User.objects.create(username="username", password="password", email="email")
university = University.objects.create(name="Oxford University", country="UK", info="Meh", rating="9")
Review.objects.create(university=university, summary="Very nice", user_id=user.id)
Review.objects.create(university=university, summary="Very bad", user_id=user.id)

new_review = {
'summary': 'It was okay.'
}

self.response = Client().post('/%s/reviews/add' % university.id, new_review)

def test_database_updated(self):
self.assertEqual(len(Review.objects.all()), 3)


The result is this:



  File ".../core/views.py", line 20, in detail
user=User.objects.get(pk=1),
File ".../ENV/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File ".../ENV/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get
self.model._meta.object_name
django.contrib.auth.models.DoesNotExist: User matching query does not exist.


Why is this happening? I know the user I'm creating has a pk=1, as when I actually print it during the test it's 1.










share|improve this question














I am creating a web application which has a POST endpoint, that does two things:




  1. Saves the POSTed data (a university review) in the database.

  2. Redirects the user to an overview page.


Here is the code for it:



if request.method == 'POST':
review = Review(university=university,
user=User.objects.get(pk=1),
summary=request.POST['summary'])

review.save()

return HttpResponseRedirect(reverse('university_overview', args=(university_id,)))


I haven't yet implemented passing the user data to the endpoint, and that's why I'm saving everything under the user with pk=1.



My test is as follows:



class UniversityAddReviewTestCase(TestCase):
def setUp(self):
user = User.objects.create(username="username", password="password", email="email")
university = University.objects.create(name="Oxford University", country="UK", info="Meh", rating="9")
Review.objects.create(university=university, summary="Very nice", user_id=user.id)
Review.objects.create(university=university, summary="Very bad", user_id=user.id)

new_review = {
'summary': 'It was okay.'
}

self.response = Client().post('/%s/reviews/add' % university.id, new_review)

def test_database_updated(self):
self.assertEqual(len(Review.objects.all()), 3)


The result is this:



  File ".../core/views.py", line 20, in detail
user=User.objects.get(pk=1),
File ".../ENV/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File ".../ENV/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get
self.model._meta.object_name
django.contrib.auth.models.DoesNotExist: User matching query does not exist.


Why is this happening? I know the user I'm creating has a pk=1, as when I actually print it during the test it's 1.







python django unit-testing






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 '18 at 22:08









pavlos163pavlos163

509944




509944













  • is this the only place in your tests where you create a user?

    – Henry Woody
    Nov 19 '18 at 23:39











  • no, I have other tests that create users as well

    – pavlos163
    Nov 19 '18 at 23:49











  • it is however the only user in the specific TestCase class

    – pavlos163
    Nov 19 '18 at 23:50











  • oh and are there are test methods in this TestCase besides test_database_updated?

    – Henry Woody
    Nov 19 '18 at 23:52











  • there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

    – pavlos163
    Nov 20 '18 at 0:08



















  • is this the only place in your tests where you create a user?

    – Henry Woody
    Nov 19 '18 at 23:39











  • no, I have other tests that create users as well

    – pavlos163
    Nov 19 '18 at 23:49











  • it is however the only user in the specific TestCase class

    – pavlos163
    Nov 19 '18 at 23:50











  • oh and are there are test methods in this TestCase besides test_database_updated?

    – Henry Woody
    Nov 19 '18 at 23:52











  • there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

    – pavlos163
    Nov 20 '18 at 0:08

















is this the only place in your tests where you create a user?

– Henry Woody
Nov 19 '18 at 23:39





is this the only place in your tests where you create a user?

– Henry Woody
Nov 19 '18 at 23:39













no, I have other tests that create users as well

– pavlos163
Nov 19 '18 at 23:49





no, I have other tests that create users as well

– pavlos163
Nov 19 '18 at 23:49













it is however the only user in the specific TestCase class

– pavlos163
Nov 19 '18 at 23:50





it is however the only user in the specific TestCase class

– pavlos163
Nov 19 '18 at 23:50













oh and are there are test methods in this TestCase besides test_database_updated?

– Henry Woody
Nov 19 '18 at 23:52





oh and are there are test methods in this TestCase besides test_database_updated?

– Henry Woody
Nov 19 '18 at 23:52













there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

– pavlos163
Nov 20 '18 at 0:08





there is a test_html method that only does self.assertRedirects(self.response, "/4/overview/")

– pavlos163
Nov 20 '18 at 0:08












2 Answers
2






active

oldest

votes


















1














pk is defined by the database. Something could make it not equal to 1 in your test.



Try this in your setUp method



user = User.objects.create_user(
username="username",
password="password",
email="test@example.com",
id=1
)
assert user.pk == 1





share|improve this answer
























  • That worked, thank you! Is there a convention around using create_user instead of just create?

    – pavlos163
    Nov 20 '18 at 0:11













  • create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

    – rikAtee
    Nov 20 '18 at 7:51













  • Yes, I realised, it was a curiosity question :D Thank you.

    – pavlos163
    Nov 20 '18 at 19:10



















0














Take advantage of using self and then you can try this instead:



class UniversityAddReviewTestCase(TestCase):
def setUp(self):
self.user = User.objects.create(
username="username",
password="password",
email="email")

....


and then



if request.method == 'POST':
review = Review(
university=university,
user=self.user,
summary=request.POST['summary'])

review.save()





share|improve this answer























    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%2f53383346%2fquerying-the-database-in-a-django-unit-test%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









    1














    pk is defined by the database. Something could make it not equal to 1 in your test.



    Try this in your setUp method



    user = User.objects.create_user(
    username="username",
    password="password",
    email="test@example.com",
    id=1
    )
    assert user.pk == 1





    share|improve this answer
























    • That worked, thank you! Is there a convention around using create_user instead of just create?

      – pavlos163
      Nov 20 '18 at 0:11













    • create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

      – rikAtee
      Nov 20 '18 at 7:51













    • Yes, I realised, it was a curiosity question :D Thank you.

      – pavlos163
      Nov 20 '18 at 19:10
















    1














    pk is defined by the database. Something could make it not equal to 1 in your test.



    Try this in your setUp method



    user = User.objects.create_user(
    username="username",
    password="password",
    email="test@example.com",
    id=1
    )
    assert user.pk == 1





    share|improve this answer
























    • That worked, thank you! Is there a convention around using create_user instead of just create?

      – pavlos163
      Nov 20 '18 at 0:11













    • create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

      – rikAtee
      Nov 20 '18 at 7:51













    • Yes, I realised, it was a curiosity question :D Thank you.

      – pavlos163
      Nov 20 '18 at 19:10














    1












    1








    1







    pk is defined by the database. Something could make it not equal to 1 in your test.



    Try this in your setUp method



    user = User.objects.create_user(
    username="username",
    password="password",
    email="test@example.com",
    id=1
    )
    assert user.pk == 1





    share|improve this answer













    pk is defined by the database. Something could make it not equal to 1 in your test.



    Try this in your setUp method



    user = User.objects.create_user(
    username="username",
    password="password",
    email="test@example.com",
    id=1
    )
    assert user.pk == 1






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 19 '18 at 22:45









    rikAteerikAtee

    4,88053059




    4,88053059













    • That worked, thank you! Is there a convention around using create_user instead of just create?

      – pavlos163
      Nov 20 '18 at 0:11













    • create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

      – rikAtee
      Nov 20 '18 at 7:51













    • Yes, I realised, it was a curiosity question :D Thank you.

      – pavlos163
      Nov 20 '18 at 19:10



















    • That worked, thank you! Is there a convention around using create_user instead of just create?

      – pavlos163
      Nov 20 '18 at 0:11













    • create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

      – rikAtee
      Nov 20 '18 at 7:51













    • Yes, I realised, it was a curiosity question :D Thank you.

      – pavlos163
      Nov 20 '18 at 19:10

















    That worked, thank you! Is there a convention around using create_user instead of just create?

    – pavlos163
    Nov 20 '18 at 0:11







    That worked, thank you! Is there a convention around using create_user instead of just create?

    – pavlos163
    Nov 20 '18 at 0:11















    create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

    – rikAtee
    Nov 20 '18 at 7:51







    create_user is a method available to the User manager. It hashes the password and a few other actions. Creating a user with just create would result in a user that cannot log in via standard login forms because the password saved in the database in not hashed. That was not the fix though. The fix was specifying id=1

    – rikAtee
    Nov 20 '18 at 7:51















    Yes, I realised, it was a curiosity question :D Thank you.

    – pavlos163
    Nov 20 '18 at 19:10





    Yes, I realised, it was a curiosity question :D Thank you.

    – pavlos163
    Nov 20 '18 at 19:10













    0














    Take advantage of using self and then you can try this instead:



    class UniversityAddReviewTestCase(TestCase):
    def setUp(self):
    self.user = User.objects.create(
    username="username",
    password="password",
    email="email")

    ....


    and then



    if request.method == 'POST':
    review = Review(
    university=university,
    user=self.user,
    summary=request.POST['summary'])

    review.save()





    share|improve this answer




























      0














      Take advantage of using self and then you can try this instead:



      class UniversityAddReviewTestCase(TestCase):
      def setUp(self):
      self.user = User.objects.create(
      username="username",
      password="password",
      email="email")

      ....


      and then



      if request.method == 'POST':
      review = Review(
      university=university,
      user=self.user,
      summary=request.POST['summary'])

      review.save()





      share|improve this answer


























        0












        0








        0







        Take advantage of using self and then you can try this instead:



        class UniversityAddReviewTestCase(TestCase):
        def setUp(self):
        self.user = User.objects.create(
        username="username",
        password="password",
        email="email")

        ....


        and then



        if request.method == 'POST':
        review = Review(
        university=university,
        user=self.user,
        summary=request.POST['summary'])

        review.save()





        share|improve this answer













        Take advantage of using self and then you can try this instead:



        class UniversityAddReviewTestCase(TestCase):
        def setUp(self):
        self.user = User.objects.create(
        username="username",
        password="password",
        email="email")

        ....


        and then



        if request.method == 'POST':
        review = Review(
        university=university,
        user=self.user,
        summary=request.POST['summary'])

        review.save()






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 19 '18 at 23:40









        Marcelo Duarte FernandesMarcelo Duarte Fernandes

        111




        111






























            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%2f53383346%2fquerying-the-database-in-a-django-unit-test%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

            鏡平學校

            ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

            Why https connections are so slow when debugging (stepping over) in Java?