7478: Fixes child CR default preemptable setting logic.
[arvados.git] / services / api / test / test_helper.rb
index d874bc4f1ffebd2777cdc9e7ec392e907eceb7d7..c834250cb6caa89c28ff25ad942978dd14399949 100644 (file)
@@ -127,6 +127,14 @@ class ActiveSupport::TestCase
                              "HTTP_AUTHORIZATION" => "OAuth2 #{t}")
   end
 
+  def salt_token(fixture:, remote:)
+    auth = api_client_authorizations(fixture)
+    uuid = auth.uuid
+    token = auth.api_token
+    hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote)
+    return "v2/#{uuid}/#{hmac}"
+  end
+
   def self.skip_slow_tests?
     !(ENV['RAILS_TEST_SHORT'] || '').empty?
   end