blob: 0e26d511f1d8fcdca693140fe582f570099aa104 [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 fixtures
import (
"github.com/apache/dubbo-go-pixiu/pkg/config/analysis"
"github.com/apache/dubbo-go-pixiu/pkg/config/analysis/diag"
"github.com/apache/dubbo-go-pixiu/pkg/config/resource"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/collection"
)
// Context is a test fixture of analysis.Context
type Context struct {
Resources []*resource.Instance
Reports []diag.Message
}
var _ analysis.Context = &Context{}
// Report implements analysis.Context
func (ctx *Context) Report(_ collection.Name, t diag.Message) {
ctx.Reports = append(ctx.Reports, t)
}
// Find implements analysis.Context
func (ctx *Context) Find(collection.Name, resource.FullName) *resource.Instance { return nil }
// Exists implements analysis.Context
func (ctx *Context) Exists(collection.Name, resource.FullName) bool { return false }
// ForEach implements analysis.Context
func (ctx *Context) ForEach(_ collection.Name, fn analysis.IteratorFn) {
for _, r := range ctx.Resources {
fn(r)
}
}
// Canceled implements analysis.Context
func (ctx *Context) Canceled() bool { return false }