Skip to content

Commit fc659e0

Browse files
committed
f
1 parent 29c8210 commit fc659e0

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

pkg/addons/registry/migrate/job.go

+8
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,14 @@ func isJobRetrying(ctx context.Context, cli client.Client) (bool, error) {
196196
if err != nil {
197197
return false, fmt.Errorf("get job: %w", err)
198198
}
199+
if job.Status.Succeeded >= 1 {
200+
// job is successful
201+
return false, nil
202+
}
203+
if job.Status.Failed == 0 {
204+
// job has not yet tried
205+
return false, nil
206+
}
199207
exceedsBackoffLimit := job.Status.Failed > *job.Spec.BackoffLimit
200208
return !exceedsBackoffLimit, nil
201209
}

pkg/addons/registry/migrate/job_test.go

+30
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ package migrate
22

33
import (
44
"bytes"
5+
"context"
56
"log/slog"
67
"testing"
8+
9+
"sigs.k8s.io/controller-runtime/pkg/client"
710
)
811

912
func Test_isProgressLogLine(t *testing.T) {
@@ -39,3 +42,30 @@ func Test_getProgressFromLogLine(t *testing.T) {
3942
}
4043
buf.Reset()
4144
}
45+
46+
func Test_isJobRetrying(t *testing.T) {
47+
type args struct {
48+
ctx context.Context
49+
cli client.Client
50+
}
51+
tests := []struct {
52+
name string
53+
args args
54+
want bool
55+
wantErr bool
56+
}{
57+
// TODO: Add test cases.
58+
}
59+
for _, tt := range tests {
60+
t.Run(tt.name, func(t *testing.T) {
61+
got, err := isJobRetrying(tt.args.ctx, tt.args.cli)
62+
if (err != nil) != tt.wantErr {
63+
t.Errorf("isJobRetrying() error = %v, wantErr %v", err, tt.wantErr)
64+
return
65+
}
66+
if got != tt.want {
67+
t.Errorf("isJobRetrying() = %v, want %v", got, tt.want)
68+
}
69+
})
70+
}
71+
}

0 commit comments

Comments
 (0)