2024-04-13 09:28:45 -04:00
|
|
|
require "test_helper"
|
|
|
|
|
2024-04-18 07:56:51 -04:00
|
|
|
class Settings::HostingsControllerTest < ActionDispatch::IntegrationTest
|
2024-04-13 09:28:45 -04:00
|
|
|
setup do
|
|
|
|
ENV["SELF_HOSTING_ENABLED"] = "true"
|
|
|
|
sign_in users(:family_admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "cannot edit when self hosting is disabled" do
|
|
|
|
ENV["SELF_HOSTING_ENABLED"] = "false"
|
|
|
|
|
2024-04-18 07:56:51 -04:00
|
|
|
get settings_hosting_url
|
2024-04-13 09:28:45 -04:00
|
|
|
assert :not_found
|
|
|
|
|
2024-04-18 07:56:51 -04:00
|
|
|
patch settings_hosting_url, params: { setting: { render_deploy_hook: "https://example.com" } }
|
2024-04-13 09:28:45 -04:00
|
|
|
assert :not_found
|
|
|
|
end
|
|
|
|
test "should get edit when self hosting is enabled" do
|
2024-04-18 07:56:51 -04:00
|
|
|
get settings_hosting_url
|
2024-04-13 09:28:45 -04:00
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "can update settings when self hosting is enabled" do
|
|
|
|
NEW_RENDER_DEPLOY_HOOK = "https://api.render.com/deploy/srv-abc123"
|
|
|
|
assert_nil Setting.render_deploy_hook
|
|
|
|
|
2024-04-18 07:56:51 -04:00
|
|
|
patch settings_hosting_url, params: { setting: { render_deploy_hook: NEW_RENDER_DEPLOY_HOOK } }
|
2024-04-13 09:28:45 -04:00
|
|
|
|
|
|
|
assert_equal NEW_RENDER_DEPLOY_HOOK, Setting.render_deploy_hook
|
|
|
|
end
|
2024-04-25 14:55:39 -04:00
|
|
|
|
|
|
|
test "cannot set auto upgrades mode without a deploy hook" do
|
|
|
|
patch settings_hosting_url, params: { setting: { upgrades_mode: "auto" } }
|
|
|
|
assert_response :unprocessable_entity
|
|
|
|
end
|
|
|
|
|
|
|
|
test "can choose auto upgrades mode with a deploy hook" do
|
|
|
|
NEW_RENDER_DEPLOY_HOOK = "https://api.render.com/deploy/srv-abc123"
|
|
|
|
assert_nil Setting.render_deploy_hook
|
|
|
|
|
|
|
|
patch settings_hosting_url, params: { setting: { render_deploy_hook: NEW_RENDER_DEPLOY_HOOK, upgrades_mode: "release" } }
|
|
|
|
|
|
|
|
assert_equal "auto", Setting.upgrades_mode
|
|
|
|
assert_equal "release", Setting.upgrades_target
|
|
|
|
assert_equal NEW_RENDER_DEPLOY_HOOK, Setting.render_deploy_hook
|
|
|
|
end
|
2024-04-13 09:28:45 -04:00
|
|
|
end
|