# -*- 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 = '

Test

Test2

' 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