Skip to content

Commit

Permalink
enhance test for 2.3 specific client attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
dcreado committed Jun 6, 2023
1 parent b73b42f commit a87d7a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/provider/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,8 @@ func TestClientAllAttributes23(t *testing.T) {
resource.TestCheckResourceAttr("authlete_client.client1", "request_object_encryption_enc_match_required", "true"),
resource.TestCheckResourceAttr("authlete_client.client1", "digest_algorithm", "SHA-256"),
resource.TestCheckResourceAttr("authlete_client.client1", "single_access_token_per_subject", "true"),
resource.TestCheckResourceAttr("authlete_client.client1", "pkce_required", "true"),
resource.TestCheckResourceAttr("authlete_client.client1", "pkce_s256_required", "false"),
),
},
{
Expand Down
2 changes: 2 additions & 0 deletions internal/provider/constants_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1515,6 +1515,8 @@ resource "authlete_client" "client1" {
request_object_encryption_enc_match_required = true
digest_algorithm = "SHA-256"
single_access_token_per_subject = true
pkce_required = true
pkce_s256_required = false
}
`
const clientSecretSupportClientTests = `
Expand Down

0 comments on commit a87d7a2

Please sign in to comment.