This file is indexed.

/usr/lib/python3/dist-packages/zope/contenttype/tests/test_parse.py is in python3-zope.contenttype 4.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Foundation 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 contenttype helpers.
"""
import unittest


class ParseOrderedTestCase(unittest.TestCase):

    empty_params = []

    def setUp(self):
        from zope.contenttype import parse
        self.parse = parse.parseOrdered

    def _callFUT(self, *args, **kw):
        from zope.contenttype.parse import parseOrdered
        return parseOrdered(*args, **kw)

    def oneParam(self, name, value):
        return [(name, value)]

    def test_without_params(self):
        self.assertEqual(self._callFUT("text/plain"),
                         ("text", "plain", self.empty_params))
        self.assertEqual(self._callFUT("TEXT/PLAIN"),
                         ("text", "plain", self.empty_params))
        self.assertEqual(self._callFUT("TeXt / PlaIN"),
                         ("text", "plain", self.empty_params))
        self.assertEqual(self._callFUT("text / vnd.wap.wml"),
                         ("text", "vnd.wap.wml", self.empty_params))

    def test_with_empty_params(self):
        self.assertEqual(self._callFUT("text/plain ; "),
                         ("text", "plain", self.empty_params))
        self.assertEqual(self._callFUT("TEXT/PLAIN ;   "),
                         ("text", "plain", self.empty_params))
        self.assertEqual(self._callFUT("TeXt / PlaIN ; "),
                         ("text", "plain", self.empty_params))

    def test_bad_tokens(self):
        self.assertRaises(ValueError,
                          self._callFUT, "text stuff/plain")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain stuff")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain;some stuff=foo")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain;a=b;c d=e")

    def test_missing_parts(self):
        self.assertRaises(ValueError,
                          self._callFUT, "text ; params")
        self.assertRaises(ValueError,
                          self._callFUT, "text/ ; params")
        self.assertRaises(ValueError,
                          self._callFUT, "/plain ; params")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; params")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; params=")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; =params")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; a=b; params")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; a=b; params=")
        self.assertRaises(ValueError,
                          self._callFUT, "text/plain ; a=b; =params")

    def test_single_parameter(self):
        self.assertEqual(self._callFUT("text/plain;charset=UTF-8"),
                         ("text", "plain", self.oneParam("charset", "UTF-8")))
        self.assertEqual(self._callFUT("text/plain ;\tcharset = UTF-8"),
                         ("text", "plain", self.oneParam("charset", "UTF-8")))
        # quoted-string parameter values
        self.assertEqual(self._callFUT('text/plain;charset="UTF-8"'),
                         ("text", "plain", self.oneParam("charset", "UTF-8")))
        self.assertEqual(self._callFUT('text/plain ;\tcharset = "UTF-8"'),
                         ("text", "plain", self.oneParam("charset", "UTF-8")))

    def test_multiple_parameters(self):
        self.assertEqual(
            self._callFUT("text/plain;charset=utf-8;format=flowed"),
            ("text", "plain", [("charset", "utf-8"), ("format", "flowed")]))
        self.assertEqual(
            self._callFUT('text/plain;charset=utf-8;format="flowed"'),
            ("text", "plain", [("charset", "utf-8"), ("format", "flowed")]))

    def test_quoted_strings(self):
        p = self.oneParam("c", " This [] has <> ? other () chars\t")
        self.assertEqual(
            self._callFUT('a/b;c= " This [] has <> ? other () chars\t" '),
            ("a", "b", p))
        self.assertEqual(
            self._callFUT('a/b;c=""'),
            ("a", "b", self.oneParam("c", "")))
        self.assertEqual(
            self._callFUT(r'a/b;c="\\\""'),
            ("a", "b", self.oneParam("c", r'\"')))

class ParseTestCase(ParseOrderedTestCase):

    empty_params = {}

    def _callFUT(self, *args, **kw):
        from zope.contenttype.parse import parse
        return parse(*args, **kw)

    def oneParam(self, name, value):
        return {name: value}

    def test_multiple_parameters(self):
        self.assertEqual(
            self._callFUT("text/plain;charset=utf-8;format=flowed"),
            ("text", "plain", {"charset": "utf-8", "format": "flowed"}))
        self.assertEqual(
            self._callFUT('text/plain;charset=utf-8;format="flowed"'),
            ("text", "plain", {"charset": "utf-8", "format": "flowed"}))


class JoinTestCase(unittest.TestCase):

    def _callFUT(self, *args, **kw):
        from zope.contenttype.parse import join
        return join(*args, **kw)

    def test_without_params(self):
        self.assertEqual(self._callFUT(("text", "plain", [])),
                         "text/plain")
        self.assertEqual(self._callFUT(("text", "plain", {})),
                         "text/plain")

    def test_single_token_param(self):
        self.assertEqual(
            self._callFUT(("text", "plain", [("charset", "UTF-8")])),
            "text/plain;charset=UTF-8")
        self.assertEqual(
            self._callFUT(("text", "plain", {"charset": "UTF-8"})),
            "text/plain;charset=UTF-8")

    def test_multi_params_list_maintains_order(self):
        # multiple parameters given as a list maintain order:
        self.assertEqual(
            self._callFUT(("text", "plain",
                              [("charset", "UTF-8"), ("format", "flowed")])),
            "text/plain;charset=UTF-8;format=flowed")
        self.assertEqual(
            self._callFUT(("text", "plain",
                              [("format", "flowed"), ("charset", "UTF-8")])),
            "text/plain;format=flowed;charset=UTF-8")

    def test_multi_params_dict_sorted_order(self):
        # multiple parameters given as a dict are sorted by param name:
        self.assertEqual(
            self._callFUT(("text", "plain",
                              {"charset": "UTF-8", "format": "flowed"})),
            "text/plain;charset=UTF-8;format=flowed")

    def test_params_list_quoted(self):
        # parameter values are quoted automatically:
        self.assertEqual(self._callFUT(("a", "b", [("c", "")])),
                         'a/b;c=""')
        self.assertEqual(self._callFUT(("a", "b", [("c", "ab cd")])),
                         'a/b;c="ab cd"')
        self.assertEqual(self._callFUT(("a", "b", [("c", " \t")])),
                         'a/b;c=" \t"')
        self.assertEqual(self._callFUT(("a", "b", [("c", '"')])),
                         r'a/b;c="\""')
        self.assertEqual(self._callFUT(("a", "b", [("c", "\n")])),
                         'a/b;c="\\\n"')

    def test_params_dict_quoted(self):
        # parameter values are quoted automatically:
        self.assertEqual(self._callFUT(("a", "b", {"c": ""})),
                         'a/b;c=""')
        self.assertEqual(self._callFUT(("a", "b", {"c": "ab cd"})),
                         'a/b;c="ab cd"')
        self.assertEqual(self._callFUT(("a", "b", {"c": " \t"})),
                         'a/b;c=" \t"')
        self.assertEqual(self._callFUT(("a", "b", {"c": '"'})),
                         r'a/b;c="\""')
        self.assertEqual(self._callFUT(("a", "b", {"c": "\n"})),
                         'a/b;c="\\\n"')


def test_suite():
    return unittest.TestSuite((
        unittest.makeSuite(ParseOrderedTestCase),
        unittest.makeSuite(ParseTestCase),
        unittest.makeSuite(JoinTestCase),
    ))