2024-04-13 09:28:45 -04:00
|
|
|
require "test_helper"
|
2025-03-17 11:54:53 -04:00
|
|
|
require "ostruct"
|
2024-04-13 09:28:45 -04:00
|
|
|
|
2024-04-18 07:56:51 -04:00
|
|
|
class Settings::HostingsControllerTest < ActionDispatch::IntegrationTest
|
2025-03-17 11:54:53 -04:00
|
|
|
include ProviderTestHelper
|
|
|
|
|
2024-04-13 09:28:45 -04:00
|
|
|
setup do
|
|
|
|
sign_in users(:family_admin)
|
2025-03-17 11:54:53 -04:00
|
|
|
|
|
|
|
@provider = mock
|
|
|
|
Providers.stubs(:synth).returns(@provider)
|
|
|
|
@usage_response = provider_success_response(
|
|
|
|
OpenStruct.new(
|
|
|
|
used: 10,
|
|
|
|
limit: 100,
|
|
|
|
utilization: 10,
|
|
|
|
plan: "free",
|
|
|
|
)
|
|
|
|
)
|
2024-04-13 09:28:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "cannot edit when self hosting is disabled" do
|
2024-10-02 12:07:56 -04:00
|
|
|
assert_raises(RuntimeError, "Settings not available on non-self-hosted instance") do
|
|
|
|
get settings_hosting_url
|
|
|
|
end
|
2024-04-13 09:28:45 -04:00
|
|
|
|
2024-10-02 12:07:56 -04:00
|
|
|
assert_raises(RuntimeError, "Settings not available on non-self-hosted instance") do
|
2025-03-19 12:36:16 -04:00
|
|
|
patch settings_hosting_url, params: { setting: { require_invite_for_signup: true } }
|
2024-10-02 12:07:56 -04:00
|
|
|
end
|
2024-04-13 09:28:45 -04:00
|
|
|
end
|
2024-05-02 13:18:18 -04:00
|
|
|
|
2024-04-13 09:28:45 -04:00
|
|
|
test "should get edit when self hosting is enabled" do
|
2025-03-17 11:54:53 -04:00
|
|
|
@provider.expects(:usage).returns(@usage_response)
|
|
|
|
|
2024-05-02 13:18:18 -04:00
|
|
|
with_self_hosting do
|
|
|
|
get settings_hosting_url
|
|
|
|
assert_response :success
|
|
|
|
end
|
2024-04-13 09:28:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "can update settings when self hosting is enabled" do
|
2024-05-02 13:18:18 -04:00
|
|
|
with_self_hosting do
|
2025-03-19 12:36:16 -04:00
|
|
|
assert_nil Setting.synth_api_key
|
2024-04-13 09:28:45 -04:00
|
|
|
|
2025-03-19 12:36:16 -04:00
|
|
|
patch settings_hosting_url, params: { setting: { synth_api_key: "1234567890" } }
|
2024-04-13 09:28:45 -04:00
|
|
|
|
2025-03-19 12:36:16 -04:00
|
|
|
assert_equal "1234567890", Setting.synth_api_key
|
2024-05-02 13:18:18 -04:00
|
|
|
end
|
2024-04-25 14:55:39 -04:00
|
|
|
end
|
2025-02-28 13:49:12 +01:00
|
|
|
|
|
|
|
test "can clear data cache when self hosting is enabled" do
|
|
|
|
account = accounts(:investment)
|
|
|
|
holding = account.holdings.first
|
|
|
|
exchange_rate = exchange_rates(:one)
|
|
|
|
security_price = holding.security.prices.first
|
|
|
|
account_balance = account.balances.create!(date: Date.current, balance: 1000, currency: "USD")
|
|
|
|
|
|
|
|
with_self_hosting do
|
|
|
|
perform_enqueued_jobs(only: DataCacheClearJob) do
|
|
|
|
delete clear_cache_settings_hosting_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to settings_hosting_url
|
|
|
|
assert_equal I18n.t("settings.hostings.clear_cache.cache_cleared"), flash[:notice]
|
|
|
|
|
|
|
|
assert_not ExchangeRate.exists?(exchange_rate.id)
|
|
|
|
assert_not Security::Price.exists?(security_price.id)
|
|
|
|
assert_not Account::Holding.exists?(holding.id)
|
|
|
|
assert_not Account::Balance.exists?(account_balance.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "can clear data only when admin" do
|
|
|
|
with_self_hosting do
|
|
|
|
sign_in users(:family_member)
|
|
|
|
|
|
|
|
assert_no_enqueued_jobs do
|
|
|
|
delete clear_cache_settings_hosting_url
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to settings_hosting_url
|
|
|
|
assert_equal I18n.t("settings.hostings.not_authorized"), flash[:alert]
|
|
|
|
end
|
|
|
|
end
|
2024-04-13 09:28:45 -04:00
|
|
|
end
|