@@ -21,6 +21,7 @@ Feature: TLS configuration for remote inference providers
2121 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
2222 """
2323 Then The status code of the response is 200
24+ And The body of the response contains Hello from the TLS mock inference server
2425
2526 Scenario : Inference succeeds with CA certificate verification
2627 Given Llama Stack is configured with CA certificate verification
@@ -31,6 +32,7 @@ Feature: TLS configuration for remote inference providers
3132 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
3233 """
3334 Then The status code of the response is 200
35+ And The body of the response contains Hello from the TLS mock inference server
3436
3537 Scenario : Inference fails with an untrusted CA certificate
3638 Given Llama Stack is configured with CA certificate path "/certs/untrusted-ca.crt"
@@ -74,6 +76,7 @@ Feature: TLS configuration for remote inference providers
7476 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
7577 """
7678 Then The status code of the response is 200
79+ And The body of the response contains Hello from the TLS mock inference server
7780
7881 Scenario : Inference fails when mTLS is required but no client certificate is provided
7982 Given Llama Stack is configured for mTLS without client certificate
@@ -150,6 +153,7 @@ Feature: TLS configuration for remote inference providers
150153 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
151154 """
152155 Then The status code of the response is 200
156+ And The body of the response contains Hello from the TLS mock inference server
153157
154158 Scenario : Inference fails with TLS minimum version TLSv1.3 and untrusted CA certificate
155159 Given Llama Stack is configured with TLS minimum version "TLSv1.3" and CA certificate path "/certs/untrusted-ca.crt"
0 commit comments