added simplecov and a new test
+ simplecov is a test coverage tool to show what code is covered and where holes are + added newest test to validate that the redirect url works as expectedpull/12/head
parent
b3d5c70c8b
commit
81b12b5d6f
|
|
@ -33,3 +33,9 @@ Feature: Homepage
|
||||||
And I click the "Submit" button
|
And I click the "Submit" button
|
||||||
Then I should be on "/create" page
|
Then I should be on "/create" page
|
||||||
And I should see the message "Link exists"
|
And I should see the message "Link exists"
|
||||||
|
|
||||||
|
@db-test
|
||||||
|
Scenario: Accessing the URL based on the shortcode
|
||||||
|
Given A link already exists with the url "https://google.com" and code "aaaaaa"
|
||||||
|
When I visit the "/aaaaaa" location
|
||||||
|
Then I should be redirected to "https://google.com"
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,10 @@ Given('A link already exists with the url {string}') do |string|
|
||||||
@links.insert(url: string, code: "aaaaaa")
|
@links.insert(url: string, code: "aaaaaa")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Given('A link already exists with the url {string} and code {string}') do |url, code|
|
||||||
|
@links.insert(url: url, code: code)
|
||||||
|
end
|
||||||
|
|
||||||
# WHEN
|
# WHEN
|
||||||
|
|
||||||
When('I click the {string} button') do |string|
|
When('I click the {string} button') do |string|
|
||||||
|
|
@ -23,6 +27,10 @@ When('I type {string} in the {string} field') do |text, field|
|
||||||
fill_in field, with: text
|
fill_in field, with: text
|
||||||
end
|
end
|
||||||
|
|
||||||
|
When('I visit the {string} location') do |string|
|
||||||
|
visit string
|
||||||
|
end
|
||||||
|
|
||||||
# THEN
|
# THEN
|
||||||
|
|
||||||
Then('I should see text {string}') do |string|
|
Then('I should see text {string}') do |string|
|
||||||
|
|
@ -45,6 +53,11 @@ Then('I should see the message {string}') do |message|
|
||||||
page.should have_selector '#message', text: message
|
page.should have_selector '#message', text: message
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Then('I should be redirected to {string}') do |string|
|
||||||
|
actual = URI.parse(current_url).to_s
|
||||||
|
location = actual.index(string)
|
||||||
|
location.should equal(0)
|
||||||
|
end
|
||||||
# AFTER
|
# AFTER
|
||||||
|
|
||||||
After('@db-test') do
|
After('@db-test') do
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
require 'simplecov'
|
||||||
|
SimpleCov.start
|
||||||
|
|
||||||
require_relative '../../.env'
|
require_relative '../../.env'
|
||||||
ENV["DB_NAME"] = "test_#{ENV["DB_NAME"]}"
|
ENV["DB_NAME"] = "test_#{ENV["DB_NAME"]}"
|
||||||
require_relative '../../app'
|
require_relative '../../app'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue