blob: 6468f598b8b8d06dde7d7dd383d6091f3b9ef858 [file] [log] [blame]
// Copyright Istio 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 collections
import (
"errors"
)
import (
"github.com/apache/dubbo-go-pixiu/pkg/config"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/collection"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/resource"
"github.com/apache/dubbo-go-pixiu/pkg/config/validation"
testconfig "github.com/apache/dubbo-go-pixiu/pkg/test/config"
)
var (
// Mock is used purely for testing
Mock = collection.Builder{
Name: "mock",
VariableName: "Mock",
Resource: resource.Builder{
ClusterScoped: false,
Kind: "MockConfig",
Plural: "mockconfigs",
Group: "test.istio.io",
Version: "v1",
Proto: "config.MockConfig",
ProtoPackage: "github.com/apache/dubbo-go-pixiu/pkg/test/config",
ValidateProto: func(cfg config.Config) (validation.Warning, error) {
if cfg.Spec.(*testconfig.MockConfig).Key == "" {
return nil, errors.New("empty key")
}
return nil, nil
},
}.MustBuild(),
}.MustBuild()
// Mocks is a Schemas containing the Mock Schema.
Mocks = collection.NewSchemasBuilder().MustAdd(Mock).Build()
)