76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
"""
|
|
Factories module to hold microsite factories
|
|
"""
|
|
import factory
|
|
from django.contrib.sites.models import Site
|
|
from factory.django import DjangoModelFactory
|
|
|
|
from microsite_configuration.models import Microsite, MicrositeOrganizationMapping, MicrositeTemplate
|
|
|
|
|
|
class SiteFactory(DjangoModelFactory):
|
|
"""
|
|
Factory for django.contrib.sites.models.Site
|
|
"""
|
|
class Meta(object):
|
|
model = Site
|
|
django_get_or_create = ('domain',)
|
|
|
|
name = "test microsite"
|
|
domain = "test-site.testserver"
|
|
|
|
|
|
class MicrositeFactory(DjangoModelFactory):
|
|
"""
|
|
Factory for Microsite
|
|
"""
|
|
class Meta(object):
|
|
model = Microsite
|
|
|
|
key = "test_site"
|
|
site = factory.SubFactory(SiteFactory)
|
|
values = {
|
|
"domain_prefix": "test-site",
|
|
"university": "test_site",
|
|
"platform_name": "Test Site DB",
|
|
"logo_image_url": "test_site/images/header-logo.png",
|
|
"email_from_address": "test_site@edx.org",
|
|
"payment_support_email": "test_site_dbe@edx.org",
|
|
"ENABLE_MKTG_SITE": False,
|
|
"SITE_NAME": "test_site.localhost",
|
|
"course_org_filter": "TestSiteX",
|
|
"course_about_show_social_links": False,
|
|
"css_overrides_file": "test_site/css/test_site.css",
|
|
"show_partners": False,
|
|
"show_homepage_promo_video": False,
|
|
"course_index_overlay_text": "This is a Test Site Overlay Text.",
|
|
"course_index_overlay_logo_file": "test_site/images/header-logo.png",
|
|
"homepage_overlay_html": "<h1>This is a Test Site Overlay HTML</h1>",
|
|
"ALWAYS_REDIRECT_HOMEPAGE_TO_DASHBOARD_FOR_AUTHENTICATED_USER": False,
|
|
"COURSE_CATALOG_VISIBILITY_PERMISSION": "see_in_catalog",
|
|
"COURSE_ABOUT_VISIBILITY_PERMISSION": "see_about_page",
|
|
"ENABLE_SHOPPING_CART": True,
|
|
"ENABLE_PAID_COURSE_REGISTRATION": True,
|
|
"SESSION_COOKIE_DOMAIN": "test_site.localhost",
|
|
"nested_dict": {
|
|
"key 1": "value 1",
|
|
"key 2": "value 2",
|
|
}
|
|
}
|
|
|
|
|
|
class MicrositeOrganizationMappingFactory(DjangoModelFactory):
|
|
"""
|
|
Factory for MicrositeOrganizationMapping
|
|
"""
|
|
class Meta(object):
|
|
model = MicrositeOrganizationMapping
|
|
|
|
|
|
class MicrositeTemplateFactory(DjangoModelFactory):
|
|
"""
|
|
Factory for MicrositeTemplate
|
|
"""
|
|
class Meta(object):
|
|
model = MicrositeTemplate
|