mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-09-10 14:11:17 +00:00
157 lines
4.6 KiB
TypeScript
157 lines
4.6 KiB
TypeScript
/*!
|
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Alfresco Example Content Application
|
|
*
|
|
* 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
|
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { CustomNameColumnComponent } from './name-column.component';
|
|
import { Actions } from '@ngrx/effects';
|
|
import { StoreModule } from '@ngrx/store';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { By } from '@angular/platform-browser';
|
|
import { AuthModule } from '@alfresco/adf-core';
|
|
import { Component, Input } from '@angular/core';
|
|
import { NodeEntry } from '@alfresco/js-api';
|
|
|
|
@Component({
|
|
selector: 'aca-datatable-cell-badges',
|
|
standalone: true,
|
|
template: ''
|
|
})
|
|
class MockDatatableCellBadgesComponent {
|
|
@Input() node: NodeEntry;
|
|
}
|
|
|
|
describe('CustomNameColumnComponent', () => {
|
|
let fixture: ComponentFixture<CustomNameColumnComponent>;
|
|
let component: CustomNameColumnComponent;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
TranslateModule.forRoot(),
|
|
CustomNameColumnComponent,
|
|
MockDatatableCellBadgesComponent,
|
|
AuthModule.forRoot(),
|
|
StoreModule.forRoot(
|
|
{ app: (state) => state },
|
|
{
|
|
initialState: {
|
|
app: {
|
|
selection: {
|
|
nodes: [],
|
|
libraries: [],
|
|
isEmpty: true,
|
|
count: 0
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)
|
|
],
|
|
providers: [Actions, provideHttpClient(withInterceptorsFromDi())]
|
|
});
|
|
|
|
fixture = TestBed.createComponent(CustomNameColumnComponent);
|
|
component = fixture.componentInstance;
|
|
});
|
|
|
|
it('should not render lock element if file is not locked', () => {
|
|
component.context = {
|
|
row: {
|
|
node: {
|
|
entry: {
|
|
isFile: true,
|
|
id: 'nodeId'
|
|
}
|
|
},
|
|
getValue: (key: string) => key
|
|
}
|
|
};
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement.querySelector('aca-locked-by')).toBe(null);
|
|
});
|
|
|
|
it('should not render lock element if node is not a file', () => {
|
|
component.context = {
|
|
row: {
|
|
node: {
|
|
entry: {
|
|
isFile: false,
|
|
id: 'nodeId'
|
|
}
|
|
},
|
|
getValue: (key: string) => key
|
|
}
|
|
};
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement.querySelector('aca-locked-by')).toBe(null);
|
|
});
|
|
|
|
it('should render lock element if file is locked', () => {
|
|
component.context = {
|
|
row: {
|
|
node: {
|
|
entry: {
|
|
isFile: true,
|
|
id: 'nodeId',
|
|
properties: { 'cm:lockType': 'WRITE_LOCK' }
|
|
}
|
|
},
|
|
getValue: (key: string) => key
|
|
}
|
|
};
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement.querySelector('aca-locked-by')).not.toBe(null);
|
|
});
|
|
|
|
it('should call parent component onClick method', () => {
|
|
const event = new MouseEvent('click');
|
|
spyOn(component, 'onClick');
|
|
|
|
component.onLinkClick(event);
|
|
|
|
expect(component.onClick).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should prevent event propagation', () => {
|
|
const event = new MouseEvent('click');
|
|
spyOn(event, 'stopPropagation');
|
|
|
|
component.onLinkClick(event);
|
|
expect(event.stopPropagation).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should pass node to badge component', () => {
|
|
const badgeElement = fixture.debugElement.query(By.css('aca-datatable-cell-badges'));
|
|
expect(badgeElement).not.toBe(null);
|
|
expect(badgeElement.componentInstance.node).toBe(component.node);
|
|
});
|
|
});
|