mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
* upgrade prettier * noImplicitAny rule * fix type * update tsconfig * upgrade to 150 print width
152 lines
4.9 KiB
TypeScript
152 lines
4.9 KiB
TypeScript
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2020 Alfresco Software Limited
|
|
*
|
|
* This file is part of the Alfresco Example Content Application.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { TestBed, ComponentFixture } from '@angular/core/testing';
|
|
import { PageComponent } from './page.component';
|
|
import { ReloadDocumentListAction, SetSelectedNodesAction, SetInfoDrawerStateAction, AppState, AppStore } from '@alfresco/aca-shared/store';
|
|
import { AppExtensionService } from '@alfresco/aca-shared';
|
|
import { MinimalNodeEntity } from '@alfresco/js-api';
|
|
import { ContentManagementService } from '../services/content-management.service';
|
|
import { EffectsModule } from '@ngrx/effects';
|
|
import { ViewerEffects } from '../store/effects';
|
|
import { Store } from '@ngrx/store';
|
|
import { AppTestingModule } from '../testing/app-testing.module';
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'aca-test',
|
|
template: ''
|
|
})
|
|
class TestComponent extends PageComponent {
|
|
node: any;
|
|
|
|
constructor(store: Store<AppStore>, extensions: AppExtensionService, content: ContentManagementService) {
|
|
super(store, extensions, content);
|
|
}
|
|
}
|
|
|
|
describe('PageComponent', () => {
|
|
let component: TestComponent;
|
|
let store: Store<AppState>;
|
|
let fixture: ComponentFixture<TestComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [AppTestingModule, EffectsModule.forRoot([ViewerEffects])],
|
|
declarations: [TestComponent],
|
|
providers: [ContentManagementService, AppExtensionService]
|
|
});
|
|
|
|
store = TestBed.inject(Store);
|
|
fixture = TestBed.createComponent(TestComponent);
|
|
component = fixture.componentInstance;
|
|
});
|
|
|
|
describe('getParentNodeId()', () => {
|
|
it('returns parent node id when node is set', () => {
|
|
component.node = { id: 'node-id' };
|
|
|
|
expect(component.getParentNodeId()).toBe('node-id');
|
|
});
|
|
|
|
it('returns null when node is not set', () => {
|
|
component.node = null;
|
|
|
|
expect(component.getParentNodeId()).toBe(null);
|
|
});
|
|
});
|
|
|
|
describe('Info Drawer state', () => {
|
|
const locationHref = location.href;
|
|
|
|
afterEach(() => {
|
|
window.history.pushState({}, null, locationHref);
|
|
});
|
|
|
|
it('should open info drawer on action event', (done) => {
|
|
window.history.pushState({}, null, `${locationHref}#test`);
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
|
component.infoDrawerOpened$.subscribe((state) => {
|
|
expect(state).toBe(true);
|
|
done();
|
|
});
|
|
});
|
|
|
|
store.dispatch(new SetInfoDrawerStateAction(true));
|
|
});
|
|
|
|
it('should not open info drawer if viewer outlet is active', (done) => {
|
|
window.history.pushState({}, null, `${locationHref}#test(viewer:view)`);
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
|
component.infoDrawerOpened$.subscribe((state) => {
|
|
expect(state).toBe(false);
|
|
done();
|
|
});
|
|
});
|
|
|
|
store.dispatch(new SetInfoDrawerStateAction(true));
|
|
});
|
|
});
|
|
|
|
describe('Reload', () => {
|
|
const locationHref = location.href;
|
|
|
|
afterEach(() => {
|
|
window.history.pushState({}, null, locationHref);
|
|
});
|
|
|
|
it('should not reload if url contains viewer outlet', () => {
|
|
window.history.pushState({}, null, `${locationHref}#test(viewer:view)`);
|
|
spyOn(store, 'dispatch');
|
|
|
|
component.reload();
|
|
expect(store.dispatch).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should reload if url does not contain viewer outlet', () => {
|
|
spyOn(store, 'dispatch');
|
|
|
|
component.reload();
|
|
expect(store.dispatch).toHaveBeenCalledWith(new ReloadDocumentListAction());
|
|
});
|
|
|
|
it('should set selection after reload if node is passed', () => {
|
|
const node = {
|
|
entry: {
|
|
id: 'node-id'
|
|
}
|
|
} as MinimalNodeEntity;
|
|
spyOn(store, 'dispatch');
|
|
|
|
component.reload(node);
|
|
expect(store.dispatch['calls'].mostRecent().args[0]).toEqual(new SetSelectedNodesAction([node]));
|
|
});
|
|
});
|
|
});
|