diff --git a/features/dynamic_pages.feature b/features/dynamic_pages.feature index c55e963a..d20c9a26 100644 --- a/features/dynamic_pages.feature +++ b/features/dynamic_pages.feature @@ -6,30 +6,90 @@ Feature: Dynamic Pages When I cd to "build" Then the following files should exist: | fake.html | + | fake2.html | + | fake3.html | + | fake4.html | | fake/one.html | | fake/two.html | + | fake2/one.html | + | fake2/two.html | + | fake3/one.html | + | fake3/two.html | + | fake4/one.html | + | fake4/two.html | | target_ignore.html | + | target_ignore2.html | + | target_ignore3.html | + | target_ignore4.html | Then the following files should not exist: | should_be_ignored.html | | should_be_ignored2.html | | should_be_ignored3.html | + | should_be_ignored4.html | + | should_be_ignored5.html | + | should_be_ignored6.html | + | should_be_ignored7.html | + | should_be_ignored8.html | Scenario: Preview basic proxy Given the Server is running at "test-app" When I go to "/fake.html" Then I should see "I am real" + When I go to "/fake2.html" + Then I should see "I am real" + When I go to "/fake3.html" + Then I should see "I am real" + When I go to "/fake4.html" + Then I should see "I am real" Scenario: Preview proxy with variable one Given the Server is running at "test-app" When I go to "/fake/one.html" Then I should see "I am real: one" + When I go to "/fake2/one.html" + Then I should see "I am real: one" + When I go to "/fake3/one.html" + Then I should see "I am real: one" + When I go to "/fake4/one.html" + Then I should see "I am real: one" Scenario: Preview proxy with variable two Given the Server is running at "test-app" When I go to "/fake/two.html" Then I should see "I am real: two" + When I go to "/fake2/two.html" + Then I should see "I am real: two" + When I go to "/fake3/two.html" + Then I should see "I am real: two" + When I go to "/fake4/two.html" + Then I should see "I am real: two" + + Scenario: Target ignore + Given the Server is running at "test-app" + When I go to "/target_ignore.html" + Then I should see "Ignore me! 3" + When I go to "/target_ignore2.html" + Then I should see "Ignore me! 6" + When I go to "/target_ignore3.html" + Then I should see "Ignore me! 7" + When I go to "/target_ignore4.html" + Then I should see "Ignore me! 8" Scenario: Preview ignored paths - Given the Server is running at "test-app" + Given the Server is running at "test-app" When I go to "/should_be_ignored.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored2.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored3.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored4.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored5.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored6.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored7.html" + Then I should see "File Not Found" + When I go to "/should_be_ignored8.html" Then I should see "File Not Found" \ No newline at end of file diff --git a/fixtures/test-app/config.rb b/fixtures/test-app/config.rb index 72043ec3..2e360eb3 100644 --- a/fixtures/test-app/config.rb +++ b/fixtures/test-app/config.rb @@ -3,15 +3,34 @@ require "liquid" require "coffee-filter" page "/fake.html", :proxy => "/real.html", :layout => false +page "fake2.html", :proxy => "/real.html", :layout => false +page "fake3.html", :proxy => "real.html", :layout => false +page "/fake4.html", :proxy => "real.html", :layout => false ignore "/should_be_ignored.html" page "/should_be_ignored2.html", :ignore => true page "/target_ignore.html", :proxy => "/should_be_ignored3.html", :ignore => true + +ignore "should_be_ignored4.html" +page "should_be_ignored5.html", :ignore => true +page "target_ignore2.html", :proxy => "/should_be_ignored6.html", :ignore => true +page "target_ignore3.html", :proxy => "should_be_ignored7.html", :ignore => true +page "/target_ignore4.html", :proxy => "should_be_ignored8.html", :ignore => true + %w(one two).each do |num| page "/fake/#{num}.html", :proxy => "/real/index.html" do @num = num end + page "fake2/#{num}.html", :proxy => "/real/index.html" do + @num = num + end + page "fake3/#{num}.html", :proxy => "real/index.html" do + @num = num + end + page "/fake4/#{num}.html", :proxy => "real/index.html" do + @num = num + end end with_layout :content_for do diff --git a/fixtures/test-app/source/should_be_ignored4.html b/fixtures/test-app/source/should_be_ignored4.html new file mode 100644 index 00000000..b11a0596 --- /dev/null +++ b/fixtures/test-app/source/should_be_ignored4.html @@ -0,0 +1 @@ +