mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
e85914fc0d
golangci-lint warns about this: for loop can be changed to use an integer range (Go 1.22+) (intrange) Signed-off-by: Niels de Vos <ndevos@ibm.com>
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
/*
|
|
Copyright 2023 ceph-csi 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 healthchecker
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestStatChecker(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
volumePath := t.TempDir()
|
|
sc := newStatChecker(volumePath)
|
|
checker, ok := sc.(*statChecker)
|
|
if !ok {
|
|
t.Errorf("failed to convert fc to *fileChecker: %v", sc)
|
|
}
|
|
checker.interval = time.Second * 5
|
|
|
|
// start the checker
|
|
checker.start()
|
|
|
|
// wait a second to get the go routine running
|
|
time.Sleep(time.Second)
|
|
if !checker.isRunning {
|
|
t.Error("checker failed to start")
|
|
}
|
|
|
|
for i := range 10 {
|
|
// check health, should be healthy
|
|
healthy, msg := checker.isHealthy()
|
|
if !healthy || msg != nil {
|
|
t.Errorf("volume is unhealthy after %d tries", i+1)
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
}
|
|
|
|
if !checker.isRunning {
|
|
t.Error("runChecker() exited already")
|
|
}
|
|
|
|
// stop the checker
|
|
checker.stop()
|
|
}
|