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
07d6bee5
Commit
07d6bee5
authored
Jan 16, 2013
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storing work
parent
9818664b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
25 deletions
+30
-25
cms/djangoapps/contentstore/tests/test_core_caching.py
+30
-13
common/djangoapps/cache_toolbox/core.py
+0
-12
No files found.
cms/djangoapps/contentstore/tests/test_core_caching.py
View file @
07d6bee5
from
django.test.testcases
import
TestCase
from
cache_toolbox.core
import
get_cached_content
,
set_cached_content
import
mock
from
cache_toolbox.core
import
get_cached_content
,
set_cached_content
,
del_cached_content
from
xmodule.modulestore
import
Location
from
xmodule.contentstore.content
import
StaticContent
class
Content
:
def
__init__
(
self
,
location
,
content
):
self
.
location
=
location
self
.
content
=
content
def
get_id
(
self
):
return
StaticContent
.
get_id_from_location
(
self
.
location
)
class
CachingTestCase
(
TestCase
):
# Tests for https://edx.lighthouseapp.com/projects/102637/tickets/112-updating-asset-does-not-refresh-the-cached-copy
unicodeLocation
=
Location
(
u'c4x'
,
u'mitX'
,
u'800'
,
u'thumbnail'
,
u'monsters.jpg'
)
# Note that some of the parts are strings instead of unicode strings
nonUnicodeLocation
=
Location
(
'c4x'
,
u'mitX'
,
u'800'
,
'thumbnail'
,
'monsters.jpg'
)
mockAsset
=
Content
(
unicodeLocation
,
'my content'
)
def
test_put_and_get
(
self
):
mockAsset
=
mock
.
Mock
()
mockLocation
=
mock
.
Mock
()
mockLocation
.
category
=
u'thumbnail'
mockLocation
.
name
=
u'monsters.jpg'
mockLocation
.
course
=
u'800'
mockLocation
.
tag
=
u'c4x'
mockLocation
.
org
=
u'mitX'
mockLocation
.
revision
=
None
mockAsset
.
location
=
mockLocation
set_cached_content
(
mockAsset
)
cachedAsset
=
get_cached_content
(
mockLocation
)
set_cached_content
(
self
.
mockAsset
)
self
.
assertEqual
(
self
.
mockAsset
.
content
,
get_cached_content
(
self
.
unicodeLocation
)
.
content
,
'should be stored in cache with unicodeLocation'
)
self
.
assertEqual
(
self
.
mockAsset
.
content
,
get_cached_content
(
Location
(
'c4x'
,
u'mitX'
,
u'800'
,
'thumbnail'
,
'monsters.jpg'
))
.
content
,
'should be stored in cache with nonUnicodeLocation'
)
def
test_delete
(
self
):
set_cached_content
(
self
.
mockAsset
)
del_cached_content
(
self
.
nonUnicodeLocation
)
self
.
assertEqual
(
None
,
get_cached_content
(
self
.
nonUnicodeLocation
),
'should not be stored in cache with nonUnicodeLocation'
)
self
.
assertEqual
(
None
,
get_cached_content
(
self
.
unicodeLocation
),
'should not be stored in cache with unicodeLocation'
)
common/djangoapps/cache_toolbox/core.py
View file @
07d6bee5
...
...
@@ -108,23 +108,11 @@ def instance_key(model, instance_or_pk):
getattr
(
instance_or_pk
,
'pk'
,
instance_or_pk
),
)
import
logging
def
set_cached_content
(
content
):
logging
.
warn
(
"set cached---------------------------------------"
)
logging
.
warn
(
str
(
content
.
location
))
cache
.
set
(
str
(
content
.
location
),
content
)
def
get_cached_content
(
location
):
logging
.
warn
(
"get cached------------------------"
)
logging
.
warn
(
str
(
location
))
logging
.
warn
(
StaticContent
.
get_id_from_location
(
location
))
return
cache
.
get
(
str
(
location
))
def
del_cached_content
(
location
):
if
cache
.
get
(
str
(
location
))
is
None
:
logging
.
err
(
'nothing in cache for: '
+
str
(
location
))
logging
.
warn
(
"deleted cache----------"
)
logging
.
warn
(
str
(
location
))
logging
.
warn
(
StaticContent
.
get_id_from_location
(
location
))
cache
.
delete
(
str
(
location
))
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