Skip to content

Commit c7556f4

Browse files
committed
move deployer test mock to point of use
1 parent 5e37cde commit c7556f4

File tree

2 files changed

+43
-54
lines changed

2 files changed

+43
-54
lines changed

pkg/apps/util/test/support.go

-47
This file was deleted.

pkg/cmd/infra/deployer/deployer_test.go

+43-7
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ import (
66
"strconv"
77
"testing"
88

9+
"k8s.io/apimachinery/pkg/api/errors"
10+
"k8s.io/apimachinery/pkg/runtime/schema"
911
kapi "k8s.io/kubernetes/pkg/apis/core"
12+
"k8s.io/kubernetes/pkg/kubectl"
1013

1114
appsapi "github.com/openshift/origin/pkg/apps/apis/apps"
1215
appstest "github.com/openshift/origin/pkg/apps/apis/apps/test"
1316
"github.com/openshift/origin/pkg/apps/strategy"
1417
appsutil "github.com/openshift/origin/pkg/apps/util"
15-
cmdtest "github.com/openshift/origin/pkg/apps/util/test"
16-
17-
// install all APIs
18-
_ "github.com/openshift/origin/pkg/api/install"
19-
_ "k8s.io/kubernetes/pkg/apis/core/install"
2018
)
2119

2220
func TestDeployer_getDeploymentFail(t *testing.T) {
@@ -32,7 +30,7 @@ func TestDeployer_getDeploymentFail(t *testing.T) {
3230
t.Fatal("unexpected call")
3331
return nil, nil
3432
},
35-
scaler: &cmdtest.FakeScaler{},
33+
scaler: &FakeScaler{},
3634
}
3735

3836
err := deployer.Deploy("namespace", "name")
@@ -146,7 +144,7 @@ func TestDeployer_deployScenarios(t *testing.T) {
146144
var actualFrom, actualTo *kapi.ReplicationController
147145
var actualDesired int32
148146
to := findDeployment(s.toVersion)
149-
scaler := &cmdtest.FakeScaler{}
147+
scaler := &FakeScaler{}
150148

151149
deployer := &Deployer{
152150
out: &bytes.Buffer{},
@@ -228,3 +226,41 @@ type testStrategy struct {
228226
func (t *testStrategy) Deploy(from *kapi.ReplicationController, to *kapi.ReplicationController, desiredReplicas int) error {
229227
return t.deployFunc(from, to, desiredReplicas)
230228
}
229+
230+
type FakeScaler struct {
231+
Events []ScaleEvent
232+
}
233+
234+
type ScaleEvent struct {
235+
Name string
236+
Size uint
237+
}
238+
239+
func (t *FakeScaler) Scale(namespace, name string, newSize uint, preconditions *kubectl.ScalePrecondition, retry, wait *kubectl.RetryParams, resource schema.GroupResource) error {
240+
t.Events = append(t.Events, ScaleEvent{name, newSize})
241+
return nil
242+
}
243+
244+
func (t *FakeScaler) ScaleSimple(namespace, name string, preconditions *kubectl.ScalePrecondition, newSize uint, resource schema.GroupResource) (string, error) {
245+
return "", fmt.Errorf("unexpected call to ScaleSimple")
246+
}
247+
248+
type FakeLaggedScaler struct {
249+
Events []ScaleEvent
250+
RetryCount int
251+
}
252+
253+
func (t *FakeLaggedScaler) Scale(namespace, name string, newSize uint, preconditions *kubectl.ScalePrecondition, retry, wait *kubectl.RetryParams, resource schema.GroupResource) error {
254+
if t.RetryCount != 2 {
255+
t.RetryCount += 1
256+
// This is faking a real error from the
257+
// "k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle" package.
258+
return errors.NewForbidden(resource, name, fmt.Errorf("%s: not yet ready to handle request", name))
259+
}
260+
t.Events = append(t.Events, ScaleEvent{name, newSize})
261+
return nil
262+
}
263+
264+
func (t *FakeLaggedScaler) ScaleSimple(namespace, name string, preconditions *kubectl.ScalePrecondition, newSize uint, resource schema.GroupResource) (string, error) {
265+
return "", nil
266+
}

0 commit comments

Comments
 (0)