Sha256: a9ca9cc4dadc6e21d398a8c9722f0b064bd88e4b5d6fbf820b81cac36506c739
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 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::ContentProcessor::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::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::Block.new('other', '', {}) obj.call(context) assert(!root.tree['/#test']) assert_equal(2, root.tree.node_access[:alcn].length) end end
Version data entries
3 entries across 3 versions & 3 rubygems