mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
test page and ignore helpers with various leading slash combinations. closes #211
This commit is contained in:
parent
7e86ed058f
commit
b9c5c89e40
7 changed files with 85 additions and 1 deletions
|
@ -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"
|
|
@ -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
|
||||
|
|
1
fixtures/test-app/source/should_be_ignored4.html
Normal file
1
fixtures/test-app/source/should_be_ignored4.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Ignore me! 4</h1>
|
1
fixtures/test-app/source/should_be_ignored5.html
Normal file
1
fixtures/test-app/source/should_be_ignored5.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Ignore me! 5</h1>
|
1
fixtures/test-app/source/should_be_ignored6.html
Normal file
1
fixtures/test-app/source/should_be_ignored6.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Ignore me! 6</h1>
|
1
fixtures/test-app/source/should_be_ignored7.html
Normal file
1
fixtures/test-app/source/should_be_ignored7.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Ignore me! 7</h1>
|
1
fixtures/test-app/source/should_be_ignored8.html
Normal file
1
fixtures/test-app/source/should_be_ignored8.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Ignore me! 8</h1>
|
Loading…
Reference in a new issue