mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-28 04:04:39 -04:00
hack: enable coverage fixture generation in update-codegen.sh
Pass -test-output-root and -test-allowlist to validation-gen so the per-Kind coverage fixtures regenerate alongside the validators. Add the allowlist YAML at test/declarative_validation/coverage-allowlist.yaml.
This commit is contained in:
parent
3ecf13401a
commit
daae4100a6
2 changed files with 50 additions and 0 deletions
|
|
@ -465,6 +465,9 @@ function codegen::validation() {
|
|||
-v "${KUBE_VERBOSE}" \
|
||||
--go-header-file "${BOILERPLATE_FILENAME}" \
|
||||
--output-file "${output_file}" \
|
||||
--test-output-root "test/declarative_validation" \
|
||||
--test-output-file-prefix "${GENERATED_FILE_PREFIX}" \
|
||||
--test-allowlist "test/declarative_validation/coverage-allowlist.yaml" \
|
||||
$(printf -- " --readonly-pkg %s" "${readonly_pkgs[@]}") \
|
||||
"${tag_pkgs[@]}" \
|
||||
"$@"
|
||||
|
|
|
|||
47
test/declarative_validation/coverage-allowlist.yaml
Normal file
47
test/declarative_validation/coverage-allowlist.yaml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Suppressions for declarative-validation coverage.
|
||||
#
|
||||
# Every field is required. apiVersion matches exactly (use the standard
|
||||
# "<group>/<version>" form, or "<version>" for core). kind, path,
|
||||
# errorType, and origin match exactly OR wildcard with '*' (no implicit
|
||||
# wildcarding, so an entry can never silently overexclude). reason is
|
||||
# required.
|
||||
#
|
||||
# Example:
|
||||
# - apiVersion: autoscaling/v1 # one specific rule
|
||||
# kind: Scale
|
||||
# path: spec.replicas
|
||||
# errorType: FieldValueInvalid
|
||||
# origin: minimum
|
||||
# reason: tested separately
|
||||
#
|
||||
# Run hack/update-codegen.sh after editing.
|
||||
|
||||
- apiVersion: extensions/v1beta1
|
||||
kind: '*'
|
||||
path: '*'
|
||||
errorType: '*'
|
||||
origin: '*'
|
||||
reason: Not served by kube-apiserver.
|
||||
|
||||
# Scale subresource: no dedicated Strategy in the new tree; tested separately
|
||||
# via VerifyVersionedValidationEquivalence (which doesn't populate the
|
||||
# in-process coverage accumulator). extensions/v1beta1/Scale is covered by
|
||||
# the group-level entry above.
|
||||
- apiVersion: autoscaling/v1
|
||||
kind: Scale
|
||||
path: '*'
|
||||
errorType: '*'
|
||||
origin: '*'
|
||||
reason: Scale subresource has no dedicated Strategy; tested separately.
|
||||
- apiVersion: apps/v1beta1
|
||||
kind: Scale
|
||||
path: '*'
|
||||
errorType: '*'
|
||||
origin: '*'
|
||||
reason: Scale subresource has no dedicated Strategy; tested separately.
|
||||
- apiVersion: apps/v1beta2
|
||||
kind: Scale
|
||||
path: '*'
|
||||
errorType: '*'
|
||||
origin: '*'
|
||||
reason: Scale subresource has no dedicated Strategy; tested separately.
|
||||
Loading…
Reference in a new issue