Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
def test_plus_days(self):
datespec = "homework_due 1 + 1 day"
time = datetime.datetime(2018, 12, 31, tzinfo=pytz.UTC)
factories.EventFactory(
course=self.course, kind="homework_due", ordinal=1,
time=time)
self.assertEqual(
content.parse_date_spec(self.course, datespec, vctx=self.vctx),
datetime.datetime(2019, 1, 1, tzinfo=pytz.UTC))
self.assertEqual(self.mock_add_warning.call_count, 0)
def test_plus_weeks(self):
datespec = "homework_due 1 + 2 weeks"
time = datetime.datetime(2018, 12, 31, tzinfo=pytz.UTC)
factories.EventFactory(
course=self.course, kind="homework_due", ordinal=1,
time=time)
self.assertEqual(
content.parse_date_spec(self.course, datespec, vctx=self.vctx),
datetime.datetime(2019, 1, 14, tzinfo=pytz.UTC))
self.assertEqual(self.mock_add_warning.call_count, 0)
def test_plus_minutes(self):
datespec = "homework_due 1 + 2 hour - 59 minutes"
time = datetime.datetime(2018, 12, 31, tzinfo=pytz.UTC)
factories.EventFactory(
course=self.course, kind="homework_due", ordinal=1,
time=time)
self.assertEqual(
content.parse_date_spec(self.course, datespec, vctx=self.vctx),
datetime.datetime(2018, 12, 31, 1, 1, tzinfo=pytz.UTC))
self.assertEqual(self.mock_add_warning.call_count, 0)
def test_plus_invalid_time_unit(self):
datespec = "homework_due 1 + 2 foos"
time = datetime.datetime(2018, 12, 31, tzinfo=pytz.UTC)
factories.EventFactory(
course=self.course, kind="homework_due", ordinal=1,
time=time)
from course.validation import ValidationError
with self.assertRaises(ValidationError) as cm:
content.parse_date_spec(self.course, datespec, vctx=self.vctx)
expected_error_msg = "invalid identifier '%s'" % datespec
self.assertIn(expected_error_msg, str(cm.exception))
# no vctx
self.assertEqual(
content.parse_date_spec(self.course, datespec), self.mock_now_value)
def test_is_end(self):
datespec = "end:homework_due 1 + 25 hours"
time = datetime.datetime(2018, 12, 30, 23, tzinfo=pytz.UTC)
evt = factories.EventFactory(
course=self.course, kind="homework_due", ordinal=1,
time=time)
# event has no end_time, no vctx
self.assertEqual(
content.parse_date_spec(self.course, datespec),
datetime.datetime(2019, 1, 1, tzinfo=pytz.UTC))
# event has no end_time, no vctx
self.assertEqual(
content.parse_date_spec(self.course, datespec, vctx=self.vctx),
datetime.datetime(2019, 1, 1, tzinfo=pytz.UTC))
self.assertEqual(self.mock_add_warning.call_count, 1)
expected_warning_msg = (
"event '%s' has no end time, using start time instead"
% datespec)
self.assertIn(expected_warning_msg, self.mock_add_warning.call_args[0])
self.mock_add_warning.reset_mock()
# update event with end_time
evt.time -= datetime.timedelta(days=1)
evt.end_time = time
evt.save()
self.assertEqual(
content.parse_date_spec(self.course, datespec, vctx=self.vctx),
datetime.datetime(2019, 1, 1, tzinfo=pytz.UTC))
self.assertEqual(self.mock_add_warning.call_count, 0)
class GetCourseDescTest(SingleCourseTestMixin, HackRepoMixin, TestCase):
# test content.get_course_desc and content.get_processed_page_chunks
fake_commit_sha = "my_fake_commit_sha_for_course_desc"
def test_shown(self):
resp = self.client.get(self.course_page_url)
self.assertEqual(resp.status_code, 200)
self.assertContains(resp, "Welcome to the sample course")
# test that markup_to_html is called
self.assertContains(resp, "course/test-course/flow/quiz-test/start/")
def test_not_shown(self):
resp = self.client.get(self.course_page_url)
self.assertNotContains(
resp, "Welcome to the computer-based testing facility")
@override_settings(RELATE_FACILITIES={
"test_center": {
"ip_ranges": ["192.168.100.0/24"],
"exams_only": False}, })
def test_show_in_fake_facility(self):
data = {
"facilities": ["test_center"],
"custom_facilities": [],
"add_pretend_facilities_header": ["on"],
"set": ''}
with self.temporarily_switch_to_user(self.instructor_participation.user):
# pretend facility
self.post_set_pretend_facilities(data=data)
resp = self.client.get(self.course_page_url)
self.assertEqual(resp.status_code, 200)
self.assertContains(resp, "Welcome to the sample course")
self.assertContains(
resp, "Welcome to the computer-based testing facility")
def test_shown_with_empty_chunk_rule(self):
self.course.active_git_commit_sha = self.fake_commit_sha
self.course.save()
resp = self.client.get(self.course_page_url)
self.assertContains(resp, "empty rules")
def test_visible_for_role(self):
self.course.active_git_commit_sha = self.fake_commit_sha
self.course.save()
resp = self.client.get(self.course_page_url)
self.assertNotContains(resp, "Shown to instructor")
with self.temporarily_switch_to_user(self.instructor_participation.user):
resp = self.client.get(self.course_page_url)
self.assertContains(resp, "Shown to instructor")
def test_weight_higher_shown_first(self):
self.course.active_git_commit_sha = self.fake_commit_sha
self.course.save()
with self.temporarily_switch_to_user(self.instructor_participation.user):
resp = self.client.get(self.course_page_url)
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
shown_to_instructor = "Shown to instructor" # weight 100
# wight: 50 before 2018-1-1, after that, 200
display_order = "Display order"
self.assertContains(resp, shown_to_instructor)
self.assertContains(resp, display_order)
response_text = resp.content.decode()
shown_to_instructor_idx = response_text.index(shown_to_instructor)
display_order_idx = response_text.index(display_order)
self.assertGreater(shown_to_instructor_idx, display_order_idx)
# fake time to 2017-12-31
set_fake_time_data = {
"time": datetime.datetime(2017, 12, 31).strftime("%Y-%m-%d %H:%M"),
"set": ''}
self.post_set_fake_time(data=set_fake_time_data)
# second visit
resp = self.client.get(self.course_page_url)
response_text = resp.content.decode()
shown_to_instructor_idx = response_text.index(shown_to_instructor)
display_order_idx = response_text.index(display_order)
self.assertGreater(display_order_idx, shown_to_instructor_idx)
class GetFlowPageDescTest(SingleCoursePageTestMixin, TestCase):
# test content.get_flow_desc
@classmethod
def setUpTestData(cls): # noqa
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
cls.flow_desc = cls.get_hacked_flow_desc()
def test_success(self):
self.assertEqual(
content.get_flow_page_desc(
flow_id=self.flow_id,
flow_desc=self.flow_desc,
group_id="intro",
page_id="welcome").id, "welcome")
self.assertEqual(
content.get_flow_page_desc(
flow_id=self.flow_id,
flow_desc=self.flow_desc,
group_id="quiz_tail",
page_id="addition").id, "addition")
def test_flow_page_desc_does_not_exist(self):
with self.assertRaises(ObjectDoesNotExist):
content.get_flow_page_desc(
self.flow_id, self.flow_desc, "quiz_start", "unknown_page")
with self.assertRaises(ObjectDoesNotExist):
content.get_flow_page_desc(
self.flow_id, self.flow_desc, "unknown_group", "unknown_page")
class NormalizeFlowDescTest(SingleCoursePageTestMixin, TestCase):
# content.normalize_flow_desc
def test_success_no_rules(self):
# this also make sure normalize_flow_desc without flow_desc.rule
# works correctly
flow_desc = self.get_hacked_flow_desc(del_rules=True)
self.assertTrue(
content.normalize_flow_desc(
flow_desc=flow_desc), flow_desc)
class MarkupToHtmlTest(SingleCoursePageTestMixin, TestCase):
# content.markup_to_html
def setUp(self):
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
from django.core.cache import cache
cache.clear()
rf = RequestFactory()
request = rf.get(self.get_course_page_url())
request.user = self.instructor_participation.user
from course.utils import CoursePageContext
self.pctx = CoursePageContext(request, self.course.identifier)
def test_link_fixer_works(self):
with self.pctx.repo as repo:
text = "[this course](course:)"
self.assertEqual(content.markup_to_html(
self.course, repo, self.course.active_git_commit_sha, text),
'<p><a href="%s">this course</a></p>' % self.course_page_url)
def test_startswith_jinja_prefix(self):
with self.pctx.repo as repo:
text = " [JINJA][this course](course:)"
self.assertEqual(content.markup_to_html(
self.course, repo,
self.course.active_git_commit_sha.encode(), text),
'<p><a href="%s">this course</a></p>' % self.course_page_url)
@override_settings()
def test_disable_codehilite_not_configured(self):
# if RELATE_DISABLE_CODEHILITE_MARKDOWN_EXTENSION is not configured,
# the default value is True
del settings.RELATE_DISABLE_CODEHILITE_MARKDOWN_EXTENSION
with self.pctx.repo as repo:
text = "[this course](course:)"
with mock.patch("markdown.markdown") as mock_markdown:
mock_markdown.return_value = "some text"
content.markup_to_html(
self.course, repo,
self.course.active_git_commit_sha.encode(), text)
self.assertEqual(mock_markdown.call_count, 1)
used_extensions = mock_markdown.call_args[1]["extensions"]
self.assertNotIn(
"markdown.extensions.codehilite(css_class=highlight)",
used_extensions)
@override_settings(RELATE_DISABLE_CODEHILITE_MARKDOWN_EXTENSION=True)
def test_disable_codehilite_configured_true(self):
with self.pctx.repo as repo:
text = "[this course](course:)"
with mock.patch("markdown.markdown") as mock_markdown:
mock_markdown.return_value = "some text"
content.markup_to_html(
self.course, repo,
self.course.active_git_commit_sha.encode(), text)
self.assertEqual(mock_markdown.call_count, 1)
used_extensions = mock_markdown.call_args[1]["extensions"]
self.assertNotIn(
"markdown.extensions.codehilite(css_class=highlight)",
used_extensions)
@override_settings(RELATE_DISABLE_CODEHILITE_MARKDOWN_EXTENSION=False)
def test_disable_codehilite_configured_false(self):
with self.pctx.repo as repo:
text = "[this course](course:)"
with mock.patch("markdown.markdown") as mock_markdown:
mock_markdown.return_value = "some text"
content.markup_to_html(
self.course, repo,
self.course.active_git_commit_sha.encode(), text)
self.assertEqual(mock_markdown.call_count, 1)
used_extensions = mock_markdown.call_args[1]["extensions"]
self.assertIn(
"markdown.extensions.codehilite(css_class=highlight)",
used_extensions)
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
class GetFlowPageClassTest(SingleCourseTestMixin, TestCase):
# test content.get_flow_page_class
def get_pctx(self, commit_sha=None):
if commit_sha is not None:
self.course.active_git_commit_sha = commit_sha
self.course.save()
self.course.refresh_from_db()
rf = RequestFactory()
request = rf.get(self.get_course_page_url())
request.user = self.instructor_participation.user
from course.utils import CoursePageContext
return CoursePageContext(request, self.course.identifier)
def test_built_in_class(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
self.assertEqual(
content.get_flow_page_class(repo, "TextQuestion", commit_sha),
page.TextQuestion)
def test_class_not_found_dot_path_length_1(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
with self.assertRaises(content.ClassNotFoundError):
content.get_flow_page_class(repo, "UnknownClass", commit_sha)
def test_class_not_found_module_not_exist(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
with self.assertRaises(content.ClassNotFoundError):
content.get_flow_page_class(
repo, "mypackage.UnknownClass", commit_sha)
def test_class_not_found_module_does_not_exist(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
with self.assertRaises(content.ClassNotFoundError):
content.get_flow_page_class(
repo, "mypackage.UnknownClass", commit_sha)
def test_class_not_found_last_component_does_not_exist(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
with self.assertRaises(content.ClassNotFoundError):
content.get_flow_page_class(
repo, "tests.resource.UnknownClass", commit_sha)
def test_found_by_dotted_path(self):
repo = mock.MagicMock()
commit_sha = mock.MagicMock()
from tests.resource import MyFakeQuestionType
self.assertEqual(
content.get_flow_page_class(
repo, "tests.resource.MyFakeQuestionType", commit_sha),
MyFakeQuestionType)
class ListFlowIdsTest(unittest.TestCase):
# test content.list_flow_ids
def setUp(self):
fake_get_repo_blob = mock.patch("course.content.get_repo_blob")
self.mock_get_repo_blob = fake_get_repo_blob.start()
self.addCleanup(fake_get_repo_blob.stop)
self.repo = mock.MagicMock()
self.commit_sha = mock.MagicMock()
def test_object_does_not_exist(self):
self.mock_get_repo_blob.side_effect = ObjectDoesNotExist()
self.assertEqual(content.list_flow_ids(self.repo, self.commit_sha), [])
def test_result(self):
tree = Tree()
tree.add(b"not_a_flow.txt", stat.S_IFREG, b"not a flow")
tree.add(b"flow_b.yml", stat.S_IFREG, b"flow_b content")
tree.add(b"flow_a.yml", stat.S_IFREG, b"flow_a content")
tree.add(b"flow_c.yml", stat.S_IFREG, b"flow_c content")
tree.add(b"temp_dir", stat.S_IFDIR, b"a temp dir")
self.mock_get_repo_blob.return_value = tree
self.assertEqual(content.list_flow_ids(
self.repo, self.commit_sha), ["flow_a", "flow_b", "flow_c"])