| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package config |
|
|
| import ( |
| "errors" |
| "fmt" |
| ) |
|
|
| var errInvalidConfig = errors.New("invalid config") |
|
|
| func Validate(cfg *Config) error { |
| |
| class := cfg.class.Class() |
| refProps, ok := class[referencePropertiesField] |
| if !ok { |
| return fmt.Errorf("%w: must have at least one value in the %q field", |
| errInvalidConfig, referencePropertiesField) |
| } |
|
|
| propSlice, ok := refProps.([]interface{}) |
| if !ok { |
| return fmt.Errorf("%w: expected array for field %q, got %T", |
| errInvalidConfig, referencePropertiesField, refProps) |
| } |
|
|
| if len(propSlice) == 0 { |
| return fmt.Errorf("%w: must have at least one value in the %q field", |
| errInvalidConfig, referencePropertiesField) |
| } |
|
|
| |
| for _, prop := range propSlice { |
| if _, ok := prop.(string); !ok { |
| return fmt.Errorf("%w: expected %q to contain strings, found %T: %+v", |
| errInvalidConfig, referencePropertiesField, prop, refProps) |
| } |
| } |
|
|
| _, err := cfg.CalculationMethod() |
| if err != nil { |
| return err |
| } |
|
|
| return nil |
| } |
|
|