mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 16:42:51 +00:00
115 lines
3.1 KiB
Go
115 lines
3.1 KiB
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package framework
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"sigs.k8s.io/kustomize/kyaml/yaml"
|
|
)
|
|
|
|
// Severity indicates the severity of the Result
|
|
type Severity string
|
|
|
|
const (
|
|
// Error indicates the result is an error. Will cause the function to exit non-0.
|
|
Error Severity = "error"
|
|
// Warning indicates the result is a warning
|
|
Warning Severity = "warning"
|
|
// Info indicates the result is an informative message
|
|
Info Severity = "info"
|
|
)
|
|
|
|
// ResultItem defines a validation result
|
|
type ResultItem struct {
|
|
// Message is a human readable message
|
|
Message string `yaml:"message,omitempty"`
|
|
|
|
// Severity is the severity of this result
|
|
Severity Severity `yaml:"severity,omitempty"`
|
|
|
|
// ResourceRef is a reference to a resource
|
|
ResourceRef yaml.ResourceIdentifier `yaml:"resourceRef,omitempty"`
|
|
|
|
// Field is a reference to the field in a resource this result refers to
|
|
Field Field `yaml:"field,omitempty"`
|
|
|
|
// File references a file containing the resource this result refers to
|
|
File File `yaml:"file,omitempty"`
|
|
}
|
|
|
|
// String provides a human-readable message for the result item
|
|
func (i ResultItem) String() string {
|
|
identifier := i.ResourceRef
|
|
var idStringList []string
|
|
if identifier.APIVersion != "" {
|
|
idStringList = append(idStringList, identifier.APIVersion)
|
|
}
|
|
if identifier.Kind != "" {
|
|
idStringList = append(idStringList, identifier.Kind)
|
|
}
|
|
if identifier.Namespace != "" {
|
|
idStringList = append(idStringList, identifier.Namespace)
|
|
}
|
|
if identifier.Name != "" {
|
|
idStringList = append(idStringList, identifier.Name)
|
|
}
|
|
if len(idStringList) > 0 {
|
|
idString := strings.Join(idStringList, "/")
|
|
return fmt.Sprintf("[%s] %s %s: %s", i.Severity, idString, i.Field.Path, i.Message)
|
|
}
|
|
return fmt.Sprintf("[%s] %s: %s", i.Severity, i.Field.Path, i.Message)
|
|
}
|
|
|
|
// File references a file containing a resource
|
|
type File struct {
|
|
// Path is relative path to the file containing the resource
|
|
Path string `yaml:"path,omitempty"`
|
|
|
|
// Index is the index into the file containing the resource
|
|
// (i.e. if there are multiple resources in a single file)
|
|
Index int `yaml:"index,omitempty"`
|
|
}
|
|
|
|
// Field references a field in a resource
|
|
type Field struct {
|
|
// Path is the field path
|
|
Path string `yaml:"path,omitempty"`
|
|
|
|
// CurrentValue is the current field value
|
|
CurrentValue string `yaml:"currentValue,omitempty"`
|
|
|
|
// SuggestedValue is the suggested field value
|
|
SuggestedValue string `yaml:"suggestedValue,omitempty"`
|
|
}
|
|
|
|
// Result defines a function result which will be set on the emitted ResourceList
|
|
type Result struct {
|
|
// Name is the name of the function creating the result
|
|
Name string `yaml:"name,omitempty"`
|
|
|
|
// Items are the individual results
|
|
Items []ResultItem `yaml:"items,omitempty"`
|
|
}
|
|
|
|
// Error enables a Result to be returned as an error
|
|
func (e Result) Error() string {
|
|
var msgs []string
|
|
for _, i := range e.Items {
|
|
msgs = append(msgs, i.String())
|
|
}
|
|
return strings.Join(msgs, "\n\n")
|
|
}
|
|
|
|
// ExitCode provides the exit code based on the result's severity
|
|
func (e Result) ExitCode() int {
|
|
for _, i := range e.Items {
|
|
if i.Severity == Error {
|
|
return 1
|
|
}
|
|
}
|
|
return 0
|
|
}
|