# encoding: UTF-8 require 'spec_helper' require_relative "../lib/rack/polymer.rb" describe "The class methods" do let(:env) { {} } subject { Rack::Polymer.cdn env, opts } context "Given an argument" do context "of nil (the default)" do let(:opts) { {} } it { should == "<script src='#{Rack::Polymer::CDN::CLOUDFLARE}'></script>\n#{Rack::Polymer::FALLBACK}" } end context "of :organisation => :cloudflare" do let(:opts) { {organisation: :cloudflare} } it { should == "<script src='#{Rack::Polymer::CDN::CLOUDFLARE}'></script>\n#{Rack::Polymer::FALLBACK}" } end context "of :cdn => false" do let(:opts) { { cdn: false } } it { should == Rack::Polymer::FALLBACK } end end end describe "Inserting the CDN" do include_context "All routes" context "Check the examples run at all" do before do get "/" end it_should_behave_like "Any route" end context "Unspecified CDN" do before do get "/unspecified-cdn" end it_should_behave_like "Any route" subject { last_response.body } let(:expected) { Rack::Polymer::CDN::CLOUDFLARE } it { should include expected } end context "Cloudflare CDN" do before do get "/cloudflare-cdn" end it_should_behave_like "Any route" subject { last_response.body } let(:expected) { Rack::Polymer::CDN::CLOUDFLARE } it { should include expected } end context "Specified CDN via the use statement" do let(:app){ App2 } before do get "/" end it_should_behave_like "Any route" subject { last_response.body } let(:expected) { Rack::Polymer::CDN::CLOUDFLARE } it { should include expected } end end require 'timecop' require 'time' describe "Serving the fallback polymer" do include_context "All routes" before do get "/js/polymer-#{Rack::Polymer::POLYMER_VERSION}.min.js" end it_should_behave_like "Any route" subject { last_response.body } let(:expected) { s = <<STR // Copyright (c) 2012 The Polymer Authors. STR s.strip } it { should start_with expected } context "Re requests" do before do at_start = Time.parse(Rack::Polymer::POLYMER_VERSION_DATE) + 60 * 60 * 24 * 180 Timecop.freeze at_start get "/js/polymer-#{Rack::Polymer::POLYMER_VERSION}.min.js" Timecop.travel Time.now + 86400 # add a day get "/js/polymer-#{Rack::Polymer::POLYMER_VERSION}.min.js", {}, {"HTTP_IF_MODIFIED_SINCE" => Rack::Utils.rfc2109(at_start) } end subject { last_response } its(:status) { should == 304 } end end