Instead, we use XModule field default values when creating an empty XModule. Driven by this use case, we also allow for XModules to be created in memory without being persisted to the database at all. This necessitates a change to the Modulestore api, replacing clone_item with create_draft and save_xmodule.
56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
#pylint: disable=C0111
|
|
|
|
from lettuce import world, step
|
|
from lettuce.django import django_url
|
|
from common import i_am_registered_for_the_course, section_location
|
|
|
|
############### ACTIONS ####################
|
|
|
|
|
|
@step('when I view the video it has autoplay enabled')
|
|
def does_autoplay(_step):
|
|
assert(world.css_find('.video')[0]['data-autoplay'] == 'True')
|
|
|
|
|
|
@step('the course has a Video component')
|
|
def view_video(_step):
|
|
coursenum = 'test_course'
|
|
i_am_registered_for_the_course(step, coursenum)
|
|
|
|
# Make sure we have a video
|
|
add_video_to_course(coursenum)
|
|
chapter_name = world.scenario_dict['SECTION'].display_name.replace(" ", "_")
|
|
section_name = chapter_name
|
|
url = django_url('/courses/%s/%s/%s/courseware/%s/%s' %
|
|
(world.scenario_dict['COURSE'].org, world.scenario_dict['COURSE'].number, world.scenario_dict['COURSE'].display_name.replace(' ', '_'),
|
|
chapter_name, section_name,))
|
|
world.browser.visit(url)
|
|
|
|
|
|
@step('the course has a VideoAlpha component')
|
|
def view_videoalpha(step):
|
|
coursenum = 'test_course'
|
|
i_am_registered_for_the_course(step, coursenum)
|
|
|
|
# Make sure we have a videoalpha
|
|
add_videoalpha_to_course(coursenum)
|
|
chapter_name = world.scenario_dict['SECTION'].display_name.replace(" ", "_")
|
|
section_name = chapter_name
|
|
url = django_url('/courses/%s/%s/%s/courseware/%s/%s' %
|
|
(world.scenario_dict['COURSE'].org, world.scenario_dict['COURSE'].number, world.scenario_dict['COURSE'].display_name.replace(' ', '_'),
|
|
chapter_name, section_name,))
|
|
world.browser.visit(url)
|
|
|
|
|
|
def add_video_to_course(course):
|
|
world.ItemFactory.create(parent_location=section_location(course),
|
|
category='video',
|
|
display_name='Video')
|
|
|
|
|
|
def add_videoalpha_to_course(course):
|
|
category = 'videoalpha'
|
|
world.ItemFactory.create(parent_location=section_location(course),
|
|
category=category,
|
|
display_name='Video Alpha')
|