Project

General

Profile

Download (1.03 KB) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

class ConfigReportIntegrationTest < ActionDispatch::IntegrationTest
def setup
@report = FactoryGirl.create(:report, :old_report)
end

test "index page" do
visit config_reports_path
assert find_button('Search').visible?, "Search button is not visible"
end

test "reports for host" do
visit config_reports_path
click_link(@report.host.fqdn)
assert_equal "host = #{@report.host.fqdn}", find_field('search').value
end

test "show specific report" do
visit config_report_path(@report)
assert page.has_selector?('h1', :text => @report.host.fqdn), "hostname was expected in the <h1> tag, but was not found"
end

test "delete a report redirects to reports index" do
visit config_report_path(@report)
first(:link, "Delete").click
assert_current_path config_reports_path
end

test "adrift report displays warning" do
report = FactoryGirl.create(:report, :adrift)
visit config_report_path(report)
assert has_content?('Host times seems to be adrift!')
end
end
(10-10/36)