Commit 625cea68 authored by Alishan Ladhani's avatar Alishan Ladhani

Add tests for serializing URL when using Knative 0.5

parent c6494154
......@@ -107,17 +107,8 @@ describe Projects::Serverless::FunctionsController do
end
end
context 'valid data', :use_clean_rails_memory_store_caching do
before do
stub_kubeclient_service_pods
stub_reactive_cache(knative_services_finder,
{
services: kube_knative_services_body(namespace: namespace.namespace, name: cluster.project.name)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
},
*knative_services_finder.cache_args)
end
context 'with valid data', :use_clean_rails_memory_store_caching do
shared_examples 'GET #show with valid data' do
it 'has a valid function name' do
get :show, params: params({ format: :json, environment_id: "*", id: cluster.project.name })
expect(response).to have_gitlab_http_status(200)
......@@ -129,18 +120,26 @@ describe Projects::Serverless::FunctionsController do
)
end
end
end
describe 'GET #metrics' do
context 'invalid data' do
it 'has a bad function name' do
get :metrics, params: params({ format: :json, environment_id: "*", id: "foo" })
expect(response).to have_gitlab_http_status(204)
end
context 'on Knative 0.5' do
before do
stub_kubeclient_service_pods
stub_reactive_cache(knative_services_finder,
{
services: kube_knative_services_body(
legacy_knative: true,
namespace: namespace.namespace,
name: cluster.project.name
)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
},
*knative_services_finder.cache_args)
end
include_examples 'GET #show with valid data'
end
describe 'GET #index with data', :use_clean_rails_memory_store_caching do
context 'on Knative 0.6 or 0.7' do
before do
stub_kubeclient_service_pods
stub_reactive_cache(knative_services_finder,
......@@ -151,13 +150,28 @@ describe Projects::Serverless::FunctionsController do
*knative_services_finder.cache_args)
end
include_examples 'GET #show with valid data'
end
end
end
describe 'GET #metrics' do
context 'invalid data' do
it 'has a bad function name' do
get :metrics, params: params({ format: :json, environment_id: "*", id: "foo" })
expect(response).to have_gitlab_http_status(204)
end
end
end
describe 'GET #index with data', :use_clean_rails_memory_store_caching do
shared_examples 'GET #index with data' do
it 'has data' do
get :index, params: params({ format: :json })
expect(response).to have_gitlab_http_status(200)
expect(json_response).to match(
{
expect(json_response).to match({
"knative_installed" => "checking",
"functions" => [
a_hash_including(
......@@ -165,8 +179,7 @@ describe Projects::Serverless::FunctionsController do
"url" => "http://#{project.name}.#{namespace.namespace}.example.com"
)
]
}
)
})
end
it 'has data in html' do
......@@ -175,4 +188,37 @@ describe Projects::Serverless::FunctionsController do
expect(response).to have_gitlab_http_status(200)
end
end
context 'on Knative 0.5' do
before do
stub_kubeclient_service_pods
stub_reactive_cache(knative_services_finder,
{
services: kube_knative_services_body(
legacy_knative: true,
namespace: namespace.namespace,
name: cluster.project.name
)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
},
*knative_services_finder.cache_args)
end
include_examples 'GET #index with data'
end
context 'on Knative 0.6 or 0.7' do
before do
stub_kubeclient_service_pods
stub_reactive_cache(knative_services_finder,
{
services: kube_knative_services_body(namespace: namespace.namespace, name: cluster.project.name)["items"],
pods: kube_knative_pods_body(cluster.project.name, namespace.namespace)["items"]
},
*knative_services_finder.cache_args)
end
include_examples 'GET #index with data'
end
end
end
......@@ -319,10 +319,10 @@ module KubernetesHelpers
}
end
def kube_knative_services_body(**options)
def kube_knative_services_body(legacy_knative: false, **options)
{
"kind" => "List",
"items" => [kube_service(options)]
"items" => [legacy_knative ? knative_05_service(options) : kube_service(options)]
}
end
......@@ -421,6 +421,27 @@ module KubernetesHelpers
}
end
def knative_05_service(name: "kubetest", namespace: "default", domain: "example.com")
{
"metadata" => {
"creationTimestamp" => "2018-11-21T06:16:33Z",
"name" => name,
"namespace" => namespace,
"selfLink" => "/apis/serving.knative.dev/v1alpha1/namespaces/#{namespace}/services/#{name}"
},
"spec" => {
"generation" => 2
},
"status" => {
"domain" => "#{name}.#{namespace}.#{domain}",
"domainInternal" => "#{name}.#{namespace}.svc.cluster.local",
"latestCreatedRevisionName" => "#{name}-00002",
"latestReadyRevisionName" => "#{name}-00002",
"observedGeneration" => 2
}
}
end
def kube_service_full(name: "kubetest", namespace: "kube-ns", domain: "example.com")
{
"metadata" => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment