github.com/google/cloudprober@v0.11.3/rds/kubernetes/kubernetes_test.go (about) 1 // Copyright 2019 The Cloudprober Authors. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package kubernetes 16 17 import ( 18 "testing" 19 ) 20 21 func TestHTTPRequest(t *testing.T) { 22 c := &client{ 23 bearer: "testtoken", 24 apiHost: "testHost", 25 } 26 27 testURL := "/test-url" 28 29 req, err := c.httpRequest(testURL) 30 31 if err != nil { 32 t.Errorf("Unexpected error while creating HTTP request from URL (%s): %v", testURL, err) 33 } 34 35 if req.Host != c.apiHost { 36 t.Errorf("Got host = %s, expected = %s", req.Host, c.apiHost) 37 } 38 39 if req.URL.Path != testURL { 40 t.Errorf("Got URL path = %s, expected = %s", req.URL.Path, testURL) 41 } 42 43 if req.Header.Get("Authorization") != c.bearer { 44 t.Errorf("Got Authorization Header = %s, expected = %s", req.Header.Get("Authorization"), c.bearer) 45 } 46 }