Review from Cale
This commit is contained in:
@@ -69,6 +69,20 @@ class TestNavigation(ModuleStoreTestCase, LoginEnrollmentTestCase):
|
||||
|
||||
self.staff_user = GlobalStaffFactory()
|
||||
|
||||
def assertTabActive(self, tabname, response):
|
||||
''' Check if the progress tab is active in the tab set '''
|
||||
for line in response.content.split('\n'):
|
||||
if tabname in line and 'active' in line:
|
||||
return
|
||||
raise AssertionError("assertTabActive failed: "+tabname+" not active")
|
||||
|
||||
def assertTabInactive(self, tabname, response):
|
||||
''' Check if the progress tab is active in the tab set '''
|
||||
for line in response.content.split('\n'):
|
||||
if tabname in line and 'active' in line:
|
||||
raise AssertionError("assertTabInactive failed: "+tabname+" active")
|
||||
return
|
||||
|
||||
def test_chrome_settings(self):
|
||||
'''
|
||||
Test settings for disabling and modifying navigation chrome in the courseware:
|
||||
@@ -84,34 +98,28 @@ class TestNavigation(ModuleStoreTestCase, LoginEnrollmentTestCase):
|
||||
('none', False, False),
|
||||
('fullchrome', True, True),
|
||||
('accordion', True, False),
|
||||
('fullchrome', True, True))
|
||||
('fullchrome', True, True)
|
||||
)
|
||||
for (displayname, accordion, tabs) in test_data:
|
||||
response = self.client.get(reverse('courseware_section', kwargs={
|
||||
'course_id': self.course.id.to_deprecated_string(),
|
||||
'chapter': 'Chrome',
|
||||
'section': displayname,
|
||||
}))
|
||||
'course_id': self.course.id.to_deprecated_string(),
|
||||
'chapter': 'Chrome',
|
||||
'section': displayname,
|
||||
}))
|
||||
self.assertEquals('open_close_accordion' in response.content, accordion)
|
||||
self.assertEquals('course-tabs' in response.content, tabs)
|
||||
|
||||
def tab_active(tabname, response):
|
||||
''' Check if the progress tab is active in the tab set '''
|
||||
for line in response.content.split('\n'):
|
||||
if tabname in line and 'active' in line:
|
||||
return True
|
||||
return False
|
||||
|
||||
self.assertFalse(tab_active('progress', response))
|
||||
self.assertTrue(tab_active('courseware', response))
|
||||
self.assertTabInactive('progress', response)
|
||||
self.assertTabActive('courseware', response)
|
||||
|
||||
response = self.client.get(reverse('courseware_section', kwargs={
|
||||
'course_id': self.course.id.to_deprecated_string(),
|
||||
'chapter': 'Chrome',
|
||||
'section': 'progress_tab',
|
||||
}))
|
||||
'course_id': self.course.id.to_deprecated_string(),
|
||||
'chapter': 'Chrome',
|
||||
'section': 'progress_tab',
|
||||
}))
|
||||
|
||||
self.assertTrue(tab_active('progress', response))
|
||||
self.assertFalse(tab_active('courseware', response))
|
||||
self.assertTabActive('progress', response)
|
||||
self.assertTabInactive('courseware', response)
|
||||
|
||||
@override_settings(SESSION_INACTIVITY_TIMEOUT_IN_SECONDS=1)
|
||||
def test_inactive_session_timeout(self):
|
||||
|
||||
@@ -19,19 +19,19 @@ class LmsBlockMixin(XBlockMixin):
|
||||
scope=Scope.settings,
|
||||
)
|
||||
chrome = String(
|
||||
help="Which chrome to show. Options: "
|
||||
"chromeless -- No chrome"
|
||||
"tabs -- just tabs"
|
||||
"accordion -- just accordion"
|
||||
help="Which chrome to show. Options: \n"
|
||||
"chromeless -- No chrome\n"
|
||||
"tabs -- just tabs\n"
|
||||
"accordion -- just accordion\n"
|
||||
"tabs,accordion -- Full Chrome",
|
||||
scope=Scope.settings,
|
||||
default = None,
|
||||
default=None,
|
||||
)
|
||||
default_tab = String(
|
||||
help="Override which tab is selected."
|
||||
help="Override which tab is selected. "
|
||||
"If not set, courseware tab is shown.",
|
||||
scope=Scope.settings,
|
||||
default = None,
|
||||
default=None,
|
||||
)
|
||||
source_file = String(help="source file name (eg for latex)", scope=Scope.settings)
|
||||
ispublic = Boolean(help="Whether this course is open to the public, or only to admins", scope=Scope.settings)
|
||||
|
||||
@@ -189,7 +189,7 @@ ${fragment.foot_html()}
|
||||
<div class="container">
|
||||
<div class="course-wrapper">
|
||||
|
||||
% if not disable_accordion:
|
||||
% if disable_accordion is UNDEFINED:
|
||||
<div class="course-index" role="navigation">
|
||||
<header id="open_close_accordion">
|
||||
<a href="#">${_("close")}</a>
|
||||
|
||||
Reference in New Issue
Block a user