From 6ef3644c0b540ee05c2c6c803e3ec382c5dd6d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20L=C3=B3pez=20Galeiras?= Date: Tue, 6 Oct 2020 11:40:15 +0200 Subject: [PATCH] test/ingress: test access to Headlamp --- test/ingress/headlamp/ingress_test.go | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 test/ingress/headlamp/ingress_test.go diff --git a/test/ingress/headlamp/ingress_test.go b/test/ingress/headlamp/ingress_test.go new file mode 100644 index 000000000..7dd78ac2d --- /dev/null +++ b/test/ingress/headlamp/ingress_test.go @@ -0,0 +1,28 @@ +// Copyright 2020 The Lokomotive Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// +build aws aws_edge +// +build e2e + +package headlamp_test + +import ( + "testing" + + testingress "github.com/kinvolk/lokomotive/test/ingress" +) + +func TestHeadlampIngress(t *testing.T) { + testingress.AccessIngress(t, "lokomotive-system", "headlamp", "") +}