2012-06-17 02:48:41 +02:00
|
|
|
Feature: link_to helper
|
2012-05-25 01:14:17 +02:00
|
|
|
|
2012-06-17 02:48:41 +02:00
|
|
|
Scenario: link_to produces relative links
|
2012-05-25 01:31:21 +02:00
|
|
|
Given a fixture app "indexable-app"
|
|
|
|
And an empty file named "config.rb"
|
|
|
|
And a file named "source/link_to.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
|
|
|
|
relative: <%= link_to "Relative", "needs_index.html", :relative => true %>
|
|
|
|
"""
|
|
|
|
And a file named "source/link_to/sub.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
|
|
|
|
relative: <%= link_to "Relative", "../needs_index.html", :relative => true %>
|
|
|
|
"""
|
|
|
|
And the Server is running at "indexable-app"
|
|
|
|
When I go to "/link_to.html"
|
|
|
|
Then I should see 'absolute: <a href="needs_index.html">Needs Index</a>'
|
|
|
|
Then I should see 'relative: <a href="needs_index.html">Relative</a>'
|
|
|
|
When I go to "/link_to/sub.html"
|
|
|
|
Then I should see 'absolute: <a href="../needs_index.html">Needs Index</a>'
|
|
|
|
Then I should see 'relative: <a href="../needs_index.html">Relative</a>'
|
|
|
|
|
2012-06-17 02:48:41 +02:00
|
|
|
Scenario: link_to produces relative links when :relative_links is set to true
|
2012-05-25 01:31:21 +02:00
|
|
|
Given a fixture app "indexable-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
set :relative_links, true
|
|
|
|
"""
|
|
|
|
And a file named "source/link_to.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html" %>
|
|
|
|
relative: <%= link_to "Relative", "needs_index.html", :relative => false %>
|
|
|
|
unknown: <%= link_to "Unknown", "foo.html" %>
|
|
|
|
"""
|
|
|
|
And a file named "source/link_to/sub.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html" %>
|
|
|
|
relative: <%= link_to "Relative", "../needs_index.html" %>
|
|
|
|
"""
|
|
|
|
And the Server is running at "indexable-app"
|
|
|
|
When I go to "/link_to.html"
|
|
|
|
Then I should see 'absolute: <a href="needs_index.html">Needs Index</a>'
|
|
|
|
Then I should see 'relative: <a href="/needs_index.html">Relative</a>'
|
|
|
|
Then I should see 'unknown: <a href="foo.html">Unknown</a>'
|
|
|
|
When I go to "/link_to/sub.html"
|
|
|
|
Then I should see 'absolute: <a href="../needs_index.html">Needs Index</a>'
|
|
|
|
Then I should see 'relative: <a href="../needs_index.html">Relative</a>'
|
|
|
|
|
2012-06-17 02:48:41 +02:00
|
|
|
Scenario: link_to knows about directory indexes
|
2012-05-25 01:14:17 +02:00
|
|
|
Given a fixture app "indexable-app"
|
|
|
|
And a file named "source/link_to.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
|
|
|
|
relative: <%= link_to "Relative", "needs_index.html", :relative => true %>
|
|
|
|
"""
|
|
|
|
And a file named "source/link_to/sub.html.erb" with:
|
|
|
|
"""
|
|
|
|
absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
|
|
|
|
relative: <%= link_to "Relative", "../needs_index.html", :relative => true %>
|
|
|
|
"""
|
|
|
|
And the Server is running at "indexable-app"
|
|
|
|
When I go to "/link_to/"
|
|
|
|
Then I should see 'absolute: <a href="needs_index/">Needs Index</a>'
|
|
|
|
Then I should see 'relative: <a href="needs_index/">Relative</a>'
|
|
|
|
When I go to "/link_to/sub/"
|
|
|
|
Then I should see 'absolute: <a href="../needs_index/">Needs Index</a>'
|
2012-06-17 02:48:41 +02:00
|
|
|
Then I should see 'relative: <a href="../needs_index/">Relative</a>'
|
|
|
|
|
|
|
|
Scenario: link_to can take a Resource
|
|
|
|
Given a fixture app "indexable-app"
|
|
|
|
And a file named "source/link_to.html.erb" with:
|
|
|
|
"""
|
|
|
|
<%= link_to "Needs Index", sitemap.find_resource_by_path("/needs_index.html") %>
|
|
|
|
"""
|
|
|
|
And the Server is running at "indexable-app"
|
|
|
|
When I go to "/link_to/"
|
|
|
|
Then I should see '<a href="/needs_index/">Needs Index</a>'
|
2012-06-24 02:19:24 +02:00
|
|
|
|
|
|
|
Scenario: Setting http_prefix
|
|
|
|
Given a fixture app "indexable-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
set :http_prefix, "/foo"
|
|
|
|
"""
|
|
|
|
And a file named "source/link_to.html.erb" with:
|
|
|
|
"""
|
|
|
|
<%= link_to "Needs Index", "/needs_index.html" %>
|
|
|
|
"""
|
|
|
|
And the Server is running at "indexable-app"
|
|
|
|
When I go to "/link_to.html"
|
|
|
|
Then I should see '<a href="/foo/needs_index.html">Needs Index</a>'
|
|
|
|
|