178 lines
6.4 KiB
Python
178 lines
6.4 KiB
Python
"""
|
|
Tests for video outline API
|
|
"""
|
|
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
|
|
from xmodule.video_module import transcripts_utils
|
|
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
|
|
from courseware.tests.factories import UserFactory
|
|
from courseware.tests.tests import TEST_DATA_MONGO_MODULESTORE
|
|
from django.core.urlresolvers import reverse
|
|
from django.test.utils import override_settings
|
|
from django.conf import settings
|
|
from rest_framework.test import APITestCase
|
|
from edxval import api
|
|
from uuid import uuid4
|
|
import copy
|
|
|
|
TEST_DATA_CONTENTSTORE = copy.deepcopy(settings.CONTENTSTORE)
|
|
TEST_DATA_CONTENTSTORE['DOC_STORE_CONFIG']['db'] = 'test_xcontent_%s' % uuid4().hex
|
|
|
|
|
|
@override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE, CONTENTSTORE=TEST_DATA_CONTENTSTORE)
|
|
class TestVideoOutline(ModuleStoreTestCase, APITestCase):
|
|
"""
|
|
Tests for /api/mobile/v0.5/video_outlines/
|
|
"""
|
|
def setUp(self):
|
|
super(TestVideoOutline, self).setUp()
|
|
self.user = UserFactory.create()
|
|
self.course = CourseFactory.create(mobile_available=True)
|
|
section = ItemFactory.create(
|
|
parent_location=self.course.location,
|
|
category="chapter",
|
|
display_name=u"test factory section omega \u03a9",
|
|
)
|
|
self.sub_section = ItemFactory.create(
|
|
parent_location=section.location,
|
|
category="sequential",
|
|
display_name=u"test subsection omega \u03a9",
|
|
)
|
|
|
|
self.unit = ItemFactory.create(
|
|
parent_location=self.sub_section.location,
|
|
category="vertical",
|
|
metadata={'graded': True, 'format': 'Homework'},
|
|
display_name=u"test unit omega \u03a9",
|
|
)
|
|
self.other_unit = ItemFactory.create(
|
|
parent_location=self.sub_section.location,
|
|
category="vertical",
|
|
metadata={'graded': True, 'format': 'Homework'},
|
|
display_name=u"test unit omega 2 \u03a9",
|
|
)
|
|
|
|
self.edx_video_id = 'testing-123'
|
|
|
|
self.video_url = 'http://val.edx.org/val/video.mp4'
|
|
self.html5_video_url = 'http://video.edx.org/html5/video.mp4'
|
|
|
|
api.create_profile({
|
|
'profile_name': 'youtube',
|
|
'extension': 'mp4',
|
|
'width': 1280,
|
|
'height': 720
|
|
})
|
|
api.create_profile({
|
|
'profile_name': 'mobile_low',
|
|
'extension': 'mp4',
|
|
'width': 640,
|
|
'height': 480
|
|
})
|
|
|
|
# create the video in VAL
|
|
api.create_video({
|
|
'edx_video_id': self.edx_video_id,
|
|
'client_video_id': u"test video omega \u03a9",
|
|
'duration': 12,
|
|
'courses': [unicode(self.course.id)],
|
|
'encoded_videos': [
|
|
{
|
|
'profile': 'youtube',
|
|
'url': 'xyz123',
|
|
'file_size': 0,
|
|
'bitrate': 1500
|
|
},
|
|
{
|
|
'profile': 'mobile_low',
|
|
'url': self.video_url,
|
|
'file_size': 12345,
|
|
'bitrate': 250
|
|
}
|
|
]})
|
|
|
|
subid = uuid4().hex
|
|
self.video = ItemFactory.create(
|
|
parent_location=self.unit.location,
|
|
category="video",
|
|
edx_video_id=self.edx_video_id,
|
|
display_name=u"test video omega \u03a9",
|
|
sub=subid
|
|
)
|
|
|
|
transcripts_utils.save_subs_to_store({
|
|
'start': [100, 200, 240, 390, 1000],
|
|
'end': [200, 240, 380, 1000, 1500],
|
|
'text': [
|
|
'subs #1',
|
|
'subs #2',
|
|
'subs #3',
|
|
'subs #4',
|
|
'subs #5'
|
|
]},
|
|
subid,
|
|
self.course)
|
|
|
|
self.client.login(username=self.user.username, password='test')
|
|
|
|
def test_course_not_available(self):
|
|
nonmobile = CourseFactory.create()
|
|
url = reverse('video-summary-list', kwargs={'course_id': unicode(nonmobile.id)})
|
|
response = self.client.get(url)
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
def test_course_list(self):
|
|
ItemFactory.create(
|
|
parent_location=self.other_unit.location,
|
|
category="video",
|
|
display_name=u"test video omega 2 \u03a9",
|
|
html5_sources=[self.html5_video_url]
|
|
)
|
|
ItemFactory.create(
|
|
parent_location=self.other_unit.location,
|
|
category="video",
|
|
display_name=u"test video omega 3 \u03a9",
|
|
source=self.html5_video_url
|
|
)
|
|
|
|
ItemFactory.create(
|
|
parent_location=self.unit.location,
|
|
category="video",
|
|
edx_video_id=self.edx_video_id,
|
|
display_name=u"test draft video omega \u03a9",
|
|
visible_to_staff_only=True,
|
|
)
|
|
|
|
url = reverse('video-summary-list', kwargs={'course_id': unicode(self.course.id)})
|
|
response = self.client.get(url)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
course_outline = response.data # pylint: disable=E1103
|
|
self.assertEqual(len(course_outline), 3)
|
|
vid = course_outline[0]
|
|
self.assertTrue('test_subsection_omega_%CE%A9' in vid['section_url'])
|
|
self.assertTrue('test_subsection_omega_%CE%A9/1' in vid['unit_url'])
|
|
self.assertTrue(u'test_video_omega_\u03a9' in vid['summary']['id'])
|
|
self.assertEqual(vid['summary']['video_url'], self.video_url)
|
|
self.assertEqual(vid['summary']['size'], 12345)
|
|
self.assertTrue('en' in vid['summary']['transcripts'])
|
|
self.assertEqual(course_outline[1]['summary']['video_url'], self.html5_video_url)
|
|
self.assertEqual(course_outline[1]['summary']['size'], 0)
|
|
|
|
self.assertEqual(course_outline[2]['summary']['video_url'], self.html5_video_url)
|
|
self.assertEqual(course_outline[2]['summary']['size'], 0)
|
|
|
|
def test_transcripts(self):
|
|
kwargs = {
|
|
'course_id': unicode(self.course.id),
|
|
'block_id': unicode(self.video.scope_ids.usage_id.block_id),
|
|
'lang': 'pl'
|
|
}
|
|
url = reverse('video-transcripts-detail', kwargs=kwargs)
|
|
response = self.client.get(url)
|
|
self.assertEqual(response.status_code, 404)
|
|
|
|
kwargs['lang'] = 'en'
|
|
url = reverse('video-transcripts-detail', kwargs=kwargs)
|
|
response = self.client.get(url)
|
|
self.assertEqual(response.status_code, 200)
|