Sha256: ccec8a10b347030ecd19cc3c64143d548c85e8a35776dc22626cebcfa053622e

Contents?: true

Size: 1.3 KB

Versions: 15

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-

require 'webgen/test_helper'
require 'webgen/tag/link'

class TestTagLink < Minitest::Test

  include Webgen::TestHelper

  def test_call
    setup_context
    setup_default_nodes(@website.tree)
    @context[:chain] = [@website.tree['/file.en.html']]
    @context[:config] = {'tag.link.attr' => {}}

    # invalid paths
    @context[:config]['tag.link.path'] = ':/asdf=-)'
    assert_raises(Webgen::RenderError) { Webgen::Tag::Link.call('link', '', @context) }

    # basic node resolving
    assert_tag_result('<a class="help" href="dir2/index.en.html" hreflang="en">index en</a>', 'dir2/index.html')
    @context[:config]['tag.link.attr'] = {'title' => 'other'}
    assert_tag_result('<a class="help" href="dir2/index.en.html" hreflang="en" title="other">index en</a>', 'dir2/index.html')
    @context[:config]['tag.link.attr'] = {}
    assert_tag_result('', 'german.html')

    # non-existing fragments
    assert_tag_result('', 'file.html#hallo')

    # directory paths
    assert_tag_result('<a href="dir/">dir</a>', 'dir')
    assert_tag_result('<a class="help" href="dir2/index.en.html" hreflang="en">routed</a>', 'dir2')
  end

  def assert_tag_result(result, path)
    @context[:config]['tag.link.path'] = path
    assert_equal(result, Webgen::Tag::Link.call('link', '', @context))
  end

end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
webgen-1.7.3 test/webgen/tag/test_link.rb
webgen-1.7.2 test/webgen/tag/test_link.rb
webgen-1.7.1 test/webgen/tag/test_link.rb
webgen-1.7.0 test/webgen/tag/test_link.rb
webgen-1.6.0 test/webgen/tag/test_link.rb
webgen-1.5.2 test/webgen/tag/test_link.rb
webgen-1.5.1 test/webgen/tag/test_link.rb
webgen-1.5.0 test/webgen/tag/test_link.rb
webgen-1.4.1 test/webgen/tag/test_link.rb
webgen-1.4.0 test/webgen/tag/test_link.rb
webgen-1.3.0 test/webgen/tag/test_link.rb
webgen-1.2.1 test/webgen/tag/test_link.rb
webgen-1.2.0 test/webgen/tag/test_link.rb
webgen-1.1.0 test/webgen/tag/test_link.rb
webgen-1.0.0 test/webgen/tag/test_link.rb