2016-02-22 00:13:08 +00:00
|
|
|
/*
|
2016-09-08 11:02:39 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-02-22 00:13:08 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package healthchecks
|
|
|
|
|
|
|
|
import (
|
|
|
|
compute "google.golang.org/api/compute/v1"
|
2017-04-18 19:44:17 +00:00
|
|
|
"google.golang.org/api/googleapi"
|
2016-02-22 00:13:08 +00:00
|
|
|
)
|
|
|
|
|
2017-04-18 19:44:17 +00:00
|
|
|
func fakeNotFoundErr() *googleapi.Error {
|
|
|
|
return &googleapi.Error{Code: 404}
|
2016-05-29 23:05:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 19:44:17 +00:00
|
|
|
// NewFakeHealthCheckProvider returns a new FakeHealthChecks.
|
|
|
|
func NewFakeHealthCheckProvider() *FakeHealthCheckProvider {
|
|
|
|
return &FakeHealthCheckProvider{
|
|
|
|
http: make(map[string]compute.HttpHealthCheck),
|
|
|
|
generic: make(map[string]compute.HealthCheck),
|
2016-05-29 23:05:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 19:44:17 +00:00
|
|
|
// FakeHealthCheckProvider fakes out health checks.
|
|
|
|
type FakeHealthCheckProvider struct {
|
|
|
|
http map[string]compute.HttpHealthCheck
|
|
|
|
generic map[string]compute.HealthCheck
|
2016-02-22 00:13:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHttpHealthCheck fakes out http health check creation.
|
2017-04-18 19:44:17 +00:00
|
|
|
func (f *FakeHealthCheckProvider) CreateHttpHealthCheck(hc *compute.HttpHealthCheck) error {
|
|
|
|
v := *hc
|
|
|
|
v.SelfLink = "https://fake.google.com/compute/httpHealthChecks/" + hc.Name
|
|
|
|
f.http[hc.Name] = v
|
2016-02-22 00:13:08 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHttpHealthCheck fakes out getting a http health check from the cloud.
|
2017-04-18 19:44:17 +00:00
|
|
|
func (f *FakeHealthCheckProvider) GetHttpHealthCheck(name string) (*compute.HttpHealthCheck, error) {
|
|
|
|
if hc, found := f.http[name]; found {
|
|
|
|
return &hc, nil
|
2016-02-22 00:13:08 +00:00
|
|
|
}
|
2017-04-18 19:44:17 +00:00
|
|
|
|
|
|
|
return nil, fakeNotFoundErr()
|
2016-02-22 00:13:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteHttpHealthCheck fakes out deleting a http health check.
|
2017-04-18 19:44:17 +00:00
|
|
|
func (f *FakeHealthCheckProvider) DeleteHttpHealthCheck(name string) error {
|
|
|
|
if _, exists := f.http[name]; !exists {
|
|
|
|
return fakeNotFoundErr()
|
2016-02-22 00:13:08 +00:00
|
|
|
}
|
2017-04-18 19:44:17 +00:00
|
|
|
|
|
|
|
delete(f.http, name)
|
2016-02-22 00:13:08 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-05-29 05:02:39 +00:00
|
|
|
|
2016-05-29 23:05:38 +00:00
|
|
|
// UpdateHttpHealthCheck sends the given health check as an update.
|
2017-04-18 19:44:17 +00:00
|
|
|
func (f *FakeHealthCheckProvider) UpdateHttpHealthCheck(hc *compute.HttpHealthCheck) error {
|
|
|
|
if _, exists := f.http[hc.Name]; !exists {
|
|
|
|
return fakeNotFoundErr()
|
|
|
|
}
|
|
|
|
|
|
|
|
f.http[hc.Name] = *hc
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHealthCheck fakes out http health check creation.
|
|
|
|
func (f *FakeHealthCheckProvider) CreateHealthCheck(hc *compute.HealthCheck) error {
|
|
|
|
v := *hc
|
|
|
|
v.SelfLink = "https://fake.google.com/compute/healthChecks/" + hc.Name
|
|
|
|
f.generic[hc.Name] = v
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHealthCheck fakes out getting a http health check from the cloud.
|
|
|
|
func (f *FakeHealthCheckProvider) GetHealthCheck(name string) (*compute.HealthCheck, error) {
|
|
|
|
if hc, found := f.generic[name]; found {
|
|
|
|
return &hc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fakeNotFoundErr()
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteHealthCheck fakes out deleting a http health check.
|
|
|
|
func (f *FakeHealthCheckProvider) DeleteHealthCheck(name string) error {
|
|
|
|
if _, exists := f.generic[name]; !exists {
|
|
|
|
return fakeNotFoundErr()
|
2016-05-29 23:05:38 +00:00
|
|
|
}
|
2017-04-18 19:44:17 +00:00
|
|
|
|
|
|
|
delete(f.generic, name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateHealthCheck sends the given health check as an update.
|
|
|
|
func (f *FakeHealthCheckProvider) UpdateHealthCheck(hc *compute.HealthCheck) error {
|
|
|
|
if _, exists := f.generic[hc.Name]; !exists {
|
|
|
|
return fakeNotFoundErr()
|
2016-05-29 23:05:38 +00:00
|
|
|
}
|
2017-04-18 19:44:17 +00:00
|
|
|
|
|
|
|
f.generic[hc.Name] = *hc
|
2016-05-29 23:05:38 +00:00
|
|
|
return nil
|
|
|
|
}
|