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

service_spec.rb « serverless « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3400be5b48e768ed96e46685fb8f2226be5f77e5 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Serverless::Service do
  let(:cluster) { create(:cluster) }
  let(:environment) { create(:environment) }
  let(:attributes) do
    {
      'apiVersion' => 'serving.knative.dev/v1alpha1',
      'kind' => 'Service',
      'metadata' => {
        'creationTimestamp' => '2019-10-22T21:19:13Z',
        'name' => 'kubetest',
        'namespace' => 'project1-1-environment1'
      },
      'spec' => {
        'runLatest' => {
          'configuration' => {
            'build' => {
              'template' => {
                'name' => 'some-image'
              }
            }
          }
        }
      },
      'environment_scope' => '*',
      'cluster' => cluster,
      'environment' => environment,
      'podcount' => 0
    }
  end

  it 'exposes methods extracting data from the attributes hash' do
    service = Gitlab::Serverless::Service.new(attributes)

    expect(service.name).to eq('kubetest')
    expect(service.namespace).to eq('project1-1-environment1')
    expect(service.environment_scope).to eq('*')
    expect(service.podcount).to eq(0)
    expect(service.created_at).to eq(DateTime.parse('2019-10-22T21:19:13Z'))
    expect(service.image).to eq('some-image')
    expect(service.cluster).to eq(cluster)
    expect(service.environment).to eq(environment)
  end

  it 'returns nil for missing attributes' do
    service = Gitlab::Serverless::Service.new({})

    [:name, :namespace, :environment_scope, :cluster, :podcount, :created_at, :image, :description, :url, :environment].each do |method|
      expect(service.send(method)).to be_nil
    end
  end

  describe '#description' do
    it 'extracts the description in knative 7 format if available' do
      attributes = {
        'spec' => {
          'template' => {
            'metadata' => {
              'annotations' => {
                'Description' => 'some description'
              }
            }
          }
        }
      }
      service = Gitlab::Serverless::Service.new(attributes)

      expect(service.description).to eq('some description')
    end

    it 'extracts the description in knative 5/6 format if 7 is not available' do
      attributes = {
        'spec' => {
          'runLatest' => {
            'configuration' => {
              'revisionTemplate' => {
                'metadata' => {
                  'annotations' => {
                    'Description' => 'some description'
                  }
                }
              }
            }
          }
        }
      }
      service = Gitlab::Serverless::Service.new(attributes)

      expect(service.description).to eq('some description')
    end
  end

  describe '#url' do
    let(:serverless_domain) { instance_double(::Serverless::Domain, uri: URI('https://proxy.example.com')) }

    it 'returns proxy URL if cluster has serverless domain' do
      # cluster = create(:cluster)
      knative = create(:clusters_applications_knative, :installed, cluster: cluster)
      create(:serverless_domain_cluster, clusters_applications_knative_id: knative.id)
      service = Gitlab::Serverless::Service.new(attributes.merge('cluster' => cluster))

      expect(::Serverless::Domain).to receive(:new).with(
        function_name: service.name,
        serverless_domain_cluster: service.cluster.serverless_domain,
        environment: service.environment
      ).and_return(serverless_domain)

      expect(service.url).to eq('https://proxy.example.com')
    end

    it 'returns the URL from the knative 6/7 format' do
      attributes = {
        'status' => {
          'url' => 'https://example.com'
        }
      }
      service = Gitlab::Serverless::Service.new(attributes)

      expect(service.url).to eq('https://example.com')
    end

    it 'returns the URL from the knative 5 format' do
      attributes = {
        'status' => {
          'domain' => 'example.com'
        }
      }
      service = Gitlab::Serverless::Service.new(attributes)

      expect(service.url).to eq('http://example.com')
    end
  end
end