Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_service_account.rb « test « kubeclient « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87a08a215bd3a50615039c8052c4cc8bc67d4a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require_relative 'test_helper'

# ServiceAccount tests
class TestServiceAccount < MiniTest::Test
  def test_get_from_json_v1
    stub_core_api_list
    stub_request(:get, %r{/serviceaccounts})
      .to_return(body: open_test_file('service_account.json'),
                 status: 200)

    client = Kubeclient::Client.new('http://localhost:8080/api/', 'v1')
    account = client.get_service_account('default')

    assert_instance_of(Kubeclient::Resource, account)
    assert_equal('default', account.metadata.name)
    assert_equal('default-token-6s23q', account.secrets[0].name)
    assert_equal('default-dockercfg-62tf3', account.secrets[1].name)

    assert_requested(:get,
                     'http://localhost:8080/api/v1/serviceaccounts/default',
                     times: 1)
    assert_requested(:get,
                     'http://localhost:8080/api/v1',
                     times: 1)
  end
end