-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into huniafatima/deprecate-edx-sphinx-theme
- Loading branch information
Showing
20 changed files
with
300 additions
and
403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,25 +24,50 @@ MAINTAINER [email protected] | |
|
||
# make; necessary to provision the container | ||
|
||
# ENV variables for Python 3.12 support | ||
ARG PYTHON_VERSION=3.12 | ||
ENV TZ=UTC | ||
ENV TERM=xterm-256color | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# software-properties-common is needed to setup Python 3.12 env | ||
RUN apt-get update && \ | ||
apt-get install -y software-properties-common && \ | ||
apt-add-repository -y ppa:deadsnakes/ppa | ||
|
||
# If you add a package here please include a comment above describing what it is used for | ||
RUN apt-get update && apt-get -qy install --no-install-recommends \ | ||
build-essential \ | ||
language-pack-en \ | ||
locales \ | ||
python3.8 \ | ||
python3-pip \ | ||
libmysqlclient-dev \ | ||
pkg-config \ | ||
libssl-dev \ | ||
python3-dev \ | ||
gcc \ | ||
make \ | ||
git | ||
git \ | ||
curl \ | ||
python3-pip \ | ||
python${PYTHON_VERSION} \ | ||
python${PYTHON_VERSION}-dev \ | ||
python${PYTHON_VERSION}-distutils | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN pip install --upgrade pip setuptools | ||
# delete apt package lists because we do not need them inflating our image | ||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
# need to use virtualenv pypi package with Python 3.12 | ||
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python${PYTHON_VERSION} | ||
RUN pip install virtualenv | ||
|
||
# Create virtual environment with Python 3.12 | ||
ENV VIRTUAL_ENV=/edx/venvs/edx-exams | ||
RUN virtualenv -p python${PYTHON_VERSION} $VIRTUAL_ENV | ||
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | ||
|
||
# python is python3 | ||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
|
||
RUN locale-gen en_US.UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,3 +155,29 @@ def test_course_access_role_remove_single_role(self): | |
roles, | ||
['instructor'] | ||
) | ||
|
||
def test_course_access_role_email_change(self): | ||
""" | ||
Test that if a user updates their email, additional course staff roles are able to be added. | ||
""" | ||
role_event_data = self._get_event_data(self.course_id, self.existing_user.username, 'staff') | ||
event_metadata = self._get_event_metadata(COURSE_ACCESS_ROLE_ADDED) | ||
event_kwargs = { | ||
'course_access_role_data': role_event_data, | ||
'metadata': event_metadata, | ||
} | ||
listen_for_course_access_role_added(None, COURSE_ACCESS_ROLE_ADDED, **event_kwargs) | ||
|
||
self.existing_user.email = '[email protected]' | ||
self.existing_user.save() | ||
|
||
other_course = 'course-v1:another-course-2024' | ||
role_event_data = self._get_event_data(other_course, self.existing_user.username, 'staff') | ||
event_metadata = self._get_event_metadata(COURSE_ACCESS_ROLE_ADDED) | ||
event_kwargs = { | ||
'course_access_role_data': role_event_data, | ||
'metadata': event_metadata, | ||
} | ||
listen_for_course_access_role_added(None, COURSE_ACCESS_ROLE_ADDED, **event_kwargs) | ||
|
||
self.assertEqual(len(CourseStaffRole.objects.filter(user=self.existing_user)), 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.