(t *testing.T, issuerURL string, autoRepair bool)
| 36 | } |
| 37 | |
| 38 | func newDeploymentValues(t *testing.T, issuerURL string, autoRepair bool) *codersdk.DeploymentValues { |
| 39 | t.Helper() |
| 40 | vals := &codersdk.DeploymentValues{} |
| 41 | require.NoError(t, vals.OIDC.IssuerURL.Set(issuerURL)) |
| 42 | vals.OIDC.AutoRepairLinks = serpent.Bool(autoRepair) |
| 43 | return vals |
| 44 | } |
| 45 | |
| 46 | func TestOIDCAuthLinks(t *testing.T) { |
| 47 | t.Parallel() |
no test coverage detected