2012-04-16 16:30:22 -04:00
|
|
|
Feature: i18n Builder
|
|
|
|
In order to preview localized html
|
|
|
|
|
|
|
|
Scenario: Running localize with the default config
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
2013-03-20 16:46:20 -04:00
|
|
|
| morning.html |
|
2013-05-30 13:20:57 -04:00
|
|
|
| one.html |
|
2012-04-16 16:30:22 -04:00
|
|
|
| es/index.html |
|
|
|
|
| es/hola.html |
|
2013-03-20 16:46:20 -04:00
|
|
|
| es/manana.html |
|
2013-05-30 13:20:57 -04:00
|
|
|
| es/una.html |
|
2013-03-20 16:46:20 -04:00
|
|
|
| CNAME |
|
|
|
|
| password.txt |
|
2012-04-16 16:30:22 -04:00
|
|
|
Then the following files should not exist:
|
|
|
|
| en/index.html |
|
2013-06-24 16:56:32 -04:00
|
|
|
| defaults_en/index.html |
|
|
|
|
| en_defaults/index.html |
|
2012-04-16 16:30:22 -04:00
|
|
|
And the file "index.html" should contain "Howdy"
|
|
|
|
And the file "hello.html" should contain "Hello World"
|
2013-03-20 16:46:20 -04:00
|
|
|
And the file "morning.html" should contain "Good morning"
|
2013-05-30 13:20:57 -04:00
|
|
|
And the file "one.html" should contain "Only one"
|
2012-04-16 16:30:22 -04:00
|
|
|
And the file "es/index.html" should contain "Como Esta?"
|
|
|
|
And the file "es/hola.html" should contain "Hola World"
|
2013-03-20 16:46:20 -04:00
|
|
|
And the file "es/manana.html" should contain "Buenos días"
|
2013-05-30 13:20:57 -04:00
|
|
|
And the file "es/una.html" should contain "Solamente una"
|
2013-03-20 16:46:20 -04:00
|
|
|
And the file "CNAME" should contain "test.github.com"
|
|
|
|
And the file "password.txt" should contain "hunter2"
|
2012-04-16 16:30:22 -04:00
|
|
|
|
|
|
|
Scenario: Running localize with the alt path config
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n, :path => "/lang_:locale/"
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
| lang_es/index.html |
|
|
|
|
| lang_es/hola.html |
|
|
|
|
Then the following files should not exist:
|
|
|
|
| lang_en/index.html |
|
|
|
|
And the file "index.html" should contain "Howdy"
|
|
|
|
And the file "hello.html" should contain "Hello World"
|
|
|
|
And the file "lang_es/index.html" should contain "Como Esta?"
|
|
|
|
And the file "lang_es/hola.html" should contain "Hola World"
|
|
|
|
|
|
|
|
Scenario: Running localize with the alt root config
|
|
|
|
Given a fixture app "i18n-alt-root-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n, :templates_dir => "lang_data"
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-alt-root-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
| es/index.html |
|
|
|
|
| es/hola.html |
|
|
|
|
Then the following files should not exist:
|
|
|
|
| en/index.html |
|
|
|
|
And the file "index.html" should contain "Howdy"
|
|
|
|
And the file "hello.html" should contain "Hello World"
|
|
|
|
And the file "es/index.html" should contain "Como Esta?"
|
|
|
|
And the file "es/hola.html" should contain "Hola World"
|
|
|
|
|
|
|
|
Scenario: Running localize with the lang map config
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n, :lang_map => { :en => :english, :es => :spanish }
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
| spanish/index.html |
|
|
|
|
| spanish/hola.html |
|
|
|
|
Then the following files should not exist:
|
|
|
|
| english/index.html |
|
|
|
|
And the file "index.html" should contain "Howdy"
|
|
|
|
And the file "hello.html" should contain "Hello World"
|
|
|
|
And the file "spanish/index.html" should contain "Como Esta?"
|
|
|
|
And the file "spanish/hola.html" should contain "Hola World"
|
|
|
|
|
|
|
|
Scenario: Running localize with the no mount config
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n, :mount_at_root => false
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| en/index.html |
|
|
|
|
| en/hello.html |
|
|
|
|
| es/index.html |
|
|
|
|
| es/hola.html |
|
|
|
|
Then the following files should not exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
And the file "en/index.html" should contain "Howdy"
|
|
|
|
And the file "en/hello.html" should contain "Hello World"
|
|
|
|
And the file "es/index.html" should contain "Como Esta?"
|
|
|
|
And the file "es/hola.html" should contain "Hola World"
|
|
|
|
|
|
|
|
Scenario: Running localize with the subset config
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
2012-05-24 19:51:36 -04:00
|
|
|
activate :i18n, :langs => [:en]
|
2012-04-16 16:30:22 -04:00
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
Then the following files should not exist:
|
|
|
|
| en/index.html |
|
|
|
|
| es/index.html |
|
|
|
|
| es/hola.html |
|
|
|
|
And the file "index.html" should contain "Howdy"
|
2012-09-02 13:04:43 -04:00
|
|
|
And the file "hello.html" should contain "Hello World"
|
|
|
|
|
|
|
|
Scenario: Running localize with relative_assets
|
|
|
|
Given a fixture app "i18n-test-app"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
activate :i18n
|
|
|
|
activate :relative_assets
|
|
|
|
"""
|
|
|
|
Given a successfully built app at "i18n-test-app"
|
|
|
|
When I cd to "build"
|
|
|
|
Then the following files should exist:
|
|
|
|
| index.html |
|
|
|
|
| hello.html |
|
|
|
|
| es/index.html |
|
|
|
|
| es/hola.html |
|
|
|
|
And the file "index.html" should contain '"stylesheets/site.css"'
|
|
|
|
And the file "hello.html" should contain '"stylesheets/site.css"'
|
|
|
|
And the file "es/index.html" should contain '"../stylesheets/site.css"'
|
2013-05-30 13:20:57 -04:00
|
|
|
And the file "es/hola.html" should contain '"../stylesheets/site.css"'
|