Created
March 21, 2019 09:09
-
-
Save nghiaht/682c2d8d40272c52dbf7adf214f1c0f1 to your computer and use it in GitHub Desktop.
Revisions
-
nghiaht created this gist
Mar 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ from django.test import TestCase from rest_framework.test import APIClient class FileUploadTestCase(TestCase): def test_upload(self): client = APIClient() client.credentials(HTTP_AUTHORIZATION='Token ' + self.token.key) # or self.client (Django https://docs.djangoproject.com/en/dev/topics/testing/advanced/) response = client.post(reverse('upload-file'), { "image": open("tests/test.png", "rb"), "name": "test" }) self.assertEqual(200, response.status_code)