diff --git a/src/app/access-control/group-registry/groups-registry.component.spec.ts b/src/app/access-control/group-registry/groups-registry.component.spec.ts index df8208f247..6a6b9b4dab 100644 --- a/src/app/access-control/group-registry/groups-registry.component.spec.ts +++ b/src/app/access-control/group-registry/groups-registry.component.spec.ts @@ -3,10 +3,10 @@ import { NO_ERRORS_SCHEMA } from '@angular/core'; import { ComponentFixture, fakeAsync, inject, TestBed, tick, waitForAsync } from '@angular/core/testing'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule, By } from '@angular/platform-browser'; -import { Router } from '@angular/router'; +import { ActivatedRoute, Router } from '@angular/router'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { TranslateLoader, TranslateModule } from '@ngx-translate/core'; -import { Observable, of as observableOf } from 'rxjs'; +import { Observable, of, of as observableOf } from 'rxjs'; import { DSpaceObjectDataService } from '../../core/data/dspace-object-data.service'; import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service'; import { buildPaginatedList, PaginatedList } from '../../core/data/paginated-list.model'; @@ -34,6 +34,9 @@ import { FeatureID } from '../../core/data/feature-authorization/feature-id'; import { NoContent } from '../../core/shared/NoContent.model'; import { DSONameService } from '../../core/breadcrumbs/dso-name.service'; import { DSONameServiceMock, UNDEFINED_NAME } from '../../shared/mocks/dso-name.service.mock'; +import { ActivatedRouteStub } from '../../shared/testing/active-router.stub'; +import { provideMockStore } from '@ngrx/store/testing'; +import { ConfigurationDataService } from '../../core/data/configuration-data.service'; describe('GroupsRegistryComponent', () => { let component: GroupsRegistryComponent; @@ -42,6 +45,7 @@ describe('GroupsRegistryComponent', () => { let groupsDataServiceStub: any; let dsoDataServiceStub: any; let authorizationService: AuthorizationDataService; + let configurationDataService: jasmine.SpyObj; let mockGroups; let mockEPeople; @@ -159,6 +163,10 @@ describe('GroupsRegistryComponent', () => { } }; + configurationDataService = jasmine.createSpyObj('ConfigurationDataService', { + findByPropertyName: of({ payload: { value: 'test' } }), + }); + authorizationService = jasmine.createSpyObj('authorizationService', ['isAuthorized']); setIsAuthorized(true, true); paginationService = new PaginationServiceStub(); @@ -176,11 +184,14 @@ describe('GroupsRegistryComponent', () => { { provide: GroupDataService, useValue: groupsDataServiceStub }, { provide: DSpaceObjectDataService, useValue: dsoDataServiceStub }, { provide: NotificationsService, useValue: new NotificationsServiceStub() }, + { provide: ConfigurationDataService, useValue: configurationDataService }, { provide: RouteService, useValue: routeServiceStub }, + { provide: ActivatedRoute, useValue: new ActivatedRouteStub() }, { provide: Router, useValue: new RouterMock() }, { provide: AuthorizationDataService, useValue: authorizationService }, { provide: PaginationService, useValue: paginationService }, - { provide: RequestService, useValue: jasmine.createSpyObj('requestService', ['removeByHrefSubstring']) } + { provide: RequestService, useValue: jasmine.createSpyObj('requestService', ['removeByHrefSubstring']) }, + provideMockStore(), ], schemas: [NO_ERRORS_SCHEMA] }).compileComponents(); diff --git a/src/app/access-control/group-registry/groups-registry.component.ts b/src/app/access-control/group-registry/groups-registry.component.ts index d06c69fa64..1a483c5233 100644 --- a/src/app/access-control/group-registry/groups-registry.component.ts +++ b/src/app/access-control/group-registry/groups-registry.component.ts @@ -39,7 +39,7 @@ import { PaginationService } from '../../core/pagination/pagination.service'; import { followLink } from '../../shared/utils/follow-link-config.model'; import { DSONameService } from '../../core/breadcrumbs/dso-name.service'; import { ThemedLoadingComponent } from '../../shared/loading/themed-loading.component'; -import { AsyncPipe, NgIf, NgSwitch, NgSwitchCase } from '@angular/common'; +import { AsyncPipe, NgForOf, NgIf, NgSwitch, NgSwitchCase } from '@angular/common'; import { PaginationComponent } from '../../shared/pagination/pagination.component'; import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; @@ -56,7 +56,8 @@ import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; PaginationComponent, NgSwitch, NgSwitchCase, - NgbTooltipModule + NgbTooltipModule, + NgForOf ], standalone: true })