@@ -15,7 +15,7 @@ limitations under the License.
1515*/
1616
1717// Package conformance contains the core setup and execution logic
18- // for the Gateway API Inference ExtensionRef conformance test suite.
18+ // for the Gateway API Inference Extension conformance test suite.
1919package conformance
2020
2121import (
@@ -54,7 +54,7 @@ import (
5454)
5555
5656// GatewayLayerProfileName defines the name for the conformance profile that tests
57- // the Gateway API layer aspects of the Inference ExtensionRef (e.g., InferencePool, InferenceObjective CRDs).
57+ // the Gateway API layer aspects of the Inference Extension (e.g., InferencePool, InferenceObjective CRDs).
5858// Future profiles will cover EPP and ModelServer layers.
5959const GatewayLayerProfileName confsuite.ConformanceProfileName = "Gateway"
6060
@@ -66,7 +66,7 @@ const GatewayLayerProfileName confsuite.ConformanceProfileName = "Gateway"
6666const SupportInferencePool features.FeatureName = "SupportInferencePool"
6767
6868// InferenceCoreFeatures defines the core features that implementations
69- // of the "Gateway" profile for the Inference ExtensionRef MUST support.
69+ // of the "Gateway" profile for the Inference Extension MUST support.
7070var InferenceCoreFeatures = sets .New (
7171 features .SupportGateway , // This is needed to ensure manifest gets applied during setup.
7272 features .SupportHTTPRoute ,
@@ -104,7 +104,7 @@ func DefaultOptions(t *testing.T) confsuite.ConformanceOptions {
104104 // Add APIExtensions types (for CRDs)
105105 require .NoError (t , apiextensionsv1 .AddToScheme (scheme ), "failed to add apiextensionsv1 types to scheme" )
106106
107- // Register Inference ExtensionRef API types
107+ // Register Inference Extension API types
108108 t .Logf ("Attempting to install inferencev1alpha2 types into scheme from package: %s" , inferencev1alpha2 .GroupName )
109109 require .NoError (t , inferencev1alpha2 .Install (scheme ), "failed to install inferencev1alpha2 types into scheme" )
110110 t .Logf ("Attempting to install inferencev1 types into scheme from package: %s" , inferencev1 .GroupName )
@@ -134,7 +134,7 @@ func DefaultOptions(t *testing.T) confsuite.ConformanceOptions {
134134 * confflags .ImplementationContact ,
135135 )
136136
137- // Inference ExtensionRef Specific Report Fields
137+ // Inference Extension Specific Report Fields
138138 inferenceExtensionVersion := "v0.3.0"
139139 _ = inferenceExtensionVersion // Avoid unused variable error until implemented
140140
@@ -189,15 +189,15 @@ func DefaultOptions(t *testing.T) confsuite.ConformanceOptions {
189189 return opts
190190}
191191
192- // RunConformance runs the Inference ExtensionRef conformance tests using default options.
192+ // RunConformance runs the Inference Extension conformance tests using default options.
193193func RunConformance (t * testing.T ) {
194194 RunConformanceWithOptions (t , DefaultOptions (t ))
195195}
196196
197- // RunConformanceWithOptions runs the Inference ExtensionRef conformance tests with specific options.
197+ // RunConformanceWithOptions runs the Inference Extension conformance tests with specific options.
198198func RunConformanceWithOptions (t * testing.T , opts confsuite.ConformanceOptions ) {
199199 t .Helper ()
200- t .Logf ("Running Inference ExtensionRef conformance tests with GatewayClass %s" , opts .GatewayClassName )
200+ t .Logf ("Running Inference Extension conformance tests with GatewayClass %s" , opts .GatewayClassName )
201201 logDebugf (t , opts .Debug , "RunConformanceWithOptions: BaseManifests path being used by opts: %q" , opts .BaseManifests )
202202
203203 // Register the GatewayLayerProfile with the suite runner.
@@ -211,13 +211,13 @@ func RunConformanceWithOptions(t *testing.T, opts confsuite.ConformanceOptions)
211211
212212 SetupConformanceTestSuite (t , cSuite , opts , tests .ConformanceTests )
213213
214- t .Log ("Running Inference ExtensionRef conformance tests against all registered tests" )
214+ t .Log ("Running Inference Extension conformance tests against all registered tests" )
215215 err = cSuite .Run (t , tests .ConformanceTests )
216216 require .NoError (t , err , "error running conformance tests" )
217217
218218 // Generate and write the report if requested.
219219 if opts .ReportOutputPath != "" {
220- t .Log ("Generating Inference ExtensionRef conformance report" )
220+ t .Log ("Generating Inference Extension conformance report" )
221221 report , err := cSuite .Report () // Use the existing report generation logic.
222222 require .NoError (t , err , "error generating conformance report" )
223223 inferenceReport := GatewayAPIInferenceExtensionConformanceReport {
0 commit comments