Sha256: b8cb5a5a4ab6784cadb014e0a305812f28e8ce36ca8ef29e27d4f8dc4e3bfe11

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

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

require 'test/unit'
require 'test/helper'
require 'webgen/page'
require 'webgen/tree'
require 'webgen/contentprocessor'

class TestContentProcessorFragments < Test::Unit::TestCase

  include Test::WebsiteHelper

  def test_process
    Webgen::SourceHandler::Main.new
    @website.blackboard.del_service(:source_paths)
    @website.blackboard.add_service(:source_paths) { Hash.new(path_with_meta_info('/')) }

    obj = Webgen::ContentProcessor::Fragments.new
    root = Webgen::Node.new(Webgen::Tree.new.dummy_root, '/', '/')
    root.node_info[:src] = '/'
    processors = { 'fragments' => obj }

    context = Webgen::Context.new(:chain => [root], :processors => processors)
    context.content = '<h1 id="test">Test</h1><h1>Test2</h1>'
    obj.call(context)
    assert(root.tree['/#test'])
    assert_equal(3, root.tree.node_access[:alcn].length)
    root.tree.delete_node('/#test')

    context[:block] = Webgen::Page::Block.new('content', '', {})
    obj.call(context)
    assert(root.tree['/#test'])
    assert_equal(3, root.tree.node_access[:alcn].length)
    root.tree.delete_node('/#test')

    context[:block] = Webgen::Page::Block.new('other', '', {})
    obj.call(context)
    assert(!root.tree['/#test'])
    assert_equal(2, root.tree.node_access[:alcn].length)
  end

end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
gettalong-webgen-0.5.8.20090507 test/test_contentprocessor_fragments.rb
webgen-0.5.8 test/test_contentprocessor_fragments.rb