Merge branch 'master' into dave/block_forums_for_unenrolled
This commit is contained in:
@@ -66,6 +66,13 @@ def add_tab_to_course(_step, course, extra_tab_name):
|
||||
display_name=str(extra_tab_name))
|
||||
|
||||
|
||||
@step(u'I am in a course$')
|
||||
def go_into_course(step):
|
||||
step.given('I am registered for the course "6.002x"')
|
||||
step.given('And I am logged in')
|
||||
step.given('And I click on View Courseware')
|
||||
|
||||
|
||||
def course_id(course_num):
|
||||
return "%s/%s/%s" % (world.scenario_dict['COURSE'].org, course_num,
|
||||
world.scenario_dict['COURSE'].display_name.replace(" ", "_"))
|
||||
|
||||
31
lms/djangoapps/courseware/features/help.feature
Normal file
31
lms/djangoapps/courseware/features/help.feature
Normal file
@@ -0,0 +1,31 @@
|
||||
Feature: The help module should work
|
||||
In order to get help
|
||||
As a student
|
||||
I want to be able to report a problem
|
||||
|
||||
|
||||
Scenario: I can submit a problem when I am not logged in
|
||||
Given I visit the homepage
|
||||
When I open the help form
|
||||
And I report a "<FeedbackType>"
|
||||
Then I should see confirmation that the issue was received
|
||||
|
||||
Examples:
|
||||
| FeedbackType |
|
||||
| problem |
|
||||
| suggestion |
|
||||
| question |
|
||||
|
||||
|
||||
Scenario: I can submit a problem when I am logged in
|
||||
Given I am in a course
|
||||
When I open the help form
|
||||
And I report a "<FeedbackType>" without saying who I am
|
||||
Then I should see confirmation that the issue was received
|
||||
|
||||
Examples:
|
||||
| FeedbackType |
|
||||
| problem |
|
||||
| suggestion |
|
||||
| question |
|
||||
|
||||
45
lms/djangoapps/courseware/features/help.py
Normal file
45
lms/djangoapps/courseware/features/help.py
Normal file
@@ -0,0 +1,45 @@
|
||||
#pylint: disable=C0111
|
||||
#pylint: disable=W0621
|
||||
|
||||
from lettuce import world, step
|
||||
|
||||
|
||||
@step(u'I open the help form')
|
||||
def open_help_modal(step):
|
||||
help_css = 'div.help-tab'
|
||||
world.css_click(help_css)
|
||||
|
||||
|
||||
@step(u'I report a "([^"]*)"$')
|
||||
def submit_problem_type(step, submission_type):
|
||||
type_css = '#feedback_link_{}'.format(submission_type)
|
||||
world.css_click(type_css)
|
||||
fill_field('name', 'Robot')
|
||||
fill_field('email', 'robot@edx.org')
|
||||
fill_field('subject', 'Test Issue')
|
||||
fill_field('details', 'I am having a problem')
|
||||
submit_css = 'div.submit'
|
||||
world.css_click(submit_css)
|
||||
|
||||
|
||||
@step(u'I report a "([^"]*)" without saying who I am$')
|
||||
def submit_partial_problem_type(step, submission_type):
|
||||
type_css = '#feedback_link_{}'.format(submission_type)
|
||||
world.css_click(type_css)
|
||||
fill_field('subject', 'Test Issue')
|
||||
fill_field('details', 'I am having a problem')
|
||||
submit_css = 'div.submit'
|
||||
world.css_click(submit_css)
|
||||
|
||||
|
||||
@step(u'I should see confirmation that the issue was received')
|
||||
def see_confirmation(step):
|
||||
assert world.browser.evaluate_script("$('input[value=\"Submit\"]').attr('disabled')") == 'disabled'
|
||||
|
||||
|
||||
def fill_field(name, info):
|
||||
def fill_info():
|
||||
form_css = 'form.feedback_form'
|
||||
form = world.css_find(form_css)
|
||||
form.find_by_name(name).fill(info)
|
||||
world.retry_on_exception(fill_info)
|
||||
@@ -87,6 +87,9 @@ MITX_FEATURES['AUTOMATIC_AUTH_FOR_TESTING'] = True
|
||||
# We do not yet understand why this occurs. Setting this to true is a stopgap measure
|
||||
USE_I18N = True
|
||||
|
||||
MITX_FEATURES['ENABLE_FEEDBACK_SUBMISSION'] = True
|
||||
FEEDBACK_SUBMISSION_EMAIL = 'dummy@example.com'
|
||||
|
||||
# Include the lettuce app for acceptance testing, including the 'harvest' django-admin command
|
||||
INSTALLED_APPS += ('lettuce.django',)
|
||||
LETTUCE_APPS = ('courseware',)
|
||||
|
||||
Reference in New Issue
Block a user