"""Djlint tests for comments. Some tests may be from prettier.io's html test suite. Where applicable this notice may be needed: #### 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. run: pytest tests/test_html/test_comments.py --cov=src/djlint --cov-branch \ --cov-report xml:coverage.xml --cov-report term-missing pytest tests/test_html/test_comments.py::test_html_comments_tag """ # pylint: disable=C0116 from pathlib import Path from typing import TextIO from click.testing import CliRunner from src.djlint import main as djlint from tests.conftest import reformat, write_to_file def test_html_comments_tag(runner: CliRunner, tmp_file: TextIO) -> None: write_to_file( tmp_file.name, b"""
\n
""", ) runner.invoke(djlint, [tmp_file.name, "--reformat"]) assert ( Path(tmp_file.name).read_text(encoding="utf8") == """
""" ) def test_before_text(runner: CliRunner, tmp_file: TextIO) -> None: html_in = ( b""" 123 """ ).strip() html_out = """ 123 """ output = reformat(tmp_file, runner, html_in) assert output.text == html_out def test_bogus(runner: CliRunner, tmp_file: TextIO) -> None: html_in = ( b""" """ ).strip() html_out = """ """ output = reformat(tmp_file, runner, html_in) assert output.text == html_out # def test_conditional(runner: CliRunner, tmp_file: TextIO) -> None: # html_in = ( # b""" # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # """ # ).strip() # html_out = ( # """ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # """ # ).strip() # output = reformat(tmp_file, runner, html_in) # assert output.text == html_out # def test_for_debugging(runner: CliRunner, tmp_file: TextIO) -> None: # # opened https://github.com/Riverside-Healthcare/djLint/issues/247 # html_in = ( # b""" # # # # # # # # # """ # ).strip() # html_out = ( # """ # # # # # # # # """ # ) # output = reformat(tmp_file, runner, html_in) # assert output.text == html_out def test_hidden(runner: CliRunner, tmp_file: TextIO) -> None: html_in = ( b"""

This is a paragraph.

""" ).strip() html_out = """

This is a paragraph.

""" output = reformat(tmp_file, runner, html_in) assert output.text == html_out # def test_surrounding_empty_line(runner: CliRunner, tmp_file: TextIO) -> None: # html_in = ( # b""" # # ab # ab # ab # 123456 # 123456 # # # # """ # ).strip() # html_out = ( # """ # # ab # ab # ab # 123456 123456 # # # # """ # ).strip() # output = reformat(tmp_file, runner, html_in) # assert output.text == html_out