Skip to content

Commit 46b1469

Browse files
committed
Initial direct upload test
1 parent 5320518 commit 46b1469

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

styleguide_example/files/tests/flows/test_direct_upload.py

+15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
from django.test import TestCase
2+
from django.urls import reverse
3+
4+
from rest_framework.test import APIClient
25

36

47
class DirectUploadApiTests(TestCase):
@@ -7,3 +10,15 @@ class DirectUploadApiTests(TestCase):
710
811
1. A start-upload-finish cycle, where we patch the presign generation with local upload storage.
912
"""
13+
def setUp(self):
14+
self.client = APIClient()
15+
16+
self.direct_upload_start_url = reverse("api:files:upload:direct:start")
17+
self.direct_upload_finish_url = reverse("api:files:upload:direct:finish")
18+
self.direct_upload_local_url = lambda file: reverse(
19+
"api:files:upload:direct:local",
20+
kwargs={"file_id": str(file.id)}
21+
)
22+
23+
def test_direct_upload(self):
24+
pass

0 commit comments

Comments
 (0)