Sha256: c8b1abdc59d419f7d704375fdba43f10491d2e702f16a27c71abeb6bd4a60f26
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 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' assert has_content?('Displaying'), 'Pagination "Display ..." 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_salt-14.1.0 | test/integration/salt_autosign_test.rb |