Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
f8202466
Commit
f8202466
authored
Dec 11, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved OFS.content_types to zope.app.content_types
parent
5a2b0915
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
76 deletions
+1
-76
lib/python/OFS/content_types.py
lib/python/OFS/content_types.py
+1
-1
lib/python/OFS/tests/testContentTypes.py
lib/python/OFS/tests/testContentTypes.py
+0
-75
No files found.
lib/python/OFS/content_types.py
View file @
f8202466
...
...
@@ -15,4 +15,4 @@
$Id$
"""
from
zope.app.content_types
import
text_type
,
guess_content_type
from
zope.app.content_types
import
text_type
,
guess_content_type
,
add_files
lib/python/OFS/tests/testContentTypes.py
deleted
100644 → 0
View file @
5a2b0915
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Tests of the content_types extension mechanism.
$Id$
"""
import
mimetypes
import
os.path
import
sys
import
unittest
from
OFS
import
content_types
try
:
__file__
except
NameError
:
__file__
=
os
.
path
.
realpath
(
sys
.
argv
[
0
])
here
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
MIME_TYPES_1
=
os
.
path
.
join
(
here
,
"mime.types-1"
)
MIME_TYPES_2
=
MIME_TYPES_1
[:
-
1
]
+
"2"
class
ContentTypesTestCase
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
_old_state
=
mimetypes
.
__dict__
.
copy
()
def
tearDown
(
self
):
mimetypes
.
__dict__
.
update
(
self
.
_old_state
)
def
check_types_count
(
self
,
delta
):
self
.
assertEqual
(
len
(
mimetypes
.
types_map
),
len
(
self
.
_old_state
[
"types_map"
])
+
delta
)
def
test_add_one_file
(
self
):
ntypes
=
len
(
mimetypes
.
types_map
)
content_types
.
add_files
([
MIME_TYPES_1
])
ctype
,
encoding
=
content_types
.
guess_content_type
(
"foo.ztmt-1"
)
self
.
assert_
(
encoding
is
None
)
self
.
assertEqual
(
ctype
,
"text/x-vnd.zope.test-mime-type-1"
)
ctype
,
encoding
=
content_types
.
guess_content_type
(
"foo.ztmt-1.gz"
)
self
.
assertEqual
(
encoding
,
"gzip"
)
self
.
assertEqual
(
ctype
,
"text/x-vnd.zope.test-mime-type-1"
)
self
.
check_types_count
(
1
)
def
test_add_two_files
(
self
):
ntypes
=
len
(
mimetypes
.
types_map
)
content_types
.
add_files
([
MIME_TYPES_1
,
MIME_TYPES_2
])
ctype
,
encoding
=
content_types
.
guess_content_type
(
"foo.ztmt-1"
)
self
.
assert_
(
encoding
is
None
)
self
.
assertEqual
(
ctype
,
"text/x-vnd.zope.test-mime-type-1"
)
ctype
,
encoding
=
content_types
.
guess_content_type
(
"foo.ztmt-2"
)
self
.
assert_
(
encoding
is
None
)
self
.
assertEqual
(
ctype
,
"text/x-vnd.zope.test-mime-type-2"
)
self
.
check_types_count
(
2
)
def
test_suite
():
return
unittest
.
makeSuite
(
ContentTypesTestCase
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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