81 lines
1.7 KiB
Go
81 lines
1.7 KiB
Go
/*
|
|
Copyright 2021 The Kubernetes Authors 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.
|
|
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 hook
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"k8s.io/git-sync/pkg/cmd"
|
|
"k8s.io/git-sync/pkg/logging"
|
|
)
|
|
|
|
func TestNotZeroReturnExechookDo(t *testing.T) {
|
|
t.Run("test not zero return code", func(t *testing.T) {
|
|
l := logging.New("", "")
|
|
ch := NewExechook(
|
|
cmd.NewRunner(l),
|
|
"false",
|
|
"/tmp",
|
|
[]string{},
|
|
time.Second,
|
|
l,
|
|
)
|
|
err := ch.Do(context.Background(), "")
|
|
if err == nil {
|
|
t.Fatalf("expected error but got none")
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestZeroReturnExechookDo(t *testing.T) {
|
|
t.Run("test zero return code", func(t *testing.T) {
|
|
l := logging.New("", "")
|
|
ch := NewExechook(
|
|
cmd.NewRunner(l),
|
|
"true",
|
|
"/tmp",
|
|
[]string{},
|
|
time.Second,
|
|
l,
|
|
)
|
|
err := ch.Do(context.Background(), "")
|
|
if err != nil {
|
|
t.Fatalf("expected nil but got err")
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestTimeoutExechookDo(t *testing.T) {
|
|
t.Run("test timeout", func(t *testing.T) {
|
|
l := logging.New("", "")
|
|
ch := NewExechook(
|
|
cmd.NewRunner(l),
|
|
"/bin/sh",
|
|
"/tmp",
|
|
[]string{"-c", "sleep 2"},
|
|
time.Second,
|
|
l,
|
|
)
|
|
err := ch.Do(context.Background(), "")
|
|
if err == nil {
|
|
t.Fatalf("expected err but got nil")
|
|
}
|
|
})
|
|
}
|