Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
ce4f6613
Commit
ce4f6613
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add unit tests
parent
2cf6a7bc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/rest/media/__init__.py
+14
-0
14 additions, 0 deletions
tests/rest/media/__init__.py
tests/rest/media/v1/__init__.py
+14
-0
14 additions, 0 deletions
tests/rest/media/v1/__init__.py
tests/rest/media/v1/test_media_storage.py
+81
-0
81 additions, 0 deletions
tests/rest/media/v1/test_media_storage.py
with
109 additions
and
0 deletions
tests/rest/media/__init__.py
0 → 100644
+
14
−
0
View file @
ce4f6613
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
This diff is collapsed.
Click to expand it.
tests/rest/media/v1/__init__.py
0 → 100644
+
14
−
0
View file @
ce4f6613
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
This diff is collapsed.
Click to expand it.
tests/rest/media/v1/test_media_storage.py
0 → 100644
+
81
−
0
View file @
ce4f6613
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
twisted.internet
import
defer
from
synapse.rest.media.v1._base
import
FileInfo
from
synapse.rest.media.v1.media_storage
import
MediaStorage
from
synapse.rest.media.v1.filepath
import
MediaFilePaths
from
synapse.rest.media.v1.storage_provider
import
FileStorageProviderBackend
from
tests
import
unittest
import
os
import
shutil
import
tempfile
class
MediaStorageTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
test_dir
=
tempfile
.
mkdtemp
(
prefix
=
"
synapse-tests-
"
)
self
.
primary_base_path
=
os
.
path
.
join
(
self
.
test_dir
,
"
primary
"
)
self
.
secondary_base_path
=
os
.
path
.
join
(
self
.
test_dir
,
"
secondary
"
)
storage_providers
=
[
FileStorageProviderBackend
(
self
.
primary_base_path
,
self
.
secondary_base_path
)]
self
.
filepaths
=
MediaFilePaths
(
self
.
primary_base_path
)
self
.
media_storage
=
MediaStorage
(
self
.
primary_base_path
,
self
.
filepaths
,
storage_providers
,
)
def
tearDown
(
self
):
shutil
.
rmtree
(
self
.
test_dir
)
@defer.inlineCallbacks
def
test_ensure_media_is_in_local_cache
(
self
):
media_id
=
"
some_media_id
"
test_body
=
"
Test
\n
"
# First we create a file that is in a storage provider but not in the
# local primary media store
rel_path
=
self
.
filepaths
.
local_media_filepath_rel
(
media_id
)
secondary_path
=
os
.
path
.
join
(
self
.
secondary_base_path
,
rel_path
)
os
.
makedirs
(
os
.
path
.
dirname
(
secondary_path
))
with
open
(
secondary_path
,
"
w
"
)
as
f
:
f
.
write
(
test_body
)
# Now we run ensure_media_is_in_local_cache, which should copy the file
# to the local cache.
file_info
=
FileInfo
(
None
,
media_id
)
local_path
=
yield
self
.
media_storage
.
ensure_media_is_in_local_cache
(
file_info
)
self
.
assertTrue
(
os
.
path
.
exists
(
local_path
))
# Asserts the file is under the expected local cache directory
self
.
assertEquals
(
os
.
path
.
commonprefix
([
self
.
primary_base_path
,
local_path
]),
self
.
primary_base_path
,
)
with
open
(
local_path
)
as
f
:
body
=
f
.
read
()
self
.
assertEqual
(
test_body
,
body
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment