debian-mirror-gitlab/spec/finders/projects/serverless/functions_finder_spec.rb

80 lines
2.5 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe Projects::Serverless::FunctionsFinder do
include KubernetesHelpers
include ReactiveCachingHelpers
let(:user) { create(:user) }
let(:cluster) { create(:cluster, :project, :provided_by_gcp) }
let(:service) { cluster.platform_kubernetes }
let(:project) { cluster.project}
let(:namespace) do
create(:cluster_kubernetes_namespace,
cluster: cluster,
cluster_project: cluster.cluster_project,
project: cluster.cluster_project.project)
end
before do
project.add_maintainer(user)
end
describe 'retrieve data from knative' do
it 'does not have knative installed' do
2019-05-30 16:15:17 +05:30
expect(described_class.new(project.clusters).execute).to be_empty
2019-02-15 15:39:39 +05:30
end
context 'has knative installed' do
let!(:knative) { create(:clusters_applications_knative, :installed, cluster: cluster) }
2019-05-30 16:15:17 +05:30
let(:finder) { described_class.new(project.clusters) }
2019-02-15 15:39:39 +05:30
it 'there are no functions' do
2019-03-02 22:35:43 +05:30
expect(finder.execute).to be_empty
2019-02-15 15:39:39 +05:30
end
it 'there are functions', :use_clean_rails_memory_store_caching do
2019-03-02 22:35:43 +05:30
stub_kubeclient_service_pods
stub_reactive_cache(knative,
{
services: kube_knative_services_body(namespace: namespace.namespace, name: cluster.project.name)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
})
2019-02-15 15:39:39 +05:30
2019-03-02 22:35:43 +05:30
expect(finder.execute).not_to be_empty
end
it 'has a function', :use_clean_rails_memory_store_caching do
stub_kubeclient_service_pods
stub_reactive_cache(knative,
{
services: kube_knative_services_body(namespace: namespace.namespace, name: cluster.project.name)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
})
result = finder.service(cluster.environment_scope, cluster.project.name)
expect(result).not_to be_empty
expect(result["metadata"]["name"]).to be_eql(cluster.project.name)
2019-02-15 15:39:39 +05:30
end
end
end
describe 'verify if knative is installed' do
context 'knative is not installed' do
it 'does not have knative installed' do
2019-05-30 16:15:17 +05:30
expect(described_class.new(project.clusters).installed?).to be false
2019-02-15 15:39:39 +05:30
end
end
context 'knative is installed' do
let!(:knative) { create(:clusters_applications_knative, :installed, cluster: cluster) }
it 'does have knative installed' do
2019-05-30 16:15:17 +05:30
expect(described_class.new(project.clusters).installed?).to be true
2019-02-15 15:39:39 +05:30
end
end
end
end