forked from python/pythondotorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactories.py
40 lines (30 loc) · 907 Bytes
/
factories.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
import json
import pathlib
import factory
from django.conf import settings
from factory.django import DjangoModelFactory
from .models import Box
from users.factories import UserFactory
class BoxFactory(DjangoModelFactory):
class Meta:
model = Box
django_get_or_create = ('label',)
creator = factory.SubFactory(UserFactory)
content = factory.Faker('sentence', nb_words=10)
def initial_data():
boxes = []
fixtures_dir = pathlib.Path(settings.FIXTURE_DIRS[0])
boxes_json = fixtures_dir / 'boxes.json'
with boxes_json.open() as f:
data = json.loads(f.read())
for d in data:
fields = d['fields']
box = BoxFactory(
label=fields['label'],
content_markup_type=fields['content_markup_type'],
content=fields['content'],
)
boxes.append(box)
return {
'boxes': boxes,
}