47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes 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.
|
|
*/
|
|
|
|
package initialresources
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"golang.org/x/oauth2"
|
|
"golang.org/x/oauth2/google"
|
|
gcm "google.golang.org/api/cloudmonitoring/v2beta2"
|
|
api "k8s.io/kubernetes/pkg/apis/core"
|
|
)
|
|
|
|
func TestGCMReturnsErrorIfClientCannotConnect(t *testing.T) {
|
|
client := oauth2.NewClient(oauth2.NoContext, google.ComputeTokenSource(""))
|
|
service, _ := gcm.New(client)
|
|
source := &gcmSource{
|
|
project: "",
|
|
gcmService: service,
|
|
}
|
|
|
|
_, _, err := source.GetUsagePercentile(api.ResourceCPU, 90, "", "", true, time.Now(), time.Now())
|
|
if err == nil {
|
|
t.Errorf("Expected error from GCM")
|
|
}
|
|
|
|
_, _, err = source.GetUsagePercentile(api.ResourceMemory, 90, "", "foo", false, time.Now(), time.Now())
|
|
if err == nil {
|
|
t.Errorf("Expected error from GCM")
|
|
}
|
|
}
|