Skip to content

Commit af0889b

Browse files
update
1 parent 373b287 commit af0889b

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Integration Tests
1+
name: SPNEGO Integration Tests
22

33
on:
44
push:
@@ -13,11 +13,12 @@ on:
1313
- 'go.sum'
1414
- 'pkg/testinfra/**'
1515
- 'integration/**'
16+
- 'proxy_auth*.go'
1617
- '.github/workflows/integration-tests.yml'
1718

1819
jobs:
19-
integration-tests:
20-
name: Run Integration Tests
20+
spnego-tests:
21+
name: SPNEGO Proxy Authentication Tests
2122
runs-on: ubuntu-latest
2223

2324
steps:
@@ -37,12 +38,12 @@ jobs:
3738
docker --version
3839
docker info
3940
40-
- name: Run Integration Tests
41+
- name: Run SPNEGO Integration Tests
4142
run: |
42-
go test -v -tags=integration -timeout=15m ./integration/...
43+
go test -v -tags=integration -run TestSPNEGOProxy -timeout=15m ./integration/...
4344
env:
4445
CGO_ENABLED: 1
45-
TESTCONTAINERS_RYUK_DISABLED: false
46+
TESTCONTAINERS_RYUK_DISABLED: true
4647
DOCKER_HOST: unix:///var/run/docker.sock
4748
PIVNET_API_TOKEN: ${{ secrets.PIVNET_API_TOKEN }}
4849

integration/e2e_spnego_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func testSPNEGOAuthentication(t *testing.T, env *testinfra.SPNEGOEnv) {
6161
// Kerberos authentication from host to containerized KDC often fails due to
6262
// container networking limitations. The infrastructure is validated:
6363
// ✅ KDC container started and initialized
64-
// ✅ Principals created successfully
64+
// ✅ Principals created successfully
6565
// ✅ Squid proxy configured with SPNEGO
6666
// ✅ Configuration files generated correctly
6767
t.Logf("SPNEGO auth creation failed (expected in containerized environment): %v", err)

0 commit comments

Comments
 (0)