您好,登錄后才能下訂單哦!
這篇文章主要介紹了Django REST framework單元測試的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
環境
Win10
Python3.7
Django2.2
項目
參照官網 快速開始 寫了一個 demo
測試
參照官網 測試
和 Django 的測試差不多
創建 tutorial/tests/tests.py
import json from django.test import TestCase from rest_framework import status from rest_framework.test import APIClient class LittleTestCase(TestCase): def setUp(self): self.click = APIClient() def test_users_post(self): # /users/ POST data = { "username": "tom", "email": "tom@example.com" } response = self.client.post("/users/", data) self.assertEqual(response.status_code, status.HTTP_201_CREATED) # /users/:id GET 地址 response_content = json.loads(response.content) user_url = response_content["url"] # /users/:id GET 檢查新增用戶是否符合預期 response = self.client.get(user_url) response_content = json.loads(response.content) self.assertEqual(response.status_code, 200) self.assertEqual("tom", response_content["username"]) self.assertEqual("tom@example.com", response_content["email"])
執行測試
python manage.py test <測試文件所在目錄>
python manage.py test tests/
測試結果
執行一個測試成功
測試前創建測試數據庫,測試完畢刪除數據庫
Creating test database for alias 'default'... System check identified no issues (0 silenced). . ---------------------------------------------------------------------- Ran 1 test in 0.022s OK Destroying test database for alias 'default'...
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Django REST framework單元測試的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。