Sha256: 5f31874183551bb2d2cc9732e076768bcd1aca6cddff906587b99e21c7712aaa
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
require 'test_plugin_helper' require 'integration_test_helper' module ForemanSalt class SaltKeysTest < ActionDispatch::IntegrationTest setup do @proxy = FactoryBot.create :smart_proxy, :with_salt_feature ProxyAPI::Salt.any_instance.stubs(:autosign_list).returns( ['foo.example.com'] ) end test 'smart proxy page has autosign link' do assert_row_button(smart_proxies_path, @proxy.name, 'Salt Autosign', dropdown: true) end test 'smart proxy details has autosign link' do visit smart_proxy_path(@proxy) assert page.has_link? 'Salt Autosign' click_link 'Salt Autosign' assert page.has_title?("Autosign entries for #{@proxy.hostname}"), 'Page title does not appear' end test 'index page' do visit smart_proxy_salt_autosign_index_path(smart_proxy_id: @proxy.id) assert find_link('Keys').visible?, 'Keys is not visible' assert has_title?("Autosign entries for #{@proxy.hostname}"), 'Page title does not appear' end test 'has list of autosign' do visit smart_proxy_salt_autosign_index_path(smart_proxy_id: @proxy.id) assert has_content?('foo.example.com'), 'Missing autosign entry on index page' end end end
Version data entries
7 entries across 7 versions & 1 rubygems