[management] Extends integration and peers manager (#4450)

This commit is contained in:
Bethuel Mmbaga
2025-09-06 13:13:49 +03:00
committed by GitHub
parent ad8fcda67b
commit 5113c70943
12 changed files with 167 additions and 8 deletions

View File

@@ -86,7 +86,9 @@ func startManagement(t *testing.T) (*grpc.Server, net.Listener) {
AnyTimes()
peersManger := peers.NewManager(store, permissionsManagerMock)
ia, _ := integrations.NewIntegratedValidator(context.Background(), peersManger, eventStore)
settingsManagerMock := settings.NewMockManager(ctrl)
ia, _ := integrations.NewIntegratedValidator(context.Background(), peersManger, settingsManagerMock, eventStore)
metrics, err := telemetry.NewDefaultAppMetrics(context.Background())
require.NoError(t, err)