HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/redcarpet-3.5.1/test/html_toc_render_test.rb
# coding: UTF-8
require 'test_helper'

class HTMLTOCRenderTest < Redcarpet::TestCase
  def setup
    @renderer = Redcarpet::Render::HTML_TOC
    @markdown = <<-Markdown.strip_heredoc
      # A title
      ## A __nice__ subtitle
      ## Another one
      ### A sub-sub-title
      ### 見出し
    Markdown
  end

  def test_simple_toc_render
    output = render(@markdown)

    assert output.start_with?("<ul>")
    assert output.end_with?("</ul>")

    assert_equal 3, output.scan("<ul>").length
    assert_equal 5, output.scan("<li>").length
  end

  def test_granular_toc_render
    output = render(@markdown, with: { nesting_level: 2 })

    assert output.start_with?("<ul>")
    assert output.end_with?("</ul>")

    assert_equal 3, output.scan("<li>").length
    assert !output.include?("A sub-sub title")
  end

  def test_granular_toc_render_with_range
    output = render(@markdown, with: { nesting_level: 2..5 }).strip

    assert output.start_with?("<ul>")
    assert output.end_with?("</ul>")

    assert output.match("Another one")
    assert output.match("A sub-sub-title")
    assert output.match("見出し")

    refute output.match("A title")
    refute output.match("A really tiny title")
  end

  def test_toc_heading_id
    output = render(@markdown)

    assert_match /a-title/, output
    assert_match /a-nice-subtitle/, output
    assert_match /another-one/, output
    assert_match /a-sub-sub-title/, output
    # the part number length varies depending on architecture (32b or 64b)
    assert_match /part-(37870bf)?a194139f/, output
  end

  def test_toc_heading_with_hyphen_and_equal
    output = render("# Hello World\n\n-\n\n=")

    assert_equal 1, output.scan("<li>").length
    assert !output.include?('<a href=\"#\"></a>')
  end

  def test_anchor_generation_with_edge_cases
    # Imported from ActiveSupport::Inflector#parameterize's tests
    titles = {
      "Donald E. Knuth"                     => "donald-e-knuth",
      "Random text with *(bad)* characters" => "random-text-with-bad-characters",
      "!@#Surrounding bad characters!@#"    => "surrounding-bad-characters",
      "Squeeze   separators"                => "squeeze-separators",
      "Test with + sign"                    => "test-with-sign",
      "Test with a Namespaced::Class"       => "test-with-a-namespaced-class"
    }

    titles.each do |title, anchor|
      assert_match %("##{anchor}"), render("# #{title}")
    end
  end

  def test_inline_markup_is_not_escaped
    output = render(@markdown)

    assert_match "A <strong>nice</strong> subtitle", output
    assert_no_match %r{&lt;}, output
  end

  def test_inline_markup_escaping
    output = render(@markdown, with: [:escape_html])

    assert_match "&lt;strong&gt;", output
    assert_no_match %r{<strong>}, output
  end

  def test_ignoring_fenced_code_blocks_comments
    markdown = <<-Markdown.strip_heredoc
    # Hello world !

    ~~~ruby
    # This is a comment
    ~~~
    Markdown

    output = render(markdown)

    assert output.match("Hello world")
    refute output.match("This is a comment")
  end
end