-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Timeout and unit tests for agent healthcheck (#2437)
* Timeout and unit tests for agent healthcheck * integ test cleanup wait duration and expand terminal reason log msg * add 'type' to DriverOpts
- Loading branch information
Showing
6 changed files
with
89 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"). You may | ||
// not use this file except in compliance with the License. A copy of the | ||
// License is located at | ||
// | ||
// http://aws.amazon.com/apache2.0/ | ||
// | ||
// or in the "license" file accompanying this file. This file 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 app | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"net/http/httptest" | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestHealthcheck_Sunny(t *testing.T) { | ||
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
fmt.Fprintln(w, "Hello, client") | ||
})) | ||
defer ts.Close() | ||
|
||
rc := runHealthcheck(ts.URL, time.Second*2) | ||
require.Equal(t, 0, rc) | ||
} | ||
|
||
func TestHealthcheck_InvalidURL2(t *testing.T) { | ||
// leading space in url is invalid | ||
rc := runHealthcheck(" http://foobar", time.Second*2) | ||
require.Equal(t, 1, rc) | ||
} | ||
|
||
func TestHealthcheck_Timeout(t *testing.T) { | ||
sema := make(chan int) | ||
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
<-sema | ||
})) | ||
defer ts.Close() | ||
|
||
rc := runHealthcheck(ts.URL, time.Second*2) | ||
require.Equal(t, 1, rc) | ||
close(sema) | ||
} | ||
|
||
// we actually pass the healthcheck in the event of a non-200 http status code. | ||
func TestHealthcheck_404(t *testing.T) { | ||
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
w.WriteHeader(http.StatusNotFound) | ||
w.Write([]byte("https://http.cat/404")) | ||
})) | ||
defer ts.Close() | ||
|
||
rc := runHealthcheck(ts.URL+"/foobar", time.Second*2) | ||
require.Equal(t, 0, rc) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters