-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_file_models.py
75 lines (59 loc) · 2.11 KB
/
test_file_models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import pytest
from django.contrib.auth import get_user_model
from graphql_relay import to_global_id
from creator.studies.models import Study
from creator.studies.factories import StudyFactory
from creator.files.models import File
from creator.files.factories import FileFactory, VersionFactory
User = get_user_model()
def test_default_types(db, clients, upload_file):
"""
Test that default types are always in the valid_types.
"""
client = clients.get("Administrators")
study = StudyFactory()
resp = upload_file(study.kf_id, "manifest.txt", client)
kf_id = resp.json()["data"]["createFile"]["file"]["kfId"]
file = File.objects.get(kf_id=kf_id)
version = file.versions.latest("created_at")
assert set(file.valid_types) == {"OTH", "DBG", "FAM"}
assert file.valid_types == version.valid_types
def test_s3_scrape(db, clients, upload_file):
"""
Test that s3 scrape type is included for valid files.
"""
client = clients.get("Administrators")
study = StudyFactory()
resp = upload_file(study.kf_id, "SD_ME0WME0W/s3_scrape.csv", client)
kf_id = resp.json()["data"]["createFile"]["file"]["kfId"]
file = File.objects.get(kf_id=kf_id)
version = file.versions.latest("created_at")
assert "S3S" in file.valid_types
assert file.valid_types == version.valid_types
def test_set_storage(db, settings):
"""
Test Version.set_storage
"""
# File storage
fv = VersionFactory()
fv.set_storage()
assert "FileSystemStorage" in str(fv.key.storage)
# S3 storage - get study from root_file
s3_storage = "django_s3_storage.storage.S3Storage"
settings.DEFAULT_FILE_STORAGE = s3_storage
fv.set_storage()
assert fv.key.storage.settings.AWS_S3_BUCKET_NAME == (
fv.root_file.study.bucket
)
# S3 storage - get study from prop
study = fv.root_file.study
fv.study = study
fv.set_storage()
assert fv.key.storage.settings.AWS_S3_BUCKET_NAME == (
fv.root_file.study.bucket
)
# No study
fv.root_file = None
fv.study = None
with pytest.raises(Study.DoesNotExist):
fv.set_storage()