Sha256: bc995a6df6b1d10aa8e6f9ba30258e895f5479c3c9b347c3fa0b564038f45a1b

Contents?: true

Size: 1.36 KB

Versions: 68

Compression:

Stored size: 1.36 KB

Contents

require File.dirname(__FILE__) + '/spec_helper'

describe YARD::Server::StaticCaching do
  include StaticCaching

  describe '#check_static_cache' do
    def adapter; @adapter ||= mock_adapter end
    def request; @request ||= OpenStruct.new end

    it "should return nil if document root is not set" do
      adapter.document_root = nil
      check_static_cache.should be_nil
    end

    it "should read a file from document root if path matches file on system" do
      request.path = '/hello/world.html'
      File.should_receive(:file?).with('/public/hello/world.html').and_return(true)
      File.should_receive(:open).with('/public/hello/world.html', anything).and_return('body')
      s, h, b = *check_static_cache
      s.should == 200
      b.should == ["body"]
    end

    it "should read a file if path matches file on system + .html" do
      request.path = '/hello/world'
      File.should_receive(:file?).with('/public/hello/world.html').and_return(true)
      File.should_receive(:open).with('/public/hello/world.html', anything).and_return('body')
      s, h, b = *check_static_cache
      s.should == 200
      b.should == ["body"]
    end

    it "should return nil if no matching file is found" do
      request.path = '/hello/foo'
      File.should_receive(:file?).with('/public/hello/foo.html').and_return(false)
      check_static_cache.should == nil
    end
  end
end

Version data entries

68 entries across 52 versions & 7 rubygems

Version Path
challah-0.9.1.beta vendor/bundle/gems/yard-0.8.3/spec/server/static_caching_spec.rb
challah-0.9.0 vendor/bundle/gems/yard-0.8.3/spec/server/static_caching_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/yard-0.8.3/spec/server/static_caching_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/yard-0.8.3/spec/server/static_caching_spec.rb
challah-0.8.3 vendor/bundle/gems/yard-0.8.3/spec/server/static_caching_spec.rb
challah-0.8.3 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
yard-0.8.3 spec/server/static_caching_spec.rb
challah-0.8.1 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-rolls-0.1.0 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.8.0.pre vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.7.1 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.7.0 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.7.0.pre2 vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.7.0.pre vendor/bundle/gems/yard-0.8.2.1/spec/server/static_caching_spec.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.1/spec/server/static_caching_spec.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.2/spec/server/static_caching_spec.rb