Tests for staticbook
This commit is contained in:
138
lms/djangoapps/staticbook/tests.py
Normal file
138
lms/djangoapps/staticbook/tests.py
Normal file
@@ -0,0 +1,138 @@
|
||||
"""
|
||||
Test the /staticbook views.
|
||||
"""
|
||||
|
||||
from django.test.utils import override_settings
|
||||
from django.core.urlresolvers import reverse
|
||||
|
||||
from courseware.tests.tests import TEST_DATA_MONGO_MODULESTORE
|
||||
from student.tests.factories import UserFactory, CourseEnrollmentFactory
|
||||
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
|
||||
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
|
||||
|
||||
|
||||
PDF_BOOK = {
|
||||
"tab_title": "Textbook",
|
||||
"title": "A PDF Textbook",
|
||||
"chapters": [
|
||||
{ "title": "Chapter 1 for PDF", "url": "https://somehost.com/the_book/chap1.pdf" },
|
||||
{ "title": "Chapter 2 for PDF", "url": "https://somehost.com/the_book/chap2.pdf" },
|
||||
],
|
||||
}
|
||||
|
||||
HTML_BOOK = {
|
||||
"tab_title": "Textbook",
|
||||
"title": "An HTML Textbook",
|
||||
"chapters": [
|
||||
{ "title": "Chapter 1 for HTML", "url": "https://somehost.com/the_book/chap1.html" },
|
||||
{ "title": "Chapter 2 for HTML", "url": "https://somehost.com/the_book/chap2.html" },
|
||||
],
|
||||
}
|
||||
|
||||
@override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE)
|
||||
class StaticBookTest(ModuleStoreTestCase):
|
||||
"""
|
||||
Helpers for the static book tests.
|
||||
"""
|
||||
|
||||
def make_course(self, **kwargs):
|
||||
"""
|
||||
Make a course with an enrolled logged-in student.
|
||||
"""
|
||||
course = CourseFactory.create(**kwargs)
|
||||
self.user = UserFactory.create()
|
||||
CourseEnrollmentFactory.create(user=self.user, course_id=course.id)
|
||||
self.client.login(username=self.user.username, password='test')
|
||||
return course
|
||||
|
||||
|
||||
class StaticPdfBookTest(StaticBookTest):
|
||||
"""
|
||||
Test the PDF static book view.
|
||||
"""
|
||||
|
||||
def test_book(self):
|
||||
# We can access a book.
|
||||
course = self.make_course(pdf_textbooks=[PDF_BOOK])
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 0})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 1 for PDF")
|
||||
self.assertNotContains(response, "options.chapterNum =")
|
||||
self.assertNotContains(response, "options.pageNum =")
|
||||
|
||||
def test_book_chapter(self):
|
||||
# We can access a book at a particular chapter.
|
||||
course = self.make_course(pdf_textbooks=[PDF_BOOK])
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 0, 'chapter': 2})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 2 for PDF")
|
||||
self.assertContains(response, "options.chapterNum = 2;")
|
||||
self.assertNotContains(response, "options.pageNum =")
|
||||
|
||||
def test_book_page(self):
|
||||
# We can access a book at a particular page.
|
||||
course = self.make_course(pdf_textbooks=[PDF_BOOK])
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 0, 'page': 17})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 1 for PDF")
|
||||
self.assertNotContains(response, "options.chapterNum =")
|
||||
self.assertContains(response, "options.pageNum = 17;")
|
||||
|
||||
def test_book_chapter_page(self):
|
||||
# We can access a book at a particular chapter and page.
|
||||
course = self.make_course(pdf_textbooks=[PDF_BOOK])
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 0, 'chapter': 2, 'page': 17})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 2 for PDF")
|
||||
self.assertContains(response, "options.chapterNum = 2;")
|
||||
self.assertContains(response, "options.pageNum = 17;")
|
||||
|
||||
def test_bad_book_id(self):
|
||||
# If we have one book, asking for the second book will fail with a 404.
|
||||
course = self.make_course(pdf_textbooks=[PDF_BOOK])
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 1, 'chapter': 1})
|
||||
response = self.client.get(url)
|
||||
self.assertEqual(response.status_code, 404)
|
||||
|
||||
def test_no_book(self):
|
||||
# If we have no books, asking for the first book will fail with a 404.
|
||||
course = self.make_course()
|
||||
url = reverse('pdf_book', kwargs={'course_id': course.id, 'book_index': 0, 'chapter': 1})
|
||||
response = self.client.get(url)
|
||||
self.assertEqual(response.status_code, 404)
|
||||
|
||||
|
||||
class StaticHtmlBookTest(StaticBookTest):
|
||||
"""
|
||||
Test the HTML static book view.
|
||||
"""
|
||||
|
||||
def test_book(self):
|
||||
# We can access a book.
|
||||
course = self.make_course(html_textbooks=[HTML_BOOK])
|
||||
url = reverse('html_book', kwargs={'course_id': course.id, 'book_index': 0})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 1 for HTML")
|
||||
self.assertNotContains(response, "options.chapterNum =")
|
||||
|
||||
def test_book_chapter(self):
|
||||
# We can access a book at a particular chapter.
|
||||
course = self.make_course(html_textbooks=[HTML_BOOK])
|
||||
url = reverse('html_book', kwargs={'course_id': course.id, 'book_index': 0, 'chapter': 2})
|
||||
response = self.client.get(url)
|
||||
self.assertContains(response, "Chapter 2 for HTML")
|
||||
self.assertContains(response, "options.chapterNum = 2;")
|
||||
|
||||
def test_bad_book_id(self):
|
||||
# If we have one book, asking for the second book will fail with a 404.
|
||||
course = self.make_course(html_textbooks=[HTML_BOOK])
|
||||
url = reverse('html_book', kwargs={'course_id': course.id, 'book_index': 1, 'chapter': 1})
|
||||
response = self.client.get(url)
|
||||
self.assertEqual(response.status_code, 404)
|
||||
|
||||
def test_no_book(self):
|
||||
# If we have no books, asking for the first book will fail with a 404.
|
||||
course = self.make_course()
|
||||
url = reverse('html_book', kwargs={'course_id': course.id, 'book_index': 0, 'chapter': 1})
|
||||
response = self.client.get(url)
|
||||
self.assertEqual(response.status_code, 404)
|
||||
Reference in New Issue
Block a user