debian-mirror-gitlab/spec/features/projects/serverless/functions_spec.rb

84 lines
2.6 KiB
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
require 'spec_helper'
describe 'Functions', :js do
2019-03-02 22:35:43 +05:30
include KubernetesHelpers
2019-09-04 21:01:54 +05:30
include ReactiveCachingHelpers
2019-03-02 22:35:43 +05:30
2019-02-15 15:39:39 +05:30
let(:project) { create(:project) }
let(:user) { create(:user) }
before do
project.add_maintainer(user)
gitlab_sign_in(user)
end
2019-09-04 21:01:54 +05:30
shared_examples "it's missing knative installation" do
2019-02-15 15:39:39 +05:30
before do
visit project_serverless_functions_path(project)
end
2019-09-04 21:01:54 +05:30
it 'sees an empty state require Knative installation' do
2019-02-15 15:39:39 +05:30
expect(page).to have_link('Install Knative')
expect(page).to have_selector('.empty-state')
end
end
2019-09-04 21:01:54 +05:30
context 'when user does not have a cluster and visits the serverless page' do
it_behaves_like "it's missing knative installation"
end
2019-02-15 15:39:39 +05:30
context 'when the user does have a cluster and visits the serverless page' do
let(:cluster) { create(:cluster, :project, :provided_by_gcp) }
2019-09-04 21:01:54 +05:30
it_behaves_like "it's missing knative installation"
2019-02-15 15:39:39 +05:30
end
context 'when the user has a cluster and knative installed and visits the serverless page' do
2019-03-02 22:35:43 +05:30
let(:cluster) { create(:cluster, :project, :provided_by_gcp) }
let(:service) { cluster.platform_kubernetes }
2019-09-04 21:01:54 +05:30
let(:project) { cluster.project }
let(:knative_services_finder) { project.clusters.first.knative_services_finder(project) }
let(:namespace) do
create(:cluster_kubernetes_namespace,
cluster: cluster,
cluster_project: cluster.cluster_project,
project: cluster.cluster_project.project)
end
2019-02-15 15:39:39 +05:30
before do
2019-09-04 21:01:54 +05:30
allow_any_instance_of(Clusters::Cluster)
.to receive(:knative_services_finder)
.and_return(knative_services_finder)
synchronous_reactive_cache(knative_services_finder)
stub_kubeclient_knative_services(stub_get_services_options)
stub_kubeclient_service_pods(nil, namespace: namespace.namespace)
2019-02-15 15:39:39 +05:30
visit project_serverless_functions_path(project)
end
2019-09-04 21:01:54 +05:30
context 'when there are no functions' do
let(:stub_get_services_options) do
{
namespace: namespace.namespace,
response: kube_response({ "kind" => "ServiceList", "items" => [] })
}
end
it 'sees an empty listing of serverless functions' do
expect(page).to have_selector('.empty-state')
expect(page).not_to have_selector('.content-list')
end
end
context 'when there are functions' do
let(:stub_get_services_options) { { namespace: namespace.namespace } }
it 'does not see an empty listing of serverless functions' do
expect(page).not_to have_selector('.empty-state')
expect(page).to have_selector('.content-list')
end
2019-02-15 15:39:39 +05:30
end
end
end