Skip to content
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

Add buildkite step to run unit tests that require fips provider #4617

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
25 changes: 25 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -30,6 +30,16 @@ steps:
cpu: "8"
memory: "4G"

- label: ":building_construction: Run local FIPS build"
key: make-local-fips
command: ".buildkite/scripts/local_build.sh"
agents:
image: "${GO_AGENT_IMAGE}"
cpu: "8"
memory: "4G"
env:
FIPS: "true"

- label: ":building_construction: Run local build: MacOS"
key: make-local-macos
command: ".buildkite/scripts/local_build.sh"
@@ -98,6 +108,21 @@ steps:
- build/*.xml
- build/coverage*.out

- label: ":smartbear-testexecute: Run FIPS Provider tests"
key: provider-test-fips
command: ".buildkite/scripts/fips_provider_test.sh"
env:
FIPS: "true"
agents:
provider: "aws"
imagePrefix: "platform-ingest-fleet-server-ubuntu-2204-fips"
diskSizeGb: 100
instanceType: m5.large
artifact_paths:
- build/*.xml
- build/coverage*.out


- label: ":smartbear-testexecute: Run unit tests: MacOS 13"
key: unit-test-macos-13
command: ".buildkite/scripts/unit_test.sh"
5 changes: 3 additions & 2 deletions .buildkite/scripts/common.sh
Original file line number Diff line number Diff line change
@@ -55,9 +55,10 @@ with_msft_go() {
echo "Setting up microsoft/go"
create_workspace
check_platform_architeture
MSFT_DOWNLOAD_URL=https://aka.ms/golang/release/latest/go$(cat .go-version)-1.${platform_type}-${arch_type}.tar.gz
MSFT_DOWNLOAD_URL=https://aka.ms/golang/release/latest/go$(cat .go-version).${platform_type}-${arch_type}.tar.gz
retry 5 $(curl -sL -o - $MSFT_DOWNLOAD_URL | tar -xz -f - -C ${WORKSPACE})
export PATH="${PATH}:${WORKSPACE}/go/bin"
export PATH="${WORKSPACE}/go/bin:${PATH}"
echo "microsoft/go in ${WORKSPACE}"
go version
which go
export PATH="${PATH}:$(go env GOPATH)/bin"
13 changes: 13 additions & 0 deletions .buildkite/scripts/fips_provider_test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

set -euo pipefail

source .buildkite/scripts/common.sh

add_bin_path

with_msft_go

echo "Starting the provider enabled tests..."
make test-unit junit-report

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -127,7 +127,7 @@ else
$(eval ARCH := amd64)
endif
ifeq "${FIPS}" "true"
$(eval DOWNLOAD_URL := https://aka.ms/golang/release/latest/go${GO_VERSION}-1.linux-${ARCH}.tar.gz)
$(eval DOWNLOAD_URL := https://aka.ms/golang/release/latest/go${GO_VERSION}.linux-${ARCH}.tar.gz)
else
$(eval DOWNLOAD_URL := https://go.dev/dl/go${GO_VERSION}.linux-${ARCH}.tar.gz)
endif
2 changes: 1 addition & 1 deletion internal/pkg/testing/certs/certs.go
Original file line number Diff line number Diff line change
@@ -95,7 +95,7 @@ func GenCA(t *testing.T) tls.Certificate {
t.Fatalf("fail to generate RSA key: %v", err)
}

ca.SubjectKeyId = generateSubjectKeyID(caKey)
ca.SubjectKeyId = generateSubjectKeyID(caKey.Public())

caBytes, err := x509.CreateCertificate(rand.Reader, ca, ca, &caKey.PublicKey, caKey)
if err != nil {