1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-04 07:57:52 +03:00
WeasyPrint/weasy/tests/test_css.py

228 lines
7.4 KiB
Python
Raw Normal View History

2011-04-26 20:07:19 +04:00
# coding: utf8
# WeasyPrint converts web documents (HTML, CSS, ...) to PDF.
# Copyright (C) 2011 Simon Sapin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os.path
from cssutils.helper import path2url
2011-04-26 20:07:19 +04:00
from attest import Tests, assert_hook
import attest
import cssutils
2011-04-26 20:07:19 +04:00
2011-04-27 19:50:12 +04:00
from .. import css
from ..document import Document
2011-04-26 20:07:19 +04:00
from . import resource_filename
from .test_boxes import monkeypatch_validation
2011-04-26 20:07:19 +04:00
suite = Tests()
2011-05-17 13:29:00 +04:00
2011-08-05 18:19:22 +04:00
def parse_html(filename, **kwargs):
"""Parse an HTML file from the test resources and resolve relative URL."""
2011-08-05 18:19:22 +04:00
# Make a file:// URL
url = path2url(resource_filename(filename))
return Document.from_file(url, **kwargs)
2011-05-17 13:29:00 +04:00
@suite.test
def test_style_dict():
style = css.computed_values.StyleDict({
2011-05-17 13:29:00 +04:00
'margin-left': cssutils.css.PropertyValue('12px'),
'display': cssutils.css.PropertyValue('block')
})
assert style.display[0].value == 'block'
assert style.margin_left[0].value == 12
with attest.raises(AttributeError):
style.position
2011-04-26 20:07:19 +04:00
@suite.test
def test_find_stylesheets():
document = parse_html('doc1.html')
2011-06-29 16:04:42 +04:00
2011-04-28 12:44:50 +04:00
sheets = list(css.find_stylesheets(document))
assert len(sheets) == 3
2011-05-10 13:41:23 +04:00
# Also test that stylesheets are in tree order
assert [s.href.rsplit('/', 1)[-1].rsplit(',', 1)[-1] for s in sheets] \
== ['sheet1.css', 'a%7Bcolor%3AcurrentColor%7D',
'doc1.html']
2011-04-26 20:07:19 +04:00
2011-04-28 12:44:50 +04:00
rules = list(rule for sheet in sheets
for rule in css.effective_rules(sheet, 'print'))
2011-08-08 13:28:37 +04:00
assert len(rules) == 9
2011-05-12 18:06:47 +04:00
# Also test appearance order
assert [rule.selectorText for rule in rules] \
== ['a', 'li', 'p', 'ul', 'li', 'a:after', ':first', 'ul',
2011-05-12 18:06:47 +04:00
'body > h1:first-child']
2011-04-26 20:07:19 +04:00
@suite.test
def test_expand_shorthands():
sheet = cssutils.parseFile(resource_filename('sheet2.css'))
assert sheet.cssRules[0].selectorText == 'li'
style = sheet.cssRules[0].style
2011-04-28 12:44:50 +04:00
assert style['margin'] == '2em 0'
assert style['margin-bottom'] == '3em'
assert style['margin-left'] == '4em'
2011-04-28 12:44:50 +04:00
assert not style['margin-top']
style = dict(
(name, css.values.as_css(values))
for name, values, _priority in css.effective_declarations(style))
assert 'margin' not in style
assert style['margin-top'] == '2em'
assert style['margin-right'] == '0'
assert style['margin-bottom'] == '2em', \
"3em was before the shorthand, should be masked"
assert style['margin-left'] == '4em', \
"4em was after the shorthand, should not be masked"
2011-08-05 18:19:22 +04:00
def parse_css(filename):
return cssutils.parseFile(resource_filename(filename))
def validate_content(real_non_shorthand, name, values, required=False):
if name == 'content':
return [(name, values)]
return real_non_shorthand(name, values, required)
@suite.test
def test_annotate_document():
# TODO: remove this patching when the `content` property is supported.
with monkeypatch_validation(validate_content):
document = parse_html(
'doc1.html',
user_stylesheets=[parse_css('user.css')],
user_agent_stylesheets=[parse_css('mini_ua.css')],
)
# Element objects behave a lists of their children
_head, body = document.dom
h1, p, ul = body
li_0, _li_1 = ul
a, = li_0
h1 = document.style_for(h1)
p = document.style_for(p)
ul = document.style_for(ul)
li_0 = document.style_for(li_0)
after = document.style_for(a, 'after')
a = document.style_for(a)
assert h1['background-image'][0].absoluteUri == 'file://' \
+ os.path.abspath(resource_filename('logo_small.png'))
2011-06-29 16:04:42 +04:00
assert h1.font_weight[0].value == 700
2011-06-29 16:04:42 +04:00
# 32px = 1em * font-size: 2em * initial 16px
assert p.margin_top[0].value == 32
assert p.margin_right[0].value == 0
assert p.margin_bottom[0].value == 32
assert p.margin_left[0].value == 0
2011-06-29 16:04:42 +04:00
# 32px = 2em * initial 16px
assert ul.margin_top[0].value == 32
assert ul.margin_right[0].value == 32
assert ul.margin_bottom[0].value == 32
assert ul.margin_left[0].value == 32
2011-06-29 16:04:42 +04:00
2011-05-06 18:23:29 +04:00
# thick = 5px, 0.25 inches = 96*.25 = 24px
assert ul.border_top_width[0].value == 0
assert ul.border_right_width[0].value == 5
assert ul.border_bottom_width[0].value == 0
assert ul.border_left_width[0].value == 24
2011-06-29 16:04:42 +04:00
# 32px = 2em * initial 16px
# 64px = 4em * initial 16px
assert li_0.margin_top[0].value == 32
assert li_0.margin_right[0].value == 0
assert li_0.margin_bottom[0].value == 32
assert li_0.margin_left[0].value == 64
2011-06-29 16:04:42 +04:00
assert a.text_decoration[0].value == 'underline'
2011-06-29 16:04:42 +04:00
assert a.padding_top[0].value == 1
assert a.padding_right[0].value == 2
assert a.padding_bottom[0].value == 3
assert a.padding_left[0].value == 4
2011-08-08 13:28:37 +04:00
color = a['color'][0]
assert (color.red, color.green, color.blue, color.alpha) == (255, 0, 0, 1)
# Test the initial border-color: currentColor
color = a['border-top-color'][0]
assert (color.red, color.green, color.blue, color.alpha) == (255, 0, 0, 1)
# The href attr should be as in the source, not made absolute.
assert ''.join(v.value for v in after['content']) == ' [home.html]'
2011-05-12 18:06:47 +04:00
# TODO much more tests here: test that origin and selector precedence
# and inheritance are correct, ...
@suite.test
def test_default_stylesheet():
# TODO: remove this patching when the `content` property is supported.
with monkeypatch_validation(validate_content):
document = parse_html('doc1.html')
head_style = document.style_for(document.dom.head)
assert head_style.display[0].value == 'none', \
'The HTML4 user-agent stylesheet was not applied'
2011-07-01 20:08:24 +04:00
@suite.test
def test_page():
# TODO: remove this patching when the `content` property is supported.
with monkeypatch_validation(validate_content):
document = parse_html('doc1.html', user_stylesheets=[
cssutils.parseString(u"""
@page {
margin: 10px;
}
@page :right {
margin-bottom: 12pt;
}
""")
])
style = document.style_for('@page', 'first_left')
assert style.margin_top[0].value == 5
assert style.margin_left[0].value == 10
assert style.margin_bottom[0].value == 10
2011-07-01 20:08:24 +04:00
style = document.style_for('@page', 'first_right')
assert style.margin_top[0].value == 5
assert style.margin_left[0].value == 10
assert style.margin_bottom[0].value == 16
2011-07-01 20:08:24 +04:00
style = document.style_for('@page', 'left')
assert style.margin_top[0].value == 10
assert style.margin_left[0].value == 10
assert style.margin_bottom[0].value == 10
2011-07-01 20:08:24 +04:00
style = document.style_for('@page', 'right')
assert style.margin_top[0].value == 10
assert style.margin_left[0].value == 10
assert style.margin_bottom[0].value == 16