Sha256: 5f6e9262c03956c27b9a5cb888064dd3a63b7e8bce0bfc4d2a5788f433f8e63a
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
# -*- encoding: utf-8 -*- require 'fileutils' require 'webgen/test_helper' require 'webgen/bundle_loader' class TestBundleLoader < MiniTest::Unit::TestCase include Webgen::TestHelper def setup setup_website @extdir = File.join(@website.directory, 'ext') FileUtils.mkdir_p(File.join(@extdir, 'my_ext')) FileUtils.mkdir_p(File.join(@extdir, 'webgen')) @webgen_file = File.join(@extdir, 'webgen', 'init.rb') FileUtils.touch(@webgen_file) @ext_file = File.join(@extdir, 'my_ext', 'init.rb') FileUtils.touch(@ext_file) @ext_info_file = File.join(@extdir, 'my_ext', 'info.yaml') FileUtils.touch(@ext_info_file) @loader = Webgen::BundleLoader.new(@website, @extdir) end def teardown FileUtils.rm_rf(@website.directory) end def test_load @loader.load('webgen') @loader.load('my_ext') @loader.load('my_ext') assert_equal([File.expand_path(@webgen_file), File.expand_path(@ext_file)], @loader.instance_variable_get(:@loaded)) assert_equal({'webgen' => nil, 'my_ext' => @ext_info_file}, @website.ext.bundles) end def test_dsl File.open(File.join(@extdir, 'init.rb'), 'w+') do |f| f.puts("load('my_ext'); require_relative('webgen/init.rb')") end File.open(@ext_file, 'w+') do |f| f.puts("mount_passive('data', '/test', '*.hallo')") end @website.ext.source = OpenStruct.new @website.ext.source.passive_sources = [['/', :file, 'other']] @loader.load('init.rb') assert($LOADED_FEATURES.include?(@webgen_file)) assert_equal([['/test', :file_system, File.expand_path(File.dirname(@ext_file) + '/data'), '*.hallo'], ['/', :file, 'other']], @website.ext.source.passive_sources) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
webgen-1.0.0.beta3 | test/webgen/test_bundle_loader.rb |
webgen-1.0.0.beta2 | test/webgen/test_bundle_loader.rb |
webgen-1.0.0.beta1 | test/webgen/test_bundle_loader.rb |