Project

General

Profile

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

class OrganizationIntegrationTest < ActionDispatch::IntegrationTest
def setup
FactoryGirl.create(:host)
end

test "index page" do
assert_index_page(organizations_path,"Organizations","New Organization")
end

# context - has nil hosts
test "index page has notice if nil hosts" do
Host.update_all(:organization_id => nil)
visit organizations_path
assert has_selector?("div.alert", :text => "with no organization assigned")
end

# context - does not nil hosts
test "index page does not show notice if all hosts" do
Host.update_all(:organization_id => Organization.first.id)
visit locations_path
assert has_no_selector?("div.alert", :text => "with no organization assigned")
end

# context - creating when all hosts are assigned
test "create new page when all hosts are assigned a organization" do
Host.update_all(:organization_id => Organization.first.id)
assert !has_selector?("div.alert", :text => "with no organization assigned")
assert_new_button(organizations_path,"New Organization",new_organization_path)
fill_in "organization_name", :with => "Finance"
assert_submit_button(organizations_path)
assert page.has_link? "Finance"
end

# content - click Assign All
test "create new page when some hosts are NOT assigned a organization - click Assign All" do
assert_new_button(organizations_path,"New Organization",new_organization_path)
fill_in "organization_name", :with => "Finance"
click_button "Submit"
assert_equal step2_organization_path(Organization.unscoped.order(:id).last), current_path, "redirect path #{step2_organization_path(Organization.unscoped.order(:id).last)} was expected but it was #{current_path}"
click_link "Assign All"
assert_equal organizations_path, current_path, "redirect path #{organizations_path} was expected but it was #{current_path}"
assert page.has_link? "Finance"
end

# content - click Manually Assign
test "create new page when some hosts are NOT assigned a organization - click Manually Assign" do
assert_new_button(organizations_path,"New Organization",new_organization_path)
fill_in "organization_name", :with => "Finance"
click_button "Submit"
assert_equal step2_organization_path(Organization.unscoped.order(:id).last), current_path, "redirect path #{step2_organization_path(Organization.unscoped.order(:id).last)} was expected but it was #{current_path}"
click_link "Manually Assign"
assert_equal assign_hosts_organization_path(Organization.unscoped.order(:id).last), current_path, "redirect path #{assign_hosts_organization_path(Organization.unscoped.order(:id).last)} was expected but it was #{current_path}"
assert_submit_button(organizations_path, "Assign to Organization")
assert page.has_link? "Finance"
end

# click Proceed to Edit
test "create new page when some hosts are NOT assigned a organization - click Proceed to Edit" do
assert_new_button(organizations_path,"New Organization",new_organization_path)
fill_in "organization_name", :with => "Finance"
click_button "Submit"
assert_equal step2_organization_path(Organization.unscoped.order(:id).last), current_path, "redirect path #{step2_organization_path(Organization.unscoped.order(:id).last)} was expected but it was #{current_path}"
click_link "Proceed to Edit"
assert_equal edit_organization_path(Organization.unscoped.order(:id).last), current_path, "redirect path #{edit_organization_path(Organization.unscoped.order(:id).last)} was expected but it was #{current_path}"
assert page.has_selector?('h1', :text => "Edit"), "Edit was expected in the <h1> tag, but was not found"
end

# PENDING
# test "mismatches report" do
# end
end
(20-20/36)