-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Automate functional tests in the pipeline #1631
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
587bb63
[pre-commit.ci] pre-commit autoupdate (#1595)
pre-commit-ci[bot] cb2f77d
update functional.yaml
salonichf5 f8d0684
update functional test setup
salonichf5 71dbf37
fix job
salonichf5 bf928ed
update coverage
salonichf5 dd7359a
simplify make file
salonichf5 43bc963
update test readme
salonichf5 033e131
fix workflow
salonichf5 bf08c8e
add step in workflow
salonichf5 ce17e65
fix kubernetes deployment
salonichf5 64e3def
fix typo
salonichf5 b304df3
update job
salonichf5 9227ece
get secret nginx plus
salonichf5 6e691f7
remove nginx-plus
salonichf5 cf1bbd2
update workflow for plus
salonichf5 5e785d8
build ngf binary
salonichf5 b790d6a
update go modules
salonichf5 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
name: Functional Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release-* | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+*" | ||
pull_request: | ||
workflow_call: | ||
inputs: | ||
platforms: | ||
required: true | ||
type: string | ||
image: | ||
required: true | ||
type: string | ||
tag: | ||
required: false | ||
type: string | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: read # for docker/build-push-action to read repo content | ||
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | ||
packages: write # for docker/build-push-action to push to GHCR | ||
id-token: write # for docker/login to login to NGINX registry | ||
runs-on: ubuntu-22.04 | ||
services: | ||
registry: | ||
image: registry:2 | ||
ports: | ||
- 5000:5000 | ||
strategy: | ||
matrix: | ||
k8s-version: ["1.23.17", "latest"] | ||
nginx-image: [nginx,nginx-plus] | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Setup Golang Environment | ||
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | ||
with: | ||
go-version: stable | ||
|
||
- name: Set GOPATH | ||
run: echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | ||
|
||
- name: Docker Buildx | ||
uses: docker/setup-buildx-action@0d103c3126aa41d772a8362f6aa67afac040f80c # v3.1.0 | ||
with: | ||
driver-opts: network=host | ||
|
||
- name: Setup QEMU | ||
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | ||
with: | ||
platforms: arm64 | ||
|
||
- name: Output Variables | ||
id: vars | ||
run: echo "go_path=$(go env GOPATH)" >> $GITHUB_OUTPUT | ||
|
||
- name: Build binary | ||
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 | ||
with: | ||
version: latest | ||
args: ${{ github.ref_type == 'tag' && 'release' || 'build --snapshot' }} --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOPATH: ${{ steps.vars.outputs.go_path }} | ||
AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT }} | ||
AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_KEY }} | ||
AZURE_BUCKET_NAME: ${{ secrets.AZURE_BUCKET_NAME }} | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_COMMUNITY }} | ||
|
||
- name: Fetch Cached Artifacts | ||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 | ||
with: | ||
path: ${{ github.workspace }}/dist | ||
key: nginx-gateway-fabric-${{ github.run_id }}-${{ github.run_number }} | ||
|
||
- name: NGF Docker meta | ||
id: ngf-meta | ||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | ||
with: | ||
images: | | ||
name=ghcr.io/nginxinc/nginx-gateway-fabric | ||
tags: | | ||
type=semver,pattern={{version}} | ||
type=edge | ||
type=ref,event=pr | ||
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }} | ||
|
||
- name: Update Go Modules | ||
if: ${{ github.event_name == 'schedule' }} | ||
run: make update-go-modules | ||
working-directory: ./conformance | ||
|
||
- name: NGINX Docker meta | ||
id: nginx-meta | ||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | ||
with: | ||
images: | | ||
name=ghcr.io/nginxinc/nginx-gateway-fabric/${{ matrix.nginx-image }} | ||
tags: | | ||
type=semver,pattern={{version}} | ||
type=edge | ||
type=ref,event=pr | ||
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }} | ||
|
||
- name: Build NGF Docker Image | ||
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 | ||
with: | ||
file: build/Dockerfile | ||
tags: ${{ steps.ngf-meta.outputs.tags }} | ||
context: "." | ||
target: goreleaser | ||
load: true | ||
cache-from: type=gha,scope=ngf | ||
cache-to: type=gha,scope=ngf,mode=max | ||
pull: true | ||
|
||
- name: Build NGINX Docker Image | ||
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 | ||
with: | ||
file: build/Dockerfile${{ matrix.nginx-image == 'nginx' && '.nginx' || '' }}${{ matrix.nginx-image == 'nginx-plus' && '.nginxplus' || ''}} | ||
tags: ${{ steps.nginx-meta.outputs.tags }} | ||
context: "." | ||
load: true | ||
cache-from: type=gha,scope=${{ matrix.nginx-image }} | ||
cache-to: type=gha,scope=${{ matrix.nginx-image }},mode=max | ||
pull: true | ||
build-args: | | ||
NJS_DIR=internal/mode/static/nginx/modules/src | ||
NGINX_CONF_DIR=internal/mode/static/nginx/conf | ||
BUILD_AGENT=gha | ||
secrets: | | ||
${{ contains(inputs.image, 'plus') && format('"nginx-repo.crt={0}"', secrets.NGINX_CRT) || '' }} | ||
${{ contains(inputs.image, 'plus') && format('"nginx-repo.key={0}"', secrets.NGINX_KEY) || '' }} | ||
|
||
- name: Deploy Kubernetes | ||
id: k8s | ||
run: | | ||
kube_config=${{ github.workspace }}/deploy/helm-chart/kube-${{ github.run_id }}-helm | ||
make create-kind-cluster KIND_KUBE_CONFIG=${kube_config} | ||
echo "KUBECONFIG=${kube_config}" >> "$GITHUB_ENV" | ||
|
||
- name: Setup functional tests | ||
run: | | ||
ngf_tag=${{ steps.ngf-meta.outputs.version }} | ||
if [ ${{ github.event_name }} == "schedule" ]; then export GW_API_VERSION=main; fi | ||
if [ ${{ startsWith(matrix.k8s-version, '1.23') || startsWith(matrix.k8s-version, '1.24') }} == "true" ]; then export INSTALL_WEBHOOK=true; fi | ||
make build-images${{ matrix.nginx-image == 'nginx-plus' && '-with-plus' || ''}} load-images${{ matrix.nginx-image == 'nginx-plus' && '-with-plus' || ''}} TAG=${ngf_tag} | ||
working-directory: ./tests | ||
|
||
- name: Run NGINX functional tests | ||
run: | | ||
ngf_tag=${{ steps.ngf-meta.outputs.version }} | ||
if [ ${{ github.event_name }} == "schedule" ]; then export GW_API_VERSION=main; fi | ||
make functional-test${{ matrix.nginx-image == 'nginx-plus' && '-nginx-plus' || ''}} TAG=${ngf_tag} | ||
working-directory: ./tests | ||
|
||
- name: Upload profile to release | ||
if: ${{ matrix.k8s-version == 'latest' && startsWith(github.ref, 'refs/tags/') }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: gh release upload ${{ github.ref_name }} results/functional/edge/* | ||
working-directory: ./tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Results | ||
|
||
## Test environment | ||
|
||
NGINX Plus: false | ||
|
||
Local Cluster: | ||
|
||
- Node count: 1 | ||
- k8s version: v1.29.2 | ||
- vCPUs per node: 12 | ||
- RAM per node: 8034504Ki | ||
- Max pods per node: 110 | ||
# Results | ||
|
||
## Test environment | ||
|
||
NGINX Plus: true | ||
|
||
Local Cluster: | ||
|
||
- Node count: 1 | ||
- k8s version: v1.29.2 | ||
- vCPUs per node: 12 | ||
- RAM per node: 8034504Ki | ||
- Max pods per node: 110 | ||
# Results | ||
|
||
## Test environment | ||
|
||
NGINX Plus: false | ||
|
||
Local Cluster: | ||
|
||
- Node count: 1 | ||
- k8s version: v1.29.2 | ||
- vCPUs per node: 12 | ||
- RAM per node: 8034504Ki | ||
- Max pods per node: 110 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to document test results in the output file.