forked from bradleyg/django-s3direct
-
Notifications
You must be signed in to change notification settings - Fork 1
/
runtests.py
93 lines (87 loc) · 2.71 KB
/
runtests.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
"""Tests for s3direct package."""
from os import environ
import sys
from distutils.version import StrictVersion
import django
from django.conf import settings
settings.configure(
DEBUG=True,
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
},
ROOT_URLCONF='s3direct.urls',
INSTALLED_APPS=(
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
's3direct',
),
MIDDLEWARE=(
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
),
MIDDLEWARE_CLASSES=(
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
),
TEMPLATES=[
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
"django.contrib.auth.context_processors.auth",
]
}
},
],
AWS_ACCESS_KEY_ID=environ.get('AWS_ACCESS_KEY_ID', ''),
AWS_SECRET_ACCESS_KEY=environ.get('AWS_SECRET_ACCESS_KEY', ''),
AWS_STORAGE_BUCKET_NAME=environ.get(
'AWS_STORAGE_BUCKET_NAME', 'test-bucket'),
S3DIRECT_REGION='us-east-1',
S3DIRECT_DESTINATIONS={
'misc': {
'key': lambda original_filename: 'images/unique.jpg',
},
'files': {
'key': 'uploads/files',
'auth': lambda u: u.is_staff,
},
'imgs': {
'key': 'uploads/imgs',
'auth': lambda u: True,
'allowed': ['image/jpeg', 'image/png'],
'content_length_range': (5000, 20000000), # 5kb - 20mb
},
'vids': {
'key': 'uploads/vids',
'auth': lambda u: u.is_authenticated(),
'allowed': ['video/mp4'],
},
'cached': {
'key': 'uploads/vids',
'auth': lambda u: True,
'allowed': '*',
'acl': 'authenticated-read',
'bucket': 'astoragebucketname',
'cache_control': 'max-age=2592000',
'content_disposition': 'attachment',
'server_side_encryption': 'AES256',
}
}
)
if hasattr(django, 'setup'):
django.setup()
if django.get_version() < StrictVersion('1.6'):
from django.test.simple import DjangoTestSuiteRunner
test_runner = DjangoTestSuiteRunner(verbosity=1)
else:
from django.test.runner import DiscoverRunner
test_runner = DiscoverRunner(verbosity=1)
failures = test_runner.run_tests(['s3direct', ])
if failures:
sys.exit(failures)