Skip to content

Commit 902037a

Browse files
committed
OPRUN-3692: OLMv1-catalogd tests for API endpoints
Introduces tests for the new `api/v1/metas` endpoint when NewOLMCatalogdAPIV1Metas feature gate in enabled. Signed-off-by: Anik Bhattacharjee <[email protected]>
1 parent 585968f commit 902037a

File tree

3 files changed

+98
-4
lines changed

3 files changed

+98
-4
lines changed

test/extended/olm/olmv1.go

+84-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ package operators
22

33
import (
44
"context"
5+
"crypto/tls"
56
"encoding/json"
67
"fmt"
8+
"net/http"
79
"os"
810
"path/filepath"
911
"strings"
@@ -71,7 +73,7 @@ var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM] OLMv1 CRDs", func() {
7173
})
7274
})
7375

74-
var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs", func() {
76+
var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs", func() {
7577
defer g.GinkgoRecover()
7678
oc := exutil.NewCLIWithoutNamespace("default")
7779

@@ -99,6 +101,43 @@ var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLM
99101
})
100102
})
101103

104+
var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalog's /v1/api/all endpoint", func() {
105+
defer g.GinkgoRecover()
106+
oc := exutil.NewCLIWithoutNamespace("default")
107+
108+
g.It("should serve FBC", func(ctx g.SpecContext) {
109+
checkFeatureCapability(ctx, oc)
110+
111+
// Start port-forward in background
112+
_, _, _, err := oc.AsAdmin().Run("port-forward").Args("-n", "openshift-catalogd", "svc/catalogd-service", "8080:443").Background()
113+
o.Expect(err).NotTo(o.HaveOccurred())
114+
115+
// Wait for port-forward to be established
116+
time.Sleep(2 * time.Second)
117+
118+
g.By("Testing /api/v1/all endpoint for catalog openshift-community-operators")
119+
verifyAPIEndpoint(ctx, "https://localhost:8080/catalogs/openshift-community-operators/api/v1/all")
120+
})
121+
})
122+
123+
var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 Catalog's /v1/api/metas endpoint", func() {
124+
defer g.GinkgoRecover()
125+
oc := exutil.NewCLIWithoutNamespace("default")
126+
g.It(" should serve the /v1/api/metas API endpoint", func(ctx g.SpecContext) {
127+
checkFeatureCapability(ctx, oc)
128+
129+
// Start port-forward in background
130+
_, _, _, err := oc.AsAdmin().Run("port-forward").Args("-n", "openshift-catalogd", "svc/catalogd-service", "8443:443").Background()
131+
o.Expect(err).NotTo(o.HaveOccurred())
132+
133+
// Wait for port-forward to be established
134+
time.Sleep(2 * time.Second)
135+
136+
g.By("Testing api/v1/metas endpoint for catalog openshift-community-operators")
137+
verifyAPIEndpoint(ctx, "https://localhost:8443/catalogs/openshift-community-operators/api/v1/metas?schema=olm.package")
138+
})
139+
})
140+
102141
var _ = g.Describe("[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 New Catalog Install", func() {
103142
defer g.GinkgoRecover()
104143

@@ -419,3 +458,47 @@ func checkFeatureCapability(ctx context.Context, oc *exutil.CLI) {
419458
g.Skip("Test only runs with OperatorLifecycleManagerV1 capability")
420459
}
421460
}
461+
462+
// verifyAPIEndpoint tests that an API endpoint is accessible and returns valid JSON
463+
func verifyAPIEndpoint(ctx g.SpecContext, urlPath string) {
464+
var lastError error
465+
466+
// Retry API call a few times to handle potential connection issues
467+
err := wait.PollUntilContextTimeout(ctx, 2*time.Second, 30*time.Second, true,
468+
func(ctx context.Context) (bool, error) {
469+
// Create a custom HTTP client that skips TLS verification
470+
tr := &http.Transport{
471+
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
472+
}
473+
client := &http.Client{Transport: tr}
474+
475+
resp, err := client.Get(urlPath)
476+
if err != nil {
477+
lastError = err
478+
return false, nil
479+
}
480+
defer resp.Body.Close()
481+
482+
// Check status code
483+
if resp.StatusCode != http.StatusOK {
484+
lastError = fmt.Errorf("unexpected status code: %d", resp.StatusCode)
485+
return false, nil
486+
}
487+
488+
// Try to parse response as JSON to verify it's valid
489+
var result interface{}
490+
decoder := json.NewDecoder(resp.Body)
491+
if err := decoder.Decode(&result); err != nil {
492+
lastError = fmt.Errorf("failed to parse JSON response: %v", err)
493+
return false, nil
494+
}
495+
496+
return true, nil
497+
})
498+
499+
if err != nil {
500+
g.Fail(fmt.Sprintf("API endpoint %s is not accessible: %v (last error: %v)", urlPath, err, lastError))
501+
}
502+
503+
g.GinkgoLogr.Info(fmt.Sprintf("Successfully verified API endpoint: %s", urlPath))
504+
}

test/extended/util/annotate/generated/zz_generated.annotations.go

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zz_generated.manifests/test-reporting.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -380,17 +380,24 @@ spec:
380380
- featureGate: NewOLM
381381
tests:
382382
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM] OLMv1 CRDs should be installed'
383-
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs
384-
should be installed'
383+
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalog''s
384+
/v1/api/all endpoint should serve FBC'
385385
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 New
386386
Catalog Install should fail to install if it has an invalid reference'
387+
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default
388+
Catalogs should be installed'
387389
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
388390
installation should block cluster upgrades if an incompatible operator is
389391
installed'
390392
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
391393
installation should fail to install a non-existing cluster extension'
392394
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
393395
installation should install a cluster extension'
396+
- featureGate: NewOLMCatalogdAPIV1Metas
397+
tests:
398+
- testName: '[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected]
399+
OLMv1 Catalog''s /v1/api/metas endpoint should serve the /v1/api/metas API
400+
endpoint'
394401
- featureGate: PersistentIPsForVirtualization
395402
tests:
396403
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]

0 commit comments

Comments
 (0)