Skip to content

chore: check test files are up to date #1071

chore: check test files are up to date

chore: check test files are up to date #1071

Workflow file for this run

name: Policy Test
permissions: {}
on:
push:
branches:
- '*'
pull_request:
branches:
- main
- release*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
with:
path: policies
- name: Validate all policies
run: |
#!/bin/bash
set -euo pipefail
# Loop through each policy directory in the repository
for policy_dir in $(find "$GITHUB_WORKSPACE" -type d ! -name '.*' ! -path '*/\.*'); do
# Skip the root directory
if [[ "$policy_dir" == "$GITHUB_WORKSPACE" ]]; then
continue
fi
# Skip directories that contain subdirectories
if find "$policy_dir" -mindepth 1 -type d -print -quit | read; then
# If it does, skip the filename validation
continue
fi
# Get the name of the directory
dir_name=$(basename "$policy_dir")
# Skip if it is the CRDs directory
if [[ $dir_name =~ ^.*CRDs.*$ ]]; then
continue
fi
# Check if the directory name only contains alphanumeric characters and dashes
if [[ ! $dir_name =~ ^[a-zA-Z0-9-]+$ ]]; then
echo "Directory $dir_name contains invalid characters. Only alphanumeric characters and dashes are allowed."
exit 1
fi
# Skip if the directory contains a kustomization.yaml file
if [[ -f "$policy_dir/kustomization.yaml" ]]; then
continue
fi
# Check if a .yml or .yaml file with the same name as the directory exists in the directory
if [[ ! -f "$policy_dir/$dir_name.yml" ]] && [[ ! -f "$policy_dir/$dir_name.yaml" ]]; then
echo "No .yml or .yaml file named $dir_name found in directory $policy_dir"
exit 1
fi
# Validate that artifacthub-pkg.yml or artifacthub-pkg.yaml file is found in the same folder as the policy
if [[ ! -f "$policy_dir/artifacthub-pkg.yml" ]] && [[ ! -f "$policy_dir/artifacthub-pkg.yaml" ]]; then
echo "artifacthub-pkg.yml or artifacthub-pkg.yaml file is not found in the same folder as the policy in directory $policy_dir"
exit 1
fi
done
- name: Clone Kyverno
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
with:
repository: kyverno/kyverno
path: kyverno
# The target branch of a pull request or the branch/tag of a push
ref: ${{ github.base_ref || github.ref_name }}
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: "1.20"
- name: Test Policy
run: go run ./cmd/cli/kubectl-kyverno test ../policies
working-directory: kyverno