djLint/tests/test_html/test_attributes.py

1089 lines
31 KiB
Python
Raw Normal View History

"""Djlint tests for html attributes.
2022-05-13 21:11:06 +00:00
run::
pytest tests/test_html/test_attributes.py --cov=src/djlint --cov-branch \
2022-05-13 21:11:06 +00:00
--cov-report xml:coverage.xml --cov-report term-missing
pytest tests/test_html/test_attributes.py::test_long_attributes
pytest tests/test_html/test_attributes.py::test_ignored_attributes
pytest tests/test_html/test_attributes.py::test_boolean_attributes
Some tests may be from prettier.io's html test suite.
Where applicable this notice may be needed:
2022-05-13 21:11:06 +00:00
#### Prettier.io license ####
Copyright © James Long and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2022-05-13 21:11:06 +00:00
"""
2022-08-16 12:42:44 +00:00
# pylint: disable=C0116,C0302
2022-05-13 21:11:06 +00:00
from typing import TextIO
from click.testing import CliRunner
from tests.conftest import reformat
def test_srcset(runner: CliRunner, tmp_file: TextIO) -> None:
output = reformat(
tmp_file,
runner,
b"""<img {% image value.image fill-640x360 as block_image_640 %}
{% image value.image fill-768x432 as block_image_768 %}
{% image value.image fill-1024x576 as block_image_1024 %}
{% image value.image fill-1600x900 as block_image_1600 %}
data-src="{{ block_image_640.url }}"
data-srcset="{{ block_image_640.url }} 640w,
{{ block_image_768.url }} 768w,
{{ block_image_1024.url }} 1024w,
{{ block_image_1600.url }} 1600w"
sizes="(min-width: 1200px) 458px,
(min-width: 992px) 374px,
(min-width: 768px) 720px,
calc(100vw - 30px)"
class="richtext-image imageblock overflow {{ value.image_position }} lazy"
title="{{ value.image.title }}"
alt="Block image"/>""",
)
assert output.exit_code == 0
2022-05-13 21:11:06 +00:00
def test_long_attributes(runner: CliRunner, tmp_file: TextIO) -> None:
output = reformat(
tmp_file,
runner,
b"""<input type="text" class="class one class two" disabled="true" value="something pretty long goes here"
style="width:100px;cursor: text;border:1px solid pink"
required="true" />""",
)
assert output.exit_code == 1
assert (
output.text
== """<input type="text"
class="class one class two"
disabled="true"
value="something pretty long goes here"
style="width:100px;
cursor: text;
border:1px solid pink"
2022-05-13 21:11:06 +00:00
required="true"/>
"""
)
# check styles
output = reformat(
tmp_file,
runner,
b"""<div class="my long classes"
required="true"
checked="checked"
data-attr="some long junk"
style="margin-left: 90px;
display: contents;
font-weight: bold;
font-size: 1.5rem">
2022-05-13 21:11:06 +00:00
""",
)
assert output.exit_code == 0
# check styles when tag is first
output = reformat(
tmp_file,
runner,
b"""<div>
<div style="margin-left: 90px;
display: contents;
font-weight: bold;
font-size: 1.5rem"
2022-05-13 21:11:06 +00:00
data-attr="stuff"
class="my long class goes here">
</div>
</div>
""",
)
assert output.exit_code == 0
# attributes with space around = are not broken
# https://github.com/Riverside-Healthcare/djLint/issues/317
# https://github.com/Riverside-Healthcare/djLint/issues/330
output = reformat(
tmp_file,
runner,
b"""<a href = "http://test.test:3000/testtesttesttesttesttesttesttesttesttest">Test</a>\n""",
)
assert (
output.text
== """<a href="http://test.test:3000/testtesttesttesttesttesttesttesttesttest">Test</a>\n"""
)
2022-05-13 21:11:06 +00:00
def test_ignored_attributes(runner: CliRunner, tmp_file: TextIO) -> None:
output = reformat(
tmp_file,
runner,
b"""<div
class="a long list of meaningless classes"
2022-08-01 22:27:29 +00:00
id="something_meaning_less_is_here"
2022-05-13 21:11:06 +00:00
required
checked="checked"
json-data='{"menu":{"header":"SVG Viewer","items":[{"id":"Open"}]}}'>
</div>""",
)
assert output.exit_code == 1
print(output.text)
assert (
output.text
== """<div class="a long list of meaningless classes"
2022-08-01 22:27:29 +00:00
id="something_meaning_less_is_here"
2022-05-13 21:11:06 +00:00
required
checked="checked"
json-data='{"menu":{"header":"SVG Viewer","items":[{"id":"Open"}]}}'>\n</div>
"""
)
def test_boolean_attributes(runner: CliRunner, tmp_file: TextIO) -> None:
output = reformat(
tmp_file,
runner,
2022-08-16 12:42:44 +00:00
b"""<select
multiple
class="selectpicker show-tick"
id="device-select"
title="">
</select>""",
)
2022-08-16 12:42:44 +00:00
# boolean attributes after tag must be reformatted correctly
assert output.exit_code == 1
print(output.text)
assert (
output.text
== """<select multiple class="selectpicker show-tick" id="device-select" title="">
</select>
"""
)
# boolean attributes after tag with long attributes must be reformatted correctly
output = reformat(
tmp_file,
runner,
2022-08-16 12:42:44 +00:00
b"""<select
multiple
class="selectpicker show-tick"
id="device-select"
title=""
value="something pretty long goes here"
style="width:100px;cursor: text;border:1px solid pink">
</select>""",
)
assert output.exit_code == 1
assert (
output.text
== """<select multiple
class="selectpicker show-tick"
id="device-select"
title=""
value="something pretty long goes here"
style="width:100px;
cursor: text;
border:1px solid pink">
</select>
"""
)
# boolean attributes after tag are accepted
output = reformat(
tmp_file,
runner,
b"""<input readonly
class="form-control"
type="text"
name="driver_id"
2022-08-16 12:42:44 +00:00
value="{{ id|default(' sample_text ') }}"/>""",
)
assert output.exit_code == 0
2022-08-16 12:42:44 +00:00
def test_attribute_quotes(runner: CliRunner, tmp_file: TextIO) -> None:
output = reformat(
tmp_file,
runner,
b"""<button id="test"
name="test"
type="submit"
one="isTrue ? 'True' : 'False'"
two="'Test' ."
three="'Test'"></button>""",
)
assert output.exit_code == 0
# def test_attributes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <input name=address maxlength=200>
# <input name='address' maxlength='200'>
# <input name="address" maxlength="200">
# <div class="foo"></div>
# <div class="foo" ></div>
# <div class="foo bar"></div>
# <div class="foo bar" id="header"></div>
# <div class="foo bar" id="header" ></div>
# <div data-prettier></div>
# <div data-prettier="true"></div>
# <meta property="og:description" content="The Mozilla Developer Network (MDN) provides
# information about Open Web technologies including HTML, CSS, and APIs for both Web sites
# and HTML5 Apps. It also documents Mozilla products, like Firefox OS.">
# <div attribute>String</div>
# <div attribute="">String</div>
# <div attribute=''>String</div>
# <div attribute >String</div>
# <div attribute = "" >String</div>
# <div attribute = '' >String</div>
# <div attribute >String</div>
# <div attribute = "" >String</div>
# <div attribute = '' >String</div>
# <div attribute="attribute = attribute"></div>
# <div ATTRIBUTE>String</div>
# <div ATTRIBUTE="">String</div>
# <div ATTRIBUTE=''>String</div>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars">
# </article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars">...</article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars">
# ...
# </article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars">
# </article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars">
# </article>
# <X>
# </X>
# <X a="1">
# </X>
# <X a="1" b="2">
# </X>
# <X a="1" b="2" c="3">
# </X>
# <p
# class="
# foo
# bar
# baz
# "
# >
# </p>
# """
# ).strip()
# html_out = (
# """
# <input name="address" maxlength="200" />
# <input name="address" maxlength="200" />
# <input name="address" maxlength="200" />
# <div class="foo"></div>
# <div class="foo"></div>
# <div class="foo bar"></div>
# <div class="foo bar" id="header"></div>
# <div class="foo bar" id="header"></div>
# <div data-prettier></div>
# <div data-prettier="true"></div>
# <meta
# property="og:description"
# content="The Mozilla Developer Network (MDN) provides
# information about Open Web technologies including HTML, CSS, and APIs for both Web sites
# and HTML5 Apps. It also documents Mozilla products, like Firefox OS." />
# <div attribute>String</div>
# <div attribute="">String</div>
# <div attribute="">String</div>
# <div attribute>String</div>
# <div attribute="">String</div>
# <div attribute="">String</div>
# <div attribute>String</div>
# <div attribute="">String</div>
# <div attribute="">String</div>
# <div attribute="attribute = attribute"></div>
# <div ATTRIBUTE>String</div>
# <div ATTRIBUTE="">String</div>
# <div ATTRIBUTE="">String</div>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars"
# ></article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars"
# >
# ...
# </article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars"
# >
# ...
# </article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars"
# ></article>
# <article
# id="electriccars"
# data-columns="3"
# data-index-number="12314"
# data-parent="cars"
# ></article>
# <X> </X>
# <X a="1"> </X>
# <X a="1" b="2"> </X>
# <X a="1" b="2" c="3"> </X>
# <p class="foo bar baz"></p>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_boolean(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <button type="submit">This is valid.</button>
# <button type="submit" disabled>This is valid.</button>
# <button type="submit" disabled="">This is valid.</button>
# <button type="submit" disabled="disabled">This is valid.</button>
# <button type="submit" disabled=true>This is valid. This will be disabled.</button>
# <button type="submit" disabled='true'>This is valid. This will be disabled.</button>
# <button type="submit" disabled="true">This is valid. This will be disabled.</button>
# <button type="submit" disabled=false>This is valid. This will be disabled.</button>
# <button type="submit" disabled="false">This is valid. This will be disabled.</button>
# <button type="submit" disabled='false'>This is valid. This will be disabled.</button>
# <button type="submit" disabled=hahah>This is valid. This will be disabled.</button>
# <button type="submit" disabled='hahah'>This is valid. This will be disabled.</button>
# <button type="submit" disabled="hahah">This is valid. This will be disabled.</button>
# <input type="checkbox" checked disabled name="cheese">
# <input type="checkbox" checked="checked" disabled="disabled" name="cheese">
# <input type='checkbox' checked="" disabled="" name=cheese >
# <div lang=""></div>
# """
# ).strip()
# html_out = (
# """
# <button type="submit">This is valid.</button>
# <button type="submit" disabled>This is valid.</button>
# <button type="submit" disabled="">This is valid.</button>
# <button type="submit" disabled="disabled">This is valid.</button>
# <button type="submit" disabled="true">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="true">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="true">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="false">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="false">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="false">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="hahah">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="hahah">
# This is valid. This will be disabled.
# </button>
# <button type="submit" disabled="hahah">
# This is valid. This will be disabled.
# </button>
# <input type="checkbox" checked disabled name="cheese" />
# <input type="checkbox" checked="checked" disabled="disabled" name="cheese" />
# <input type="checkbox" checked="" disabled="" name="cheese" />
# <div lang=""></div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_case_sensitive(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div CaseSensitive></div>
# """
# ).strip()
# html_out = (
# """
# <div CaseSensitive></div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_bem1(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div class="ProviderMeasuresContainer__heading-row
# d-flex
# flex-column flex-lg-row
# justify-content-start justify-content-lg-between
# align-items-start align-items-lg-center">Foo</div>
# <div class="a-bem-block a-bem-block--with-modifer ">
# <div class="a-bem-block__element a-bem-block__element--with-modifer also-another-block" >
# <div class="a-bem-block__element a-bem-block__element--with-modifer also-another-block__element">
# </div></div> </div>
# """
# ).strip()
# html_out = (
# """
# <div
# class="ProviderMeasuresContainer__heading-row d-flex flex-column flex-lg-row justify-content-start justify-content-lg-between align-items-start align-items-lg-center"
# >
# Foo
# </div>
# <div class="a-bem-block a-bem-block--with-modifer">
# <div
# class="a-bem-block__element a-bem-block__element--with-modifer also-another-block">
# <div
# class="a-bem-block__element a-bem-block__element--with-modifer also-another-block__element"
# ></div>
# </div>
# </div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_bem2(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div class="news__header widget__content">
# <div class="news__tabs">
# <h1 class="news__tab-wrapper news__head-item">
# <a
# class="home-link home-link_blue_yes news__tab news__tab_selected_yes mix-tabber__tab mix-tabber__tab_selected_yes"
# tabindex="0"
# aria-selected="true"
# aria-controls="news_panel_news"
# data-key="news"
# id="news_tab_news"
# data-stat-link="news.tab.link.news"
# data-stat-select="news.tab.select.news"
# target="_blank"
# role="tab"
# href="https://yandex.ru/news?msid=1581089780.29024.161826.172442&mlid=1581088893.glob_225"
# rel="noopener"
# >...</a
# >
# </h1>
# </div>
# </div>
# """
# ).strip()
# html_out = (
# """
# <div class="news__header widget__content">
# <div class="news__tabs">
# <h1 class="news__tab-wrapper news__head-item">
# <a class="home-link home-link_blue_yes news__tab news__tab_selected_yes mix-tabber__tab mix-tabber__tab_selected_yes"
# tabindex="0"
# aria-selected="true"
# aria-controls="news_panel_news"
# data-key="news"
# id="news_tab_news"
# data-stat-link="news.tab.link.news"
# data-stat-select="news.tab.select.news"
# target="_blank"
# role="tab"
# href="https://yandex.ru/news?msid=1581089780.29024.161826.172442&mlid=1581088893.glob_225"
# rel="noopener"
# >...</a>
# </h1>
# </div>
# </div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_colon(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <my-tag class="md:foo-bg md:foo-color md:foo--sub-bg md:foo--sub-color xl:foo xl:prefix2 --prefix2--something-else unrelated_class_to_fill_80_chars"></my-tag>
# """
# ).strip()
# html_out = (
# """
# <my-tag
# class="md:foo-bg md:foo-color md:foo--sub-bg md:foo--sub-color xl:foo xl:prefix2 --prefix2--something-else unrelated_class_to_fill_80_chars"
# ></my-tag>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_leading_dashes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <my-tag class="__prefix1__foo __prefix1__bar __prefix2__foo prefix2 prefix2--something --prefix2--something-else"></my-tag>
# <my-tag class="--prefix1--foo --prefix1--bar --prefix2--foo prefix2 prefix2__something __prefix2__something_else"></my-tag>
# """
# ).strip()
# html_out = (
# """
# <my-tag
# class="__prefix1__foo __prefix1__bar __prefix2__foo prefix2 prefix2--something --prefix2--something-else"
# ></my-tag>
# <my-tag
# class="--prefix1--foo --prefix1--bar --prefix2--foo prefix2 prefix2__something __prefix2__something_else"
# ></my-tag>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_many_short_names(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
# Jump to
# <span class="d-inline-block ml-1 v-align-middle">x</span>
# </div>
# """
# ).strip()
# html_out = (
# """
# <div
# aria-hidden="true"
# class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump"
# >
# Jump to
# <span class="d-inline-block ml-1 v-align-middle">x</span>
# </div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_names(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <img class="
# foo
# bar
# ">
# <img class=" ">
# <img class>
# <img class="
# looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
# a-long-long-long-long-long-class-name
# another-long-long-long-class-name
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# foo bar
# ">
# <img
# class="{{ ...classes }}">
# <img
# class="foo bar {{ otherClass }}">
# <!-- escaped -->
# <!-- from: https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape#Basic_results -->
# <img class="
# \\.foo\\#bar
# \\(\\)\\[\\]\\{\\}
# --a
# \\30
# \\ufffd
# ">
# <!-- from yahoo website -->
# <div id="header-wrapper" class="Bgc(#fff) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(4)
# has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow)
# Scrolling_Bxsh($headerShadow) ">
# <div class="Bgc(#fff) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(22px) Pos(r) TranslateZ(0) Z(6)"
# ><h1 class="Fz(0) Pstart(15px) Pos(a)"><a id="header-logo"
# href="https://www.yahoo.com/" class="D(b) Pos(r)" data-ylk="elm:img;elmt:logo;sec:hd;slk:logo">
# <img class="H(27px)!--sm1024 Mt(9px)!--sm1024 W(90px)!--sm1024"
# src="https://s.yimg.com/rz/p/yahoo_frontpage_en-US_s_f_p_205x58_frontpage_2x.png" height="58px"
# width="205px" alt="Yahoo"/></a></h1></div></div>
# """
# ).strip()
# html_out = (
# """
# <img class="foo bar" />
# <img class=" " />
# <img class />
# <img
# class="looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong a-long-long-long-long-long-class-name another-long-long-long-class-name foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar"
# />
# <img class="{{ ...classes }}" />
# <img class="foo bar {{ otherClass }}" />
# <!-- escaped -->
# <!-- from: https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape#Basic_results -->
# <img class="\\.foo\\#bar \\(\\)\\[\\]\\{\\} --a \\30 \\ufffd" />
# <!-- from yahoo website -->
# <div
# id="header-wrapper"
# class="Bgc(#fff) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(4) has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow) Scrolling_Bxsh($headerShadow)"
# >
# <div
# class="Bgc(#fff) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(22px) Pos(r) TranslateZ(0) Z(6)"
# >
# <h1 class="Fz(0) Pstart(15px) Pos(a)">
# <a
# id="header-logo"
# href="https://www.yahoo.com/"
# class="D(b) Pos(r)"
# data-ylk="elm:img;elmt:logo;sec:hd;slk:logo"
# >
# <img
# class="H(27px)!--sm1024 Mt(9px)!--sm1024 W(90px)!--sm1024"
# src="https://s.yimg.com/rz/p/yahoo_frontpage_en-US_s_f_p_205x58_frontpage_2x.png"
# height="58px"
# width="205px"
# alt="Yahoo"
# /></a>
# </h1>
# </div>
# </div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_class_print_width_edge(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 loooooooooooooooooooooooong">
# </div>
# """
# ).strip()
# html_out = (
# """
# <div
# aria-hidden="true"
# class="border rounded-1 flex-shrink-0 bg-gray px-1 loooooooooooooooooooooooong"
# ></div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_dobule_quotes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <img src="test.png" alt="John 'ShotGun' Nelson">
# """
# ).strip()
# html_out = (
# """
# <img src="test.png" alt="John 'ShotGun' Nelson" />
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_duplicate(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <a href="1" href="2">123</a>
# """
# ).strip()
# html_out = (
# """
# <a href="1" href="2">123</a>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_single_quotes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <img src="test.png" alt='John "ShotGun" Nelson'>
# """
# ).strip()
# html_out = (
# """
# <img src="test.png" alt='John "ShotGun" Nelson' />
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_smart_quotes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div
# smart-quotes='123 " 456'
# smart-quotes="123 ' 456"
# smart-quotes='123 &apos;&quot; 456'
# ></div>
# """
# ).strip()
# html_out = (
# """
# <div
# smart-quotes='123 " 456'
# smart-quotes="123 ' 456"
# smart-quotes="123 '&quot; 456"
# ></div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_srcset(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <img src="/assets/visual.png"
# srcset="/assets/visual@0.5.png 400w, /assets/visual.png 805w"
# sizes="(max-width: 66rem) 100vw, 66rem" alt=""/>
# <img src="/assets/visual.png"
# srcset="/assets/visual@0.5.png 400w, /assets/visual.png 805w, /assets/visual@2x.png 1610w, /assets/visual@3x.png 2415w"
# sizes="(max-width: 66rem) 100vw, 66rem" alt=""/>
# <img src="/assets/visual.png"
# srcset="/assets/visual@0.5.png 0.5x, /assets/visual.png 1111x, /assets/visual@2x.png 2x, /assets/visual@3x.png 3.3333x"
# sizes="(max-width: 66rem) 100vw, 66rem" alt=""/>
# <img
# srcset="
# /media/examples/surfer-240-200.jpg
# ">
# <!-- #8150 -->
# <img
# sizes="(max-width: 1400px) 100vw, 1400px"
# srcset="
# _20200401_145009_szrhju_c_scale,w_200.jpg 200w,
# _20200401_145009_szrhju_c_scale,w_379.jpg 379w,
# _20200401_145009_szrhju_c_scale,w_515.jpg 515w,
# _20200401_145009_szrhju_c_scale,w_630.jpg 630w,
# _20200401_145009_szrhju_c_scale,w_731.jpg 731w,
# _20200401_145009_szrhju_c_scale,w_828.jpg 828w,
# _20200401_145009_szrhju_c_scale,w_921.jpg 921w,
# _20200401_145009_szrhju_c_scale,w_995.jpg 995w,
# _20200401_145009_szrhju_c_scale,w_1072.jpg 1072w,
# _20200401_145009_szrhju_c_scale,w_1145.jpg 1145w,
# _20200401_145009_szrhju_c_scale,w_1216.jpg 1216w,
# _20200401_145009_szrhju_c_scale,w_1284.jpg 1284w,
# _20200401_145009_szrhju_c_scale,w_1350.jpg 1350w,
# _20200401_145009_szrhju_c_scale,w_1398.jpg 1398w,
# _20200401_145009_szrhju_c_scale,w_1400.jpg 1400w"
# src="_20200401_145009_szrhju_c_scale,w_1400.jpg"
# alt="">
# """
# ).strip()
# html_out = (
# """
# <img
# src="/assets/visual.png"
# srcset="/assets/visual@0.5.png 400w, /assets/visual.png 805w"
# sizes="(max-width: 66rem) 100vw, 66rem"
# alt=""
# />
# <img
# src="/assets/visual.png"
# srcset="
# /assets/visual@0.5.png 400w,
# /assets/visual.png 805w,
# /assets/visual@2x.png 1610w,
# /assets/visual@3x.png 2415w
# "
# sizes="(max-width: 66rem) 100vw, 66rem"
# alt=""
# />
# <img
# src="/assets/visual.png"
# srcset="
# /assets/visual@0.5.png 0.5x,
# /assets/visual.png 1111x,
# /assets/visual@2x.png 2x,
# /assets/visual@3x.png 3.3333x
# "
# sizes="(max-width: 66rem) 100vw, 66rem"
# alt=""
# />
# <img srcset="/media/examples/surfer-240-200.jpg" />
# <!-- #8150 -->
# <img
# sizes="(max-width: 1400px) 100vw, 1400px"
# srcset="
# _20200401_145009_szrhju_c_scale,w_200.jpg 200w,
# _20200401_145009_szrhju_c_scale,w_379.jpg 379w,
# _20200401_145009_szrhju_c_scale,w_515.jpg 515w,
# _20200401_145009_szrhju_c_scale,w_630.jpg 630w,
# _20200401_145009_szrhju_c_scale,w_731.jpg 731w,
# _20200401_145009_szrhju_c_scale,w_828.jpg 828w,
# _20200401_145009_szrhju_c_scale,w_921.jpg 921w,
# _20200401_145009_szrhju_c_scale,w_995.jpg 995w,
# _20200401_145009_szrhju_c_scale,w_1072.jpg 1072w,
# _20200401_145009_szrhju_c_scale,w_1145.jpg 1145w,
# _20200401_145009_szrhju_c_scale,w_1216.jpg 1216w,
# _20200401_145009_szrhju_c_scale,w_1284.jpg 1284w,
# _20200401_145009_szrhju_c_scale,w_1350.jpg 1350w,
# _20200401_145009_szrhju_c_scale,w_1398.jpg 1398w,
# _20200401_145009_szrhju_c_scale,w_1400.jpg 1400w
# "
# src="_20200401_145009_szrhju_c_scale,w_1400.jpg"
# alt=""
# />
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_style(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div style="
# color:
# #fFf
# "></div>
# <div style=" "></div>
# <div style></div>
# <div style="
# all: initial;display: block;
# contain: content;text-align: center;
# background: linear-gradient(to left, hotpink, #FFF00F, #ccc, hsla(240, 100%, 50%, .05), transparent);
# background: linear-gradient(to left, hsla(240, 100%, 50%, .05), red);
# max-width: 500px;margin: 0 auto;
# border-radius: 8px;transition: transform .2s ease-out;
# "></div>
# <div style="
# background: linear-gradient(to left, hotpink, hsla(240, 100%, 50%, .05), transparent);
# "></div>
# <div style=" color : red;
# display :inline ">
# </div>
# <div style="
# color: green;
# display: inline
# ">
# </div>
# <div attribute-1 attribute-2 attribute-3 attribute-4 attribute-5 attribute-6 attribute-7
# style="css-prop-1: css-value;css-prop-2: css-value;css-prop-3: css-value;css-prop-4: css-value;"
# attribute-1 attribute-2 attribute-3 attribute-4 attribute-5 attribute-6 attribute-7 >
# </div>
# <div style="{{ ...styles }}"
# ></div>
# <div style="color: red; {{ otherStyles }}"
# ></div>
# """
# ).strip()
# html_out = (
# """
# <div style="color: #fff"></div>
# <div style=""></div>
# <div style></div>
# <div
# style="
# all: initial;
# display: block;
# contain: content;
# text-align: center;
# background: linear-gradient(
# to left,
# hotpink,
# #fff00f,
# #ccc,
# hsla(240, 100%, 50%, 0.05),
# transparent
# );
# background: linear-gradient(to left, hsla(240, 100%, 50%, 0.05), red);
# max-width: 500px;
# margin: 0 auto;
# border-radius: 8px;
# transition: transform 0.2s ease-out;
# "
# ></div>
# <div
# style="
# background: linear-gradient(
# to left,
# hotpink,
# hsla(240, 100%, 50%, 0.05),
# transparent
# );
# "
# ></div>
# <div style="color: red; display: inline"></div>
# <div
# style="
# color: green;
# display: inline;
# "
# ></div>
# <div
# attribute-1
# attribute-2
# attribute-3
# attribute-4
# attribute-5
# attribute-6
# attribute-7
# style="
# css-prop-1: css-value;
# css-prop-2: css-value;
# css-prop-3: css-value;
# css-prop-4: css-value;
# "
# attribute-1
# attribute-2
# attribute-3
# attribute-4
# attribute-5
# attribute-6
# attribute-7
# ></div>
# <div style="{{ ...styles }}"></div>
# <div style="color: red; {{ otherStyles }}"></div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out
# def test_without_quotes(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <p title=Title>String</p>
# """
# ).strip()
# html_out = (
# """
# <p title="Title">String</p>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)
# assert output.text == html_out