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
1f88d528
Commit
1f88d528
authored
Nov 06, 2017
by
Tyler Hallada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unit tests for absolute_url
parent
1b1c7235
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletions
+25
-1
openedx/core/djangoapps/schedules/template_context.py
+2
-1
openedx/core/djangoapps/schedules/tests/test_template_context.py
+23
-0
No files found.
openedx/core/djangoapps/schedules/template_context.py
View file @
1f88d528
...
...
@@ -31,7 +31,8 @@ def encode_url(url):
def
absolute_url
(
site
,
relative_path
):
"""Add site.domain to the beginning of the given relative path.
"""
Add site.domain to the beginning of the given relative path.
If the given URL is already absolute (has a netloc part), then it is just returned.
"""
...
...
openedx/core/djangoapps/schedules/tests/test_template_context.py
0 → 100644
View file @
1f88d528
from
openedx.core.djangoapps.schedules.template_context
import
absolute_url
from
openedx.core.djangoapps.site_configuration.tests.factories
import
SiteFactory
from
openedx.core.djangolib.testing.utils
import
CacheIsolationTestCase
,
skip_unless_lms
@skip_unless_lms
class
TestTemplateContext
(
CacheIsolationTestCase
):
def
setUp
(
self
):
self
.
site
=
SiteFactory
.
create
()
self
.
site
.
domain
=
'example.com'
def
test_absolute_url
(
self
):
absolute
=
absolute_url
(
self
.
site
,
'/foo/bar'
)
self
.
assertEqual
(
absolute
,
'https://example.com/foo/bar'
)
def
test_absolute_url_domain_lstrip
(
self
):
self
.
site
.
domain
=
'example.com/'
absolute
=
absolute_url
(
self
.
site
,
'foo/bar'
)
self
.
assertEqual
(
absolute
,
'https://example.com/foo/bar'
)
def
test_absolute_url_already_absolute
(
self
):
absolute
=
absolute_url
(
self
.
site
,
'https://some-cdn.com/foo/bar'
)
self
.
assertEqual
(
absolute
,
'https://some-cdn.com/foo/bar'
)
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