mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* remove useless module * upgrade to angular 8 * upgrade material to v8 * upgrade adf libs * migrate demo shell to v8 * upgrade to angular 9 * upgrade material to v9 * remove hammer * upgrade nx * upgrade datetime picker * upgrade flex layout * update core api * remove entry components * code fixes * upgrade testbed usage * code fixes * remove unnecessary core-js from tests * upgrade CLI * ts config fixes * fix builds * fix testing config * compile fixes * fix demo shell dev setup * fix core tests * fix card view import * upgrade nx * disable smart builds for now * remove fdescribe * restore smart builds * fix issues * unify tsconfigs and fix newly found issues * fix configuration and cleanup package scripts * improved production build from the same config * use ADF libs directly instead of node_modules * disable smart build * single app configuration (angular) * fix core build * fix build scripts * lint fixes * fix linting setup * fix linting rules * various fixes * disable affected libs for unit tests * cleanup insights package.json * simplify smart-build * fix content tests * fix tests * test fixes * fix tests * fix test * fix tests * disable AppExtensionsModule (monaco example) * remove monaco extension module * upgrade bundle check rules * fix insights tests and karma config * fix protractor config * e2e workaround * upgrade puppeteer and split linting and build * reusable resources config * update protractor config * fix after rebase * fix protractor config * fix e2e tsconfig * update e2e setup * Save demoshell artifact on S3 and remove travis cache * Push the libs on S3 and fetch before releasing it * Add deps * Add dependencies among libs and run only affected unit test and build * fix the travis stage name * fix after renaming dev to demoshell * force the order of the projects * remove unused dependencies * fix content e2e script * exit codes fix * add extra exit codes to core e2e * postinstall hook and package cleanup * cleanup packages * remove deprecated code and dependency on router * improve bundle analyzer script * minor code fixes * update spec * fix code after rebase * upgrade protractor after rebase * fix e2e mapping lib * Update tsconfig.e2e.json * update e2e tsconfig * fix angular config * fix protractor runs * cache dist folder for libs * update material selectors for dropdowns * selector fixes * remove duplicated e2e that have unit tests already * fix login selector * fix e2e * fix test * fix import issues * fix selector * cleanup old monaco extension files * cleanup demo shell login * add protractor max retries * disable customisations of protractor * fix login validation * fix after rebase * fix after rebase, disable latest versions of libs * Hide the report tab and rollback the localstorage * rename protractor config back to js * restore lint as part of build * cleanup code * do not copy anything to node_modules on dist test * fix unit tests * config fixes * fix code * fix code after rebase * fix tests * remove existing words from spellcheck * remove useless directive decorators * update package.json after rebase * add js-api back * code fixes * add missing export * update configs * fix code * try fix the sso login test * fix * remove puppeteer unit * fix e2e script * fix * make provider easy * fix routes module before upgrade * fix unit tests * upgrade angular cli * upgrade to angular 10 Co-authored-by: maurizio vitale <maurizio.vitale@alfresco.com> Co-authored-by: Eugenio Romano <eugenio.romano@alfresco.com> Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
355 lines
12 KiB
TypeScript
355 lines
12 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { SimpleChange } from '@angular/core';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { ContentService } from '../../services/content.service';
|
|
|
|
import { ImgViewerComponent } from './img-viewer.component';
|
|
import { setupTestBed } from '../../testing/setup-test-bed';
|
|
import { AppConfigService } from '@alfresco/adf-core';
|
|
import { CoreTestingModule } from '../../testing/core.testing.module';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
describe('Test Img viewer component ', () => {
|
|
|
|
let component: ImgViewerComponent;
|
|
let service: ContentService;
|
|
let fixture: ComponentFixture<ImgViewerComponent>;
|
|
let element: HTMLElement;
|
|
|
|
function createFakeBlob() {
|
|
const data = atob('iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==');
|
|
return new Blob([data], { type: 'image/png' });
|
|
}
|
|
|
|
setupTestBed({
|
|
imports: [
|
|
TranslateModule.forRoot(),
|
|
CoreTestingModule
|
|
]
|
|
});
|
|
|
|
describe('Url', () => {
|
|
|
|
beforeEach(() => {
|
|
service = TestBed.inject(ContentService);
|
|
fixture = TestBed.createComponent(ImgViewerComponent);
|
|
|
|
element = fixture.nativeElement;
|
|
component = fixture.componentInstance;
|
|
component.urlFile = 'fake-url-file.png';
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display current scale as percent string', () => {
|
|
component.scaleX = 0.5;
|
|
expect(component.currentScaleText).toBe('50%');
|
|
|
|
component.scaleX = 1.0;
|
|
expect(component.currentScaleText).toBe('100%');
|
|
});
|
|
|
|
it('should generate transform settings', () => {
|
|
component.scaleX = 1.0;
|
|
component.scaleY = 2.0;
|
|
component.rotate = 10;
|
|
component.offsetX = 20;
|
|
component.offsetY = 30;
|
|
|
|
fixture.detectChanges();
|
|
|
|
const elementCss: any = element.querySelector('#adf-image-container');
|
|
|
|
expect(elementCss.style.transform).toBe('scale(1, 2) rotate(10deg) translate(20px, 30px)');
|
|
});
|
|
|
|
it('should start drag on mouse down', () => {
|
|
expect(component.isDragged).toBeFalsy();
|
|
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
|
|
expect(component.isDragged).toBeTruthy();
|
|
});
|
|
|
|
it('should prevent default behaviour on mouse down', () => {
|
|
const event = jasmine.createSpyObj('mousedown', ['preventDefault']);
|
|
|
|
component.onMouseDown(event);
|
|
|
|
expect(event.preventDefault).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should prevent default mouse move during drag', () => {
|
|
const event = jasmine.createSpyObj('mousemove', ['preventDefault']);
|
|
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
component.onMouseMove(event);
|
|
|
|
expect(event.preventDefault).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should not prevent default mouse move if not dragged', () => {
|
|
const event = jasmine.createSpyObj('mousemove', ['preventDefault']);
|
|
|
|
component.onMouseMove(event);
|
|
|
|
expect(component.isDragged).toBeFalsy();
|
|
expect(event.preventDefault).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should prevent default mouse up during drag end', () => {
|
|
const event = jasmine.createSpyObj('mouseup', ['preventDefault']);
|
|
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
expect(component.isDragged).toBeTruthy();
|
|
|
|
component.onMouseUp(event);
|
|
expect(event.preventDefault).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should stop drag on mouse up', () => {
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
expect(component.isDragged).toBeTruthy();
|
|
|
|
component.onMouseUp(<any> new CustomEvent('mouseup'));
|
|
expect(component.isDragged).toBeFalsy();
|
|
});
|
|
|
|
it('should stop drag on mouse leave', () => {
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
expect(component.isDragged).toBeTruthy();
|
|
|
|
component.onMouseLeave(<any> new CustomEvent('mouseleave'));
|
|
expect(component.isDragged).toBeFalsy();
|
|
});
|
|
|
|
it('should stop drag on mouse out', () => {
|
|
component.onMouseDown(<any> new CustomEvent('mousedown'));
|
|
expect(component.isDragged).toBeTruthy();
|
|
|
|
component.onMouseOut(<any> new CustomEvent('mouseout'));
|
|
expect(component.isDragged).toBeFalsy();
|
|
});
|
|
|
|
it('should update offset on keydown ArrowDown event', () => {
|
|
const arrowDownEvent = new KeyboardEvent('keydown', { key : 'ArrowDown' });
|
|
component.onKeyDown(arrowDownEvent);
|
|
expect(component.offsetY).toBe(4);
|
|
|
|
component.onKeyDown(arrowDownEvent);
|
|
expect(component.offsetY).toBe(8);
|
|
});
|
|
|
|
it('should update offset on keydown ArrowUp event', () => {
|
|
const arrowUpEvent = new KeyboardEvent('keydown', { key : 'ArrowUp' });
|
|
component.onKeyDown(arrowUpEvent);
|
|
expect(component.offsetY).toBe(-4);
|
|
|
|
component.onKeyDown(arrowUpEvent);
|
|
expect(component.offsetY).toBe(-8);
|
|
});
|
|
|
|
it('should update offset on keydown ArrowLeft event', () => {
|
|
const arrowLeftEvent = new KeyboardEvent('keydown', { key : 'ArrowLeft' });
|
|
component.onKeyDown(arrowLeftEvent);
|
|
expect(component.offsetX).toBe(-4);
|
|
|
|
component.onKeyDown(arrowLeftEvent);
|
|
expect(component.offsetX).toBe(-8);
|
|
});
|
|
|
|
it('should update offset on keydown ArrowRight event', () => {
|
|
const arrowRightEvent = new KeyboardEvent('keydown', { key : 'ArrowRight' });
|
|
component.onKeyDown(arrowRightEvent);
|
|
expect(component.offsetX).toBe(4);
|
|
|
|
component.onKeyDown(arrowRightEvent);
|
|
expect(component.offsetX).toBe(8);
|
|
});
|
|
|
|
it('should update scales on zoom in', () => {
|
|
component.scaleX = 1.0;
|
|
|
|
component.zoomIn();
|
|
expect(component.scaleX).toBe(1.2);
|
|
expect(component.scaleY).toBe(1.2);
|
|
|
|
component.zoomIn();
|
|
expect(component.scaleX).toBe(1.4);
|
|
expect(component.scaleY).toBe(1.4);
|
|
});
|
|
|
|
it('should update scales on zoom out', () => {
|
|
component.scaleX = 1.0;
|
|
|
|
component.zoomOut();
|
|
expect(component.scaleX).toBe(0.8);
|
|
expect(component.scaleY).toBe(0.8);
|
|
|
|
component.zoomOut();
|
|
expect(component.scaleX).toBe(0.6);
|
|
expect(component.scaleY).toBe(0.6);
|
|
});
|
|
|
|
it('should not zoom out past 20%', () => {
|
|
component.scaleX = 0.4;
|
|
|
|
component.zoomOut();
|
|
component.zoomOut();
|
|
component.zoomOut();
|
|
|
|
expect(component.scaleX).toBe(0.2);
|
|
});
|
|
|
|
it('should update angle by 90 degrees on rotate left', () => {
|
|
component.rotate = 0;
|
|
|
|
component.rotateLeft();
|
|
expect(component.rotate).toBe(-90);
|
|
|
|
component.rotateLeft();
|
|
expect(component.rotate).toBe(-180);
|
|
});
|
|
|
|
it('should reset to 0 degrees for full rotate left round', () => {
|
|
component.rotate = -270;
|
|
|
|
component.rotateLeft();
|
|
expect(component.rotate).toBe(0);
|
|
});
|
|
|
|
it('should update angle by 90 degrees on rotate right', () => {
|
|
component.rotate = 0;
|
|
|
|
component.rotateRight();
|
|
expect(component.rotate).toBe(90);
|
|
|
|
component.rotateRight();
|
|
expect(component.rotate).toBe(180);
|
|
});
|
|
|
|
it('should reset to 0 degrees for full rotate right round', () => {
|
|
component.rotate = 270;
|
|
|
|
component.rotateRight();
|
|
expect(component.rotate).toBe(0);
|
|
});
|
|
|
|
it('should reset all image modifications', () => {
|
|
component.rotate = 10;
|
|
component.scaleX = 20;
|
|
component.scaleY = 30;
|
|
component.offsetX = 40;
|
|
component.offsetY = 50;
|
|
|
|
component.reset();
|
|
|
|
expect(component.rotate).toBe(0);
|
|
expect(component.scaleX).toBe(1.0);
|
|
expect(component.scaleY).toBe(1.0);
|
|
expect(component.offsetX).toBe(0);
|
|
expect(component.offsetY).toBe(0);
|
|
});
|
|
});
|
|
|
|
describe('Blob', () => {
|
|
|
|
beforeEach(() => {
|
|
service = TestBed.inject(ContentService);
|
|
fixture = TestBed.createComponent(ImgViewerComponent);
|
|
|
|
element = fixture.nativeElement;
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('If no url or blob are passed should thrown an error', () => {
|
|
const change = new SimpleChange(null, null, true);
|
|
expect(() => {
|
|
component.ngOnChanges({ 'blobFile': change });
|
|
}).toThrow(new Error('Attribute urlFile or blobFile is required'));
|
|
});
|
|
|
|
it('If url is passed should not thrown an error', () => {
|
|
component.urlFile = 'fake-url';
|
|
expect(() => {
|
|
component.ngOnChanges(null);
|
|
}).not.toThrow(new Error('Attribute urlFile or blobFile is required'));
|
|
});
|
|
|
|
it('The file Name should be present in the alt attribute', () => {
|
|
component.nameFile = 'fake-name';
|
|
fixture.detectChanges();
|
|
expect(element.querySelector('#viewer-image').getAttribute('alt')).toEqual('fake-name');
|
|
});
|
|
|
|
it('If blob is passed should not thrown an error', () => {
|
|
const blob = createFakeBlob();
|
|
|
|
spyOn(service, 'createTrustedUrl').and.returnValue('fake-blob-url');
|
|
const change = new SimpleChange(null, blob, true);
|
|
expect(() => {
|
|
component.ngOnChanges({ 'blobFile': change });
|
|
}).not.toThrow(new Error('Attribute urlFile or blobFile is required'));
|
|
expect(component.urlFile).toEqual('fake-blob-url');
|
|
});
|
|
});
|
|
|
|
describe('Zoom customization', () => {
|
|
|
|
beforeEach(() => {
|
|
service = TestBed.inject(ContentService);
|
|
fixture = TestBed.createComponent(ImgViewerComponent);
|
|
|
|
element = fixture.nativeElement;
|
|
component = fixture.componentInstance;
|
|
component.urlFile = 'fake-url-file.png';
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
describe('default value', () => {
|
|
|
|
it('should use default zoom if is not present a custom zoom in the app.config', () => {
|
|
fixture.detectChanges();
|
|
expect(component.scaleX).toBe(1.0);
|
|
expect(component.scaleY).toBe(1.0);
|
|
});
|
|
|
|
});
|
|
|
|
describe('custom value', () => {
|
|
|
|
beforeEach(() => {
|
|
const appConfig: AppConfigService = TestBed.inject(AppConfigService);
|
|
appConfig.config['adf-viewer.image-viewer-scaling'] = 70;
|
|
component.initializeScaling();
|
|
});
|
|
|
|
it('should use the custom zoom if it is present in the app.config', (done) => {
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
|
expect(component.scaleX).toBe(0.70);
|
|
expect(component.scaleY).toBe(0.70);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|