File: test_parse.py

package info (click to toggle)
python-css-parser 1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,248 kB
  • sloc: python: 20,584; sh: 11; makefile: 7
file content (511 lines) | stat: -rw-r--r-- 20,054 bytes parent folder | download | duplicates (3)
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
# -*- coding: utf-8 -*-
"""Tests for parsing which does not raise Exceptions normally"""
from __future__ import absolute_import, unicode_literals, with_statement

import sys
import xml.dom

import css_parser

from . import basetest

if sys.version_info.major > 2:
    from urllib.error import HTTPError, URLError
    FetchError = OSError
else:
    from socket import error as FetchError
    from urllib2 import HTTPError, URLError


class CSSParserTestCase(basetest.BaseTestCase):
    def _make_fetcher(self, encoding, content):
        "make an URL fetcher with specified data"

        def fetcher(url):
            return encoding, content

        return fetcher

    def setUp(self):
        basetest.BaseTestCase.setUp(self)
        self._saved = css_parser.log.raiseExceptions

    def tearDown(self):
        basetest.BaseTestCase.tearDown(self)
        css_parser.log.raiseExceptions = self._saved

    def test_init(self):
        "CSSParser.__init__()"
        self.assertEqual(True, css_parser.log.raiseExceptions)

        # also the default:
        css_parser.log.raiseExceptions = True

        # default non raising parser
        p = css_parser.CSSParser()
        s = p.parseString('$')
        self.assertEqual(s.cssText, ''.encode())

        # explicit raiseExceptions=False
        p = css_parser.CSSParser(raiseExceptions=False)
        s = p.parseString('$')
        self.assertEqual(s.cssText, ''.encode())

        # working with sheet does raise though!
        self.assertRaises(xml.dom.DOMException, s.__setattr__, 'cssText',
                          '$')

        # ----

        # raiseExceptions=True
        p = css_parser.CSSParser(raiseExceptions=True)
        self.assertRaises(xml.dom.SyntaxErr, p.parseString, '$')

        # working with a sheet does raise too
        s = css_parser.css.CSSStyleSheet()
        self.assertRaises(xml.dom.DOMException, s.__setattr__, 'cssText',
                          '$')

        # RESET css_parser.log.raiseExceptions
        css_parser.log.raiseExceptions = False
        s = css_parser.css.CSSStyleSheet()
        # does not raise!
        s.__setattr__('cssText', '$')
        self.assertEqual(s.cssText, ''.encode())

    def test_parseComments(self):
        "css_parser.CSSParser(parseComments=False)"
        css = '/*1*/ a { color: /*2*/ red; }'

        p = css_parser.CSSParser(parseComments=False)
        self.assertEqual(
            p.parseString(css).cssText, 'a {\n    color: red\n    }'.encode())
        p = css_parser.CSSParser(parseComments=True)
        self.assertEqual(
            p.parseString(css).cssText,
            '/*1*/\na {\n    color: /*2*/ red\n    }'.encode())

    def test_parseUrl(self):
        "CSSParser.parseUrl()"
        parser = css_parser.CSSParser()
        with self.patch_default_fetcher((None, '')):
            sheet = parser.parseUrl(
                'http://example.com', media='tv,print', title='test')

        self.assertEqual(sheet.href, 'http://example.com')
        self.assertEqual(sheet.encoding, 'utf-8')
        self.assertEqual(sheet.media.mediaText, 'tv, print')
        self.assertEqual(sheet.title, 'test')

        # URL and content tests
        tests = {
            # (url, content): isSheet, encoding, cssText
            ('', None): (False, None, None),
            ('1', None): (False, None, None),
            ('mailto:a@bb.cd', None): (False, None, None),
            ('http://cthedot.de/test.css', None): (False, None, None),
            ('http://cthedot.de/test.css', ''): (True, 'utf-8', ''),
            ('http://cthedot.de/test.css', 'a'): (True, 'utf-8', ''),
            ('http://cthedot.de/test.css', 'a {color: red}'):
            (True, 'utf-8', 'a {\n    color: red\n    }'),
            ('http://cthedot.de/test.css', 'a {color: red}'):
            (True, 'utf-8', 'a {\n    color: red\n    }'),
            ('http://cthedot.de/test.css', '@charset "ascii";a {color: red}'):
            (True, 'ascii', '@charset "ascii";\na {\n    color: red\n    }'),
        }
        override = 'iso-8859-1'
        overrideprefix = '@charset "iso-8859-1";'
        httpencoding = None

        for (url, content), (isSheet, expencoding, cssText) in tests.items():
            parser.setFetcher(self._make_fetcher(httpencoding, content))
            sheet1 = parser.parseUrl(url)
            sheet2 = parser.parseUrl(url, encoding=override)
            if isSheet:
                self.assertEqual(sheet1.encoding, expencoding)
                self.assertEqual(sheet1.cssText, cssText.encode())
                self.assertEqual(sheet2.encoding, override)
                if sheet1.cssText and cssText.startswith('@charset'):
                    self.assertEqual(
                        sheet2.cssText,
                        (cssText.replace('ascii', override).encode()))
                elif sheet1.cssText:
                    self.assertEqual(
                        sheet2.cssText,
                        (overrideprefix + '\n' + cssText).encode())
                else:
                    self.assertEqual(sheet2.cssText,
                                     (overrideprefix + cssText).encode())
            else:
                self.assertEqual(sheet1, None)
                self.assertEqual(sheet2, None)

        parser.setFetcher(None)

        self.assertRaises(ValueError, parser.parseUrl,
                          '../not-valid-in-urllib')
        # we'll get an URLError if no network connection
        self.assertRaises(
                (HTTPError, URLError, FetchError), parser.parseUrl,
                'https://github.com/ebook-utils/css-parser/not-found.css')

    def test_parseString(self):
        "CSSParser.parseString()"
        tests = {
            # (byte) string, encoding: encoding, cssText
            ('/*a*/', None): ('utf-8', '/*a*/'.encode('utf-8')),
            ('/*a*/', 'ascii'): ('ascii',
                                 '@charset "ascii";\n/*a*/'.encode('ascii')),

            # org
            # ('/*\xc3\xa4*/', None): (u'utf-8', u'/*\xc3\xa4*/'.encode('utf-8')),
            # ('/*\xc3\xa4*/', 'utf-8'): (u'utf-8', u'@charset "utf-8";\n/*\xc3\xa4*/'.encode('utf-8')),
            # new for 2.x and 3.x
            ('/*\xe4*/'.encode('utf-8'), None):
            ('utf-8', '/*\xe4*/'.encode('utf-8')),
            ('/*\xe4*/'.encode('utf-8'), 'utf-8'):
            ('utf-8', '@charset "utf-8";\n/*\xe4*/'.encode('utf-8')),
            ('@charset "ascii";/*a*/', None):
            ('ascii', '@charset "ascii";\n/*a*/'.encode('ascii')),
            ('@charset "utf-8";/*a*/', None):
            ('utf-8', '@charset "utf-8";\n/*a*/'.encode('utf-8')),
            ('@charset "iso-8859-1";/*a*/', None):
            ('iso-8859-1',
             '@charset "iso-8859-1";\n/*a*/'.encode('iso-8859-1')),

            # unicode string, no encoding: encoding, cssText
            ('/*€*/', None): ('utf-8', '/*€*/'.encode('utf-8')),
            ('@charset "iso-8859-1";/*ä*/', None):
            ('iso-8859-1',
             '@charset "iso-8859-1";\n/*ä*/'.encode('iso-8859-1')),
            ('@charset "utf-8";/*€*/', None):
            ('utf-8', '@charset "utf-8";\n/*€*/'.encode('utf-8')),
            ('@charset "utf-16";/**/', None):
            ('utf-16', '@charset "utf-16";\n/**/'.encode('utf-16')),
            # unicode string, encoding utf-8: encoding, cssText
            ('/*€*/', 'utf-8'):
            ('utf-8', '@charset "utf-8";\n/*€*/'.encode('utf-8')),
            ('@charset "iso-8859-1";/*ä*/', 'utf-8'):
            ('utf-8', '@charset "utf-8";\n/*ä*/'.encode('utf-8')),
            ('@charset "utf-8";/*€*/', 'utf-8'):
            ('utf-8', '@charset "utf-8";\n/*€*/'.encode('utf-8')),
            ('@charset "utf-16";/**/', 'utf-8'):
            ('utf-8', '@charset "utf-8";\n/**/'.encode('utf-8')),
            # probably not what is wanted but does not raise:
            ('/*€*/', 'ascii'):
            ('ascii', '@charset "ascii";\n/*\\20AC */'.encode('utf-8')),
            ('/*€*/', 'iso-8859-1'):
            ('iso-8859-1',
             '@charset "iso-8859-1";\n/*\\20AC */'.encode('utf-8')),
        }
        for test in tests:
            css, encoding = test
            sheet = css_parser.parseString(css, encoding=encoding)
            encoding, cssText = tests[test]
            self.assertEqual(encoding, sheet.encoding)
            self.assertEqual(cssText, sheet.cssText)

        tests = [
            # encoded css, overiding encoding
            ('/*€*/'.encode('utf-16'), 'utf-8'),
            ('/*ä*/'.encode('iso-8859-1'), 'ascii'),
            ('/*€*/'.encode('utf-8'), 'ascii'),
            ('a'.encode('ascii'), 'utf-16'),
        ]
        for test in tests:
            self.assertRaises(UnicodeDecodeError, css_parser.parseString,
                              test[0], test[1])

    def test_validate(self):
        """CSSParser(validate)"""
        style = 'color: red'
        t = 'a { %s }' % style

        # helper
        s = css_parser.parseString(t)
        self.assertEqual(s.validating, True)
        s = css_parser.parseString(t, validate=False)
        self.assertEqual(s.validating, False)
        s = css_parser.parseString(t, validate=True)
        self.assertEqual(s.validating, True)

        d = css_parser.parseStyle(style)
        self.assertEqual(d.validating, True)
        d = css_parser.parseStyle(style, validate=True)
        self.assertEqual(d.validating, True)
        d = css_parser.parseStyle(style, validate=False)
        self.assertEqual(d.validating, False)

        # parser
        p = css_parser.CSSParser()
        s = p.parseString(t)
        self.assertEqual(s.validating, True)
        s = p.parseString(t, validate=False)
        self.assertEqual(s.validating, False)
        s = p.parseString(t, validate=True)
        self.assertEqual(s.validating, True)
        d = p.parseStyle(style)
        self.assertEqual(d.validating, True)

        p = css_parser.CSSParser(validate=True)
        s = p.parseString(t)
        self.assertEqual(s.validating, True)
        s = p.parseString(t, validate=False)
        self.assertEqual(s.validating, False)
        s = p.parseString(t, validate=True)
        self.assertEqual(s.validating, True)
        d = p.parseStyle(style)
        self.assertEqual(d.validating, True)

        p = css_parser.CSSParser(validate=False)
        s = p.parseString(t)
        self.assertEqual(s.validating, False)
        s = p.parseString(t, validate=False)
        self.assertEqual(s.validating, False)
        s = p.parseString(t, validate=True)
        self.assertEqual(s.validating, True)
        d = p.parseStyle(style)
        self.assertEqual(d.validating, False)

        # url
        p = css_parser.CSSParser(validate=False)
        p.setFetcher(self._make_fetcher('utf-8', t))
        u = 'url'
        s = p.parseUrl(u)
        self.assertEqual(s.validating, False)
        s = p.parseUrl(u, validate=False)
        self.assertEqual(s.validating, False)
        s = p.parseUrl(u, validate=True)
        self.assertEqual(s.validating, True)

        # check if it raises see log test

    def test_fetcher(self):
        """CSSParser.fetcher

        order:
           0. explicity given encoding OVERRIDE (css_parser only)

           1. An HTTP "charset" parameter in a "Content-Type" field (or similar parameters in other protocols)
           2. BOM and/or @charset (see below)
           3. <link charset=""> or other metadata from the linking mechanism (if any)
           4. charset of referring style sheet or document (if any)
           5. Assume UTF-8
        """
        tests = {
            # css, encoding, (mimetype, encoding, importcss):
            #    encoding, importIndex, importEncoding, importText

            # 0/0 override/override => ASCII/ASCII
            ('@charset "utf-16"; @import "x";', 'ASCII', ('iso-8859-1', '@charset "latin1";/*t*/')):
            ('ascii', 1, 'ascii', '@charset "ascii";\n/*t*/'.encode()),
            # 1/1 not tested her but same as next
            # 2/1 @charset/HTTP => UTF-16/ISO-8859-1
            ('@charset "UTF-16"; @import "x";', None, ('ISO-8859-1', '@charset "latin1";/*t*/')):
            ('utf-16', 1, 'iso-8859-1',
             '@charset "iso-8859-1";\n/*t*/'.encode('iso-8859-1')),
            # 2/2 @charset/@charset => UTF-16/ISO-8859-1
            ('@charset "UTF-16"; @import "x";', None, (None, '@charset "ISO-8859-1";/*t*/')):
            ('utf-16', 1, 'iso-8859-1',
             '@charset "iso-8859-1";\n/*t*/'.encode('iso-8859-1')),
            # 2/4 @charset/referrer => ASCII/ASCII
            ('@charset "ASCII"; @import "x";', None, (None, '/*t*/')):
            ('ascii', 1, 'ascii', '@charset "ascii";\n/*t*/'.encode()),
            # 5/5 default/default or referrer
            ('@import "x";', None, (None, '/*t*/')):
            ('utf-8', 0, 'utf-8', '/*t*/'.encode()),
            # 0/0 override/override+unicode
            ('@charset "utf-16"; @import "x";', 'ASCII', (None, '@charset "latin1";/*\u0287*/')):
            ('ascii', 1, 'ascii', '@charset "ascii";\n/*\\287 */'.encode()),
            # 2/1 @charset/HTTP+unicode
            ('@charset "ascii"; @import "x";', None, ('iso-8859-1', '/*\u0287*/')):
            ('ascii', 1, 'iso-8859-1',
             '@charset "iso-8859-1";\n/*\\287 */'.encode()),
            # 2/4 @charset/referrer+unicode
            ('@charset "ascii"; @import "x";', None, (None, '/*\u0287*/')):
            ('ascii', 1, 'ascii', '@charset "ascii";\n/*\\287 */'.encode()),
            # 5/1 default/HTTP+unicode
            ('@import "x";', None, ('ascii', '/*\u0287*/')):
            ('utf-8', 0, 'ascii', '@charset "ascii";\n/*\\287 */'.encode()),
            # 5/5 default+unicode/default+unicode
            ('@import "x";', None, (None, '/*\u0287*/')):
            ('utf-8', 0, 'utf-8', '/*\u0287*/'.encode('utf-8'))
        }
        parser = css_parser.CSSParser()
        for test in tests:
            css, encoding, fetchdata = test
            sheetencoding, importIndex, importEncoding, importText = tests[
                test]

            # use setFetcher
            parser.setFetcher(self._make_fetcher(*fetchdata))
            # use init
            parser2 = css_parser.CSSParser(
                fetcher=self._make_fetcher(*fetchdata))

            sheet = parser.parseString(css, encoding=encoding)
            sheet2 = parser2.parseString(css, encoding=encoding)

            # sheet
            self.assertEqual(sheet.encoding, sheetencoding)
            self.assertEqual(sheet2.encoding, sheetencoding)
            # imported sheet
            self.assertEqual(sheet.cssRules[importIndex].styleSheet.encoding,
                             importEncoding)
            self.assertEqual(sheet2.cssRules[importIndex].styleSheet.encoding,
                             importEncoding)
            self.assertEqual(sheet.cssRules[importIndex].styleSheet.cssText,
                             importText)
            self.assertEqual(sheet2.cssRules[importIndex].styleSheet.cssText,
                             importText)

    def test_roundtrip(self):
        "css_parser encodings"
        css1 = '''@charset "utf-8";
/* ä */'''

        s = css_parser.parseString(css1)
        css2 = s.cssText
        if isinstance(css2, bytes):
            css2 = css2.decode('utf-8')
        self.assertEqual(css1, css2)

        s = css_parser.parseString(css2)
        s.cssRules[0].encoding = 'ascii'
        css3 = r'''@charset "ascii";
/* \E4  */'''

        ans = s.cssText
        if isinstance(ans, bytes):
            ans = ans.decode('utf-8')
        self.assertEqual(css3, ans)

    def test_escapes(self):
        "css_parser escapes"
        css = r'\43\x { \43\x: \43\x !import\41nt }'
        sheet = css_parser.parseString(css)
        self.assertEqual(sheet.cssText, r'''C\x {
    c\x: C\x !important
    }'''.encode())

        css = r'\ x{\ x :\ x ;y:1} '
        sheet = css_parser.parseString(css)
        self.assertEqual(sheet.cssText, r'''\ x {
    \ x: \ x;
    y: 1
    }'''.encode())

    def test_invalidstring(self):
        "css_parser.parseString(INVALID_STRING)"
        validfromhere = '@namespace "x";'
        csss = ('''@charset "ascii
                ;''' + validfromhere, '''@charset 'ascii
                ;''' + validfromhere, '''@namespace "y
                ;''' + validfromhere, '''@import "y
                ;''' + validfromhere, '''@import url('a
                );''' + validfromhere, '''@unknown "y
                ;''' + validfromhere)
        for css in csss:
            s = css_parser.parseString(css)
            self.assertEqual(validfromhere.encode(), s.cssText)

        csss = ('''a { font-family: "Courier
                ; }''', r'''a { content: "\"; }
                ''', r'''a { content: "\\\"; }
                ''')
        for css in csss:
            self.assertEqual(''.encode(), css_parser.parseString(css).cssText)

    def test_invalid(self):
        "css_parser.parseString(INVALID_CSS)"
        tests = {
            'a {color: blue}} a{color: red} a{color: green}':
            '''a {
    color: blue
    }
a {
    color: green
    }''',
            'p @here {color: red} p {color: green}':
            'p {\n    color: green\n    }'
        }

        for css in tests:
            exp = tests[css]
            if exp is None:
                exp = css
            s = css_parser.parseString(css)
            self.assertEqual(exp.encode(), s.cssText)

    def test_nesting(self):
        "css_parser.parseString nesting"
        # examples from csslist 27.11.2007
        tests = {
            '@1; div{color:green}':
            'div {\n    color: green\n    }',
            '@1 []; div{color:green}':
            'div {\n    color: green\n    }',
            '@1 [{}]; div { color:green; }':
            'div {\n    color: green\n    }',
            '@media all { @ } div{color:green}':
            'div {\n    color: green\n    }',
            # should this be u''?
            '@1 { [ } div{color:green}':
            '',
            # red was eaten:
            '@1 { [ } ] div{color:red}div{color:green}':
            'div {\n    color: green\n    }',
        }
        for css, exp in tests.items():
            self.assertEqual(exp.encode(), css_parser.parseString(css).cssText)

    def test_specialcases(self):
        "css_parser.parseString(special_case)"
        tests = {
            '''
    a[title="a not s\
o very long title"] {/*...*/}''':
            '''a[title="a not so very long title"] {
    /*...*/
    }'''
        }
        for css in tests:
            exp = tests[css]
            if exp is None:
                exp = css
            s = css_parser.parseString(css)
            self.assertEqual(exp.encode(), s.cssText)

    def test_iehack(self):
        "IEhack: $property (not since 0.9.5b3)"
        # $color is not color!
        css = 'a { color: green; $color: red; }'
        s = css_parser.parseString(css)

        p1 = s.cssRules[0].style.getProperty('color')
        self.assertEqual('color', p1.name)
        self.assertEqual('color', p1.literalname)
        self.assertEqual('', s.cssRules[0].style.getPropertyValue('$color'))

        p2 = s.cssRules[0].style.getProperty('$color')
        self.assertEqual(None, p2)

        self.assertEqual('green',
                         s.cssRules[0].style.getPropertyValue('color'))
        self.assertEqual('green', s.cssRules[0].style.color)

    def test_attributes(self):
        "css_parser.parseString(href, media)"
        s = css_parser.parseString(
            "a{}", href="file:foo.css", media="screen, projection, tv")
        self.assertEqual(s.href, "file:foo.css")
        self.assertEqual(s.media.mediaText, "screen, projection, tv")

        s = css_parser.parseString(
            "a{}", href="file:foo.css", media=["screen", "projection", "tv"])
        self.assertEqual(s.media.mediaText, "screen, projection, tv")


if __name__ == '__main__':
    import unittest
    unittest.main()