mirror of https://github.com/knative/client.git
67 lines
2.2 KiB
Go
67 lines
2.2 KiB
Go
// Copyright © 2021 The Knative 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 domain
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
dynamicfake "knative.dev/client/pkg/dynamic/fake"
|
|
"knative.dev/client/pkg/serving/v1beta1"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestDomainMappingDelete(t *testing.T) {
|
|
client := v1beta1.NewMockKnServiceClient(t)
|
|
|
|
servingRecorder := client.Recorder()
|
|
servingRecorder.DeleteDomainMapping("foo.bar", nil)
|
|
|
|
out, err := executeDomainCommand(client, nil, "delete", "foo.bar")
|
|
assert.NilError(t, err, "Domain mapping should be deleted")
|
|
assert.Assert(t, util.ContainsAll(out, "Domain", "mapping", "foo.bar", "deleted", "namespace", "default"))
|
|
|
|
servingRecorder.Validate()
|
|
}
|
|
|
|
func TestDomainMappingDeleteNotFound(t *testing.T) {
|
|
client := v1beta1.NewMockKnServiceClient(t)
|
|
|
|
servingRecorder := client.Recorder()
|
|
servingRecorder.DeleteDomainMapping("foo.bar", errors.New("domainmappings.serving.knative.dev \"foo.bar\" not found"))
|
|
|
|
_, err := executeDomainCommand(client, nil, "delete", "foo.bar")
|
|
assert.ErrorContains(t, err, "not found")
|
|
assert.Assert(t, util.ContainsAll(err.Error(), "domainmappings.serving.knative.dev", "\"foo.bar\"", "not", "found"))
|
|
|
|
servingRecorder.Validate()
|
|
}
|
|
|
|
func TestDomainMappingDeleteWithError(t *testing.T) {
|
|
client := v1beta1.NewMockKnServiceClient(t)
|
|
dynamicClient := dynamicfake.CreateFakeKnDynamicClient(client.Namespace(), createService("foo"))
|
|
|
|
// No call should be recorded
|
|
servingRecorder := client.Recorder()
|
|
|
|
_, err := executeDomainCommand(client, dynamicClient, "delete")
|
|
assert.ErrorContains(t, err, "domain delete")
|
|
assert.Assert(t, util.ContainsAll(err.Error(), "domain delete", "requires", "name", "argument"))
|
|
|
|
servingRecorder.Validate()
|
|
}
|