@@ -52,22 +52,23 @@ test.describe("Audit Log check for Catalog Plugin", () => {
52
52
) ;
53
53
} ) ;
54
54
55
- test ( "Should fetch logs for CatalogEntityFetchByName event and validate log structure and values" , async ( ) => {
55
+ // skipping until RHDHBUGS-1900 is fixed
56
+ test . skip ( "Should fetch logs for CatalogEntityFetchByName event and validate log structure and values" , async ( ) => {
56
57
await uiHelper . selectMuiBox ( "Kind" , "Component" ) ;
57
58
await uiHelper . clickByDataTestId ( "user-picker-all" ) ;
58
- await uiHelper . clickLink ( "Backstage Showcase " ) ;
59
+ await uiHelper . clickLink ( "Red Hat Developer Hub " ) ;
59
60
await validateCatalogLogEvent (
60
61
"CatalogEntityFetchByName" ,
61
- "Fetch attempt for entity with entityRef component:default/backstage-showcase " ,
62
+ "Fetch attempt for entity ancestor of entity component:default/red-hat-developer-hub initiated by user:development/guest " ,
62
63
"GET" ,
63
- "/api/catalog/entities/by-name/component/default/backstage-showcase " ,
64
+ "/api/catalog/entities/by-name/component/default/red-hat-developer-hub " ,
64
65
) ;
65
66
} ) ;
66
67
67
68
test ( "Should fetch logs for CatalogEntityBatchFetch event and validate log structure and values" , async ( ) => {
68
69
await uiHelper . selectMuiBox ( "Kind" , "Component" ) ;
69
70
await uiHelper . clickByDataTestId ( "user-picker-all" ) ;
70
- await uiHelper . clickLink ( "Backstage Showcase " ) ;
71
+ await uiHelper . clickLink ( "Red Hat Developer Hub " ) ;
71
72
await validateCatalogLogEvent (
72
73
"CatalogEntityBatchFetch" ,
73
74
"Batch entity fetch attempt" ,
@@ -79,12 +80,12 @@ test.describe("Audit Log check for Catalog Plugin", () => {
79
80
test ( "Should fetch logs for CatalogEntityAncestryFetch event and validate log structure and values" , async ( ) => {
80
81
await uiHelper . selectMuiBox ( "Kind" , "Component" ) ;
81
82
await uiHelper . clickByDataTestId ( "user-picker-all" ) ;
82
- await uiHelper . clickLink ( "Backstage Showcase " ) ;
83
+ await uiHelper . clickLink ( "Red Hat Developer Hub " ) ;
83
84
await validateCatalogLogEvent (
84
85
"CatalogEntityAncestryFetch" ,
85
- "Fetch attempt for entity ancestor of entity component:default/backstage-showcase " ,
86
+ "Fetch attempt for entity ancestor of entity component:default/red-hat-developer-hub initiated by user:development/guest " ,
86
87
"GET" ,
87
- "/api/catalog/entities/by-name/component/default/backstage-showcase /ancestry" ,
88
+ "/api/catalog/entities/by-name/component/default/red-hat-developer-hub /ancestry" ,
88
89
) ;
89
90
} ) ;
90
91
0 commit comments