forked from nsi-iff/nsi_site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterrain.py
66 lines (47 loc) · 1.59 KB
/
terrain.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
import os
from django.core.management import call_command
from django.contrib.auth.models import User
from django.conf import settings
from selenium.firefox.firefox_profile import FirefoxProfile
from splinter.browser import Browser
from lettuce import after, before, world
from web_steps import *
@before.all
def set_browser():
enable_selenium_specs_to_run_offline()
world.browser = Browser()
def enable_selenium_specs_to_run_offline():
prefs = FirefoxProfile._get_webdriver_prefs()
prefs['network.manage-offline-status'] = 'false'
@staticmethod
def prefs_func():
return prefs
FirefoxProfile._get_webdriver_prefs = prefs_func
@before.each_scenario
def clean_database(scenario):
clean_data()
create_admin()
clean_media()
def clean_data():
call_command('flush', interactive=False)
call_command('loaddata', 'all')
def create_admin():
User.objects.create_superuser('admin', '[email protected]', 'admin')
def clean_media():
clean_media_by_kind('images')
clean_media_by_kind('files')
def clean_media_by_kind(kind):
images_dir = os.path.join(settings.MEDIA_ROOT, kind)
for file_name in os.listdir(images_dir):
clean_all(os.path.join(images_dir, file_name))
def clean_all(directory):
for file_name in os.listdir(directory):
absname = os.path.join(directory, file_name)
if os.path.isdir(absname) and file_name not in ['.', '..']:
clean_all(absname)
elif not file_name.startswith('.'):
os.unlink(absname)
@after.all
def finish_him(total_result):
world.browser.quit()
clean_media()