1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
7 class ApiClientTest < ActiveSupport::TestCase
8 include CurrentApiClient
10 [true, false].each do |token_lifetime_enabled|
11 test "configured workbench is trusted when token lifetime is#{token_lifetime_enabled ? '': ' not'} enabled" do
12 Rails.configuration.Login.TokenLifetime = token_lifetime_enabled ? 8.hours : 0
13 Rails.configuration.Login.IssueTrustedTokens = !token_lifetime_enabled;
14 Rails.configuration.Services.Workbench1.ExternalURL = URI("http://wb1.example.com")
15 Rails.configuration.Services.Workbench2.ExternalURL = URI("https://wb2.example.com:443")
16 Rails.configuration.Login.TrustedClients = ActiveSupport::OrderedOptions.new
17 Rails.configuration.Login.TrustedClients[:"https://wb3.example.com"] = ActiveSupport::OrderedOptions.new
20 [["http://wb0.example.com", false],
21 ["http://wb1.example.com", true],
22 ["http://wb2.example.com", false],
23 ["https://wb2.example.com", true],
24 ["https://wb2.example.com/", true],
25 ["https://wb3.example.com/", true],
26 ["https://wb4.example.com/", false],
27 ].each do |pfx, result|
28 a = ApiClient.create(url_prefix: pfx, is_trusted: false)
29 if token_lifetime_enabled
30 assert_equal false, a.is_trusted, "API client with url prefix '#{pfx}' shouldn't be trusted"
32 assert_equal result, a.is_trusted
36 a = ApiClient.create(url_prefix: "http://example.com", is_trusted: true)