2015-05-16 16:21:12 -04:00
|
|
|
Feature: i18n Paths
|
2015-05-11 12:13:04 -04:00
|
|
|
|
2015-05-16 16:21:12 -04:00
|
|
|
Scenario: link_to is i18n aware
|
2015-05-11 12:13:04 -04:00
|
|
|
Given a fixture app "empty-app"
|
|
|
|
And a file named "data/pages.yml" with:
|
|
|
|
"""
|
2016-05-11 14:48:21 -04:00
|
|
|
- hello.html
|
2015-05-11 12:13:04 -04:00
|
|
|
"""
|
|
|
|
And a file named "locales/en.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
en:
|
|
|
|
msg: Hello
|
2015-06-01 14:51:27 -04:00
|
|
|
home: Home
|
2015-05-11 12:13:04 -04:00
|
|
|
"""
|
|
|
|
And a file named "locales/es.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
es:
|
|
|
|
paths:
|
|
|
|
hello: "hola"
|
|
|
|
msg: Hola
|
2015-06-01 14:51:27 -04:00
|
|
|
home: Casa
|
|
|
|
"""
|
|
|
|
And a file named "source/localizable/index.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page: <%= t(:hom) %>
|
2015-05-11 12:13:04 -04:00
|
|
|
"""
|
|
|
|
And a file named "source/localizable/hello.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page: <%= t(:msg) %>
|
2015-06-01 14:51:27 -04:00
|
|
|
|
|
|
|
<%= link_to "Current Home", "/index.html", class: 'current' %>
|
|
|
|
<%= link_to "Other Home", "/index.html", title: "Other Home", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
<% link_to "/index.html", class: 'current' do %><span>Home: Current Block</span><% end %>
|
|
|
|
<% link_to "/index.html", title: "Other Home", locale: ::I18n.locale == :en ? :es : :en do %><span>Home: Other Block</span><% end %>
|
|
|
|
|
2015-05-11 12:13:04 -04:00
|
|
|
<% data.pages.each_with_index do |p, i| %>
|
2015-05-16 15:50:39 -04:00
|
|
|
<%= link_to "Current #{p}", "/#{p}", class: 'current' %>
|
|
|
|
<%= link_to "Other #{p}", "/#{p}", title: "Other #{p}", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
<% link_to "/#{p}", class: 'current' do %><span>Current Block</span><% end %>
|
|
|
|
<% link_to "/#{p}", title: "Other #{p}", locale: ::I18n.locale == :en ? :es : :en do %><span>Other Block</span><% end %>
|
2015-05-11 12:13:04 -04:00
|
|
|
<% end %>
|
|
|
|
"""
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2015-06-01 16:49:14 -04:00
|
|
|
set :strip_index_file, false
|
2015-06-01 14:51:27 -04:00
|
|
|
activate :i18n, mount_at_root: :en
|
2015-05-11 12:13:04 -04:00
|
|
|
"""
|
|
|
|
Given the Server is running at "empty-app"
|
|
|
|
When I go to "/hello.html"
|
|
|
|
Then I should see "Page: Hello"
|
2016-05-11 14:48:21 -04:00
|
|
|
Then I should see '<a href="/index.html" class="current">Current Home</a>'
|
|
|
|
Then I should see '<a href="/es/index.html" title="Other Home">Other Home</a>'
|
|
|
|
Then I should see '<a href="/index.html" class="current"><span>Home: Current Block</span></a>'
|
|
|
|
Then I should see '<a href="/es/index.html" title="Other Home"><span>Home: Other Block</span></a>'
|
|
|
|
Then I should see '<a href="/hello.html" class="current">Current hello.html</a>'
|
|
|
|
Then I should see '<a href="/es/hola.html" title="Other hello.html">Other hello.html</a>'
|
|
|
|
Then I should see '<a href="/hello.html" class="current"><span>Current Block</span></a>'
|
|
|
|
Then I should see '<a href="/es/hola.html" title="Other hello.html"><span>Other Block</span></a>'
|
2015-05-11 12:13:04 -04:00
|
|
|
When I go to "/es/hola.html"
|
|
|
|
Then I should see "Page: Hola"
|
2016-05-11 14:48:21 -04:00
|
|
|
Then I should see '<a href="/es/index.html" class="current">Current Home</a>'
|
|
|
|
Then I should see '<a href="/index.html" title="Other Home">Other Home</a>'
|
|
|
|
Then I should see '<a href="/es/index.html" class="current"><span>Home: Current Block</span></a>'
|
|
|
|
Then I should see '<a href="/index.html" title="Other Home"><span>Home: Other Block</span></a>'
|
|
|
|
Then I should see '<a href="/es/hola.html" class="current">Current hello.html</a>'
|
|
|
|
Then I should see '<a href="/hello.html" title="Other hello.html">Other hello.html</a>'
|
|
|
|
Then I should see '<a href="/es/hola.html" class="current"><span>Current Block</span></a>'
|
|
|
|
Then I should see '<a href="/hello.html" title="Other hello.html"><span>Other Block</span></a>'
|
2015-05-16 16:21:12 -04:00
|
|
|
|
2015-06-01 16:49:14 -04:00
|
|
|
Scenario: link_to is i18n aware and supports relative_links
|
|
|
|
Given a fixture app "empty-app"
|
|
|
|
And a file named "locales/en.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
en:
|
|
|
|
msg: Hello
|
|
|
|
home: Home
|
|
|
|
"""
|
|
|
|
And a file named "locales/es.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
es:
|
|
|
|
paths:
|
|
|
|
hello: "hola"
|
|
|
|
msg: Hola
|
|
|
|
home: Casa
|
|
|
|
"""
|
2015-06-02 16:48:23 -04:00
|
|
|
And a file named "source/assets/css/main.css.scss" with:
|
|
|
|
"""
|
|
|
|
$color: red;
|
|
|
|
body { background: $color; }
|
|
|
|
"""
|
2015-06-01 16:49:14 -04:00
|
|
|
And a file named "source/localizable/index.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page: <%= t(:home) %>
|
2015-06-02 16:48:23 -04:00
|
|
|
<%= stylesheet_link_tag :main %>
|
2015-06-01 16:49:14 -04:00
|
|
|
"""
|
|
|
|
And a file named "source/localizable/hello.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page: <%= t(:msg) %>
|
|
|
|
|
|
|
|
<%= link_to "Current Home", "/index.html", class: 'current' %>
|
|
|
|
<%= link_to "Other Home", "/index.html", title: "Other Home", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
<% link_to "/index.html", class: 'current' do %><span>Home: Current Block</span><% end %>
|
|
|
|
<% link_to "/index.html", title: "Other Home", locale: ::I18n.locale == :en ? :es : :en do %><span>Home: Other Block</span><% end %>
|
|
|
|
|
|
|
|
<%= link_to "Current hello.html", "/hello.html", class: 'current' %>
|
|
|
|
<%= link_to "Other hello.html", "/hello.html", title: "Other hello.html", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
<% link_to "/hello.html", class: 'current' do %><span>Current Block</span><% end %>
|
|
|
|
<% link_to "/hello.html", title: "Other hello.html", locale: ::I18n.locale == :en ? :es : :en do %><span>Other Block</span><% end %>
|
|
|
|
"""
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2015-06-02 16:48:23 -04:00
|
|
|
set :css_dir, 'assets/css'
|
2015-06-01 16:49:14 -04:00
|
|
|
set :relative_links, true
|
|
|
|
set :strip_index_file, false
|
|
|
|
activate :i18n, mount_at_root: :en
|
2015-06-02 16:48:23 -04:00
|
|
|
activate :relative_assets
|
2015-06-01 16:49:14 -04:00
|
|
|
"""
|
|
|
|
Given the Server is running at "empty-app"
|
2015-06-02 16:48:23 -04:00
|
|
|
When I go to "/index.html"
|
|
|
|
Then I should see "assets/css/main.css"
|
2015-06-01 16:49:14 -04:00
|
|
|
When I go to "/hello.html"
|
|
|
|
Then I should see "Page: Hello"
|
2016-05-11 14:48:21 -04:00
|
|
|
Then I should see '<a href="index.html" class="current">Current Home</a>'
|
|
|
|
Then I should see '<a href="es/index.html" title="Other Home">Other Home</a>'
|
|
|
|
Then I should see '<a href="index.html" class="current"><span>Home: Current Block</span></a>'
|
|
|
|
Then I should see '<a href="es/index.html" title="Other Home"><span>Home: Other Block</span></a>'
|
|
|
|
Then I should see '<a href="hello.html" class="current">Current hello.html</a>'
|
|
|
|
Then I should see '<a href="es/hola.html" title="Other hello.html">Other hello.html</a>'
|
|
|
|
Then I should see '<a href="hello.html" class="current"><span>Current Block</span></a>'
|
|
|
|
Then I should see '<a href="es/hola.html" title="Other hello.html"><span>Other Block</span></a>'
|
2015-06-01 16:49:14 -04:00
|
|
|
When I go to "/es/hola.html"
|
|
|
|
Then I should see "Page: Hola"
|
2016-05-11 14:48:21 -04:00
|
|
|
Then I should see '<a href="index.html" class="current">Current Home</a>'
|
|
|
|
Then I should see '<a href="../index.html" title="Other Home">Other Home</a>'
|
|
|
|
Then I should see '<a href="index.html" class="current"><span>Home: Current Block</span></a>'
|
|
|
|
Then I should see '<a href="../index.html" title="Other Home"><span>Home: Other Block</span></a>'
|
|
|
|
Then I should see '<a href="hola.html" class="current">Current hello.html</a>'
|
|
|
|
Then I should see '<a href="../hello.html" title="Other hello.html">Other hello.html</a>'
|
|
|
|
Then I should see '<a href="hola.html" class="current"><span>Current Block</span></a>'
|
|
|
|
Then I should see '<a href="../hello.html" title="Other hello.html"><span>Other Block</span></a>'
|
2015-06-01 16:49:14 -04:00
|
|
|
|
2015-05-16 16:21:12 -04:00
|
|
|
Scenario: url_for is i18n aware
|
|
|
|
Given a fixture app "empty-app"
|
|
|
|
And a file named "data/pages.yml" with:
|
|
|
|
"""
|
2016-05-11 14:48:21 -04:00
|
|
|
- hello.html
|
2015-05-16 16:44:00 -04:00
|
|
|
- article.html
|
2015-05-16 16:21:12 -04:00
|
|
|
"""
|
|
|
|
And a file named "locales/en.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
en:
|
|
|
|
msg: Hello
|
|
|
|
"""
|
|
|
|
And a file named "locales/es.yml" with:
|
|
|
|
"""
|
|
|
|
---
|
|
|
|
es:
|
|
|
|
paths:
|
|
|
|
hello: "hola"
|
|
|
|
msg: Hola
|
|
|
|
"""
|
|
|
|
And a file named "source/localizable/hello.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page: <%= t(:msg) %>
|
|
|
|
<% data.pages.each_with_index do |p, i| %>
|
|
|
|
Current: <%= url_for "/#{p}" %>
|
|
|
|
Other: <%= url_for "/#{p}", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
<% end %>
|
|
|
|
"""
|
2015-05-16 16:44:00 -04:00
|
|
|
And a file named "source/localizable/article.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page Lang: Default
|
|
|
|
|
|
|
|
Current: <%= url_for "/article.html" %>
|
|
|
|
Other: <%= url_for "/article.html", locale: ::I18n.locale == :en ? :es : :en %>
|
|
|
|
"""
|
|
|
|
And a file named "source/localizable/article.es.html.erb" with:
|
|
|
|
"""
|
|
|
|
Page Lang: Spanish
|
|
|
|
|
|
|
|
Current: <%= url_for "/article.html" %>
|
|
|
|
Other: <%= url_for "/article.html", locale: :en %>
|
|
|
|
"""
|
2015-05-16 16:21:12 -04:00
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2015-06-01 14:51:27 -04:00
|
|
|
activate :i18n, mount_at_root: :en
|
2015-05-16 16:21:12 -04:00
|
|
|
"""
|
|
|
|
Given the Server is running at "empty-app"
|
|
|
|
When I go to "/hello.html"
|
|
|
|
Then I should see "Page: Hello"
|
|
|
|
Then I should see 'Current: /hello.html'
|
|
|
|
Then I should see 'Other: /es/hola.html'
|
|
|
|
When I go to "/es/hola.html"
|
|
|
|
Then I should see "Page: Hola"
|
|
|
|
Then I should see 'Current: /es/hola.html'
|
|
|
|
Then I should see 'Other: /hello.html'
|
2015-05-16 16:44:00 -04:00
|
|
|
When I go to "/article.html"
|
|
|
|
Then I should see "Page Lang: Default"
|
|
|
|
Then I should see 'Current: /article.html'
|
|
|
|
Then I should see 'Other: /es/article.html'
|
|
|
|
When I go to "/es/article.html"
|
|
|
|
Then I should see "Page Lang: Spanish"
|
|
|
|
Then I should see 'Current: /es/article.html'
|
|
|
|
Then I should see 'Other: /article.html'
|