Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
3e9e97e6
Unverified
Commit
3e9e97e6
authored
Nov 21, 2017
by
Eric Fischer
Committed by
GitHub
Nov 21, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16635 from edx/efischer/EDUCATOR-1773
No unicode in "from" value on Bulk Emails
parents
0d931107
19c580e5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletions
+19
-1
lms/djangoapps/bulk_email/tasks.py
+7
-0
lms/djangoapps/bulk_email/tests/test_email.py
+12
-1
No files found.
lms/djangoapps/bulk_email/tasks.py
View file @
3e9e97e6
...
@@ -416,6 +416,13 @@ def _get_source_address(course_id, course_title, course_language, truncate=True)
...
@@ -416,6 +416,13 @@ def _get_source_address(course_id, course_title, course_language, truncate=True)
if
len
(
escaped_encoded_from_addr
)
>=
320
and
truncate
:
if
len
(
escaped_encoded_from_addr
)
>=
320
and
truncate
:
from_addr
=
format_address
(
course_name
)
from_addr
=
format_address
(
course_name
)
# EDUCATOR-1773: Courses with unicode in the title are not handled by django-ses logging
# remove this block once https://github.com/django-ses/django-ses/issues/137 is resolved and released
try
:
dummy_var
=
"not a unicode string {}"
.
format
(
from_addr
)
except
UnicodeEncodeError
:
from_addr
=
format_address
(
course_name
)
return
from_addr
return
from_addr
...
...
lms/djangoapps/bulk_email/tests/test_email.py
View file @
3e9e97e6
...
@@ -4,7 +4,7 @@ Unit tests for sending course email
...
@@ -4,7 +4,7 @@ Unit tests for sending course email
"""
"""
import
json
import
json
import
os
import
os
from
unittest
import
skipIf
from
unittest
import
skip
,
skip
If
import
ddt
import
ddt
from
django.conf
import
settings
from
django.conf
import
settings
...
@@ -267,6 +267,8 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
...
@@ -267,6 +267,8 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
self
.
assertEqual
(
len
(
mail
.
outbox
[
0
]
.
to
),
1
)
self
.
assertEqual
(
len
(
mail
.
outbox
[
0
]
.
to
),
1
)
self
.
assertEquals
(
mail
.
outbox
[
0
]
.
to
[
0
],
self
.
instructor
.
email
)
self
.
assertEquals
(
mail
.
outbox
[
0
]
.
to
[
0
],
self
.
instructor
.
email
)
self
.
assertEquals
(
mail
.
outbox
[
0
]
.
subject
,
'test subject for myself'
)
self
.
assertEquals
(
mail
.
outbox
[
0
]
.
subject
,
'test subject for myself'
)
"""
TODO - uncomment this assertion and delete the following alternate once django-ses is fixed. EDUCATOR-1773
self.assertEquals(
self.assertEquals(
mail.outbox[0].from_email,
mail.outbox[0].from_email,
u'"{course_display_name}" Course Staff <{course_name}-no-reply@example.com>'.format(
u'"{course_display_name}" Course Staff <{course_name}-no-reply@example.com>'.format(
...
@@ -274,6 +276,14 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
...
@@ -274,6 +276,14 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
course_name=self.course.id.course
course_name=self.course.id.course
)
)
)
)
"""
# pylint: disable=pointless-string-statement
self
.
assertEquals
(
mail
.
outbox
[
0
]
.
from_email
,
u'"{course_display_name}" Course Staff <{course_name}-no-reply@example.com>'
.
format
(
course_display_name
=
self
.
course
.
number
,
course_name
=
self
.
course
.
id
.
course
)
)
def
test_send_to_staff
(
self
):
def
test_send_to_staff
(
self
):
"""
"""
...
@@ -499,6 +509,7 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
...
@@ -499,6 +509,7 @@ class TestEmailSendFromDashboardMockedHtmlToText(EmailSendFromDashboardTestCase)
[
self
.
instructor
.
email
]
+
[
s
.
email
for
s
in
self
.
staff
]
+
[
s
.
email
for
s
in
self
.
students
]
[
self
.
instructor
.
email
]
+
[
s
.
email
for
s
in
self
.
staff
]
+
[
s
.
email
for
s
in
self
.
students
]
)
)
@skip
(
"Unicode course names are broken, see EDUCATOR-1773 for details. Un-skip after django-ses is fixed."
)
@override_settings
(
BULK_EMAIL_DEFAULT_FROM_EMAIL
=
"no-reply@courseupdates.edx.org"
)
@override_settings
(
BULK_EMAIL_DEFAULT_FROM_EMAIL
=
"no-reply@courseupdates.edx.org"
)
def
test_long_course_display_name
(
self
):
def
test_long_course_display_name
(
self
):
"""
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment