mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix viewer script export insights and diagram remove requires svg fix new data adapter path dist working with diagrams commented out change use of minimatch fix unused import remove unused component fix test new import moment es6 and throw rxjs fix import analytics test fix imports rxjs new pacakging * fix after rebase * fix test upload services * exclude temporarily button event test * restore commented demo shell files * fix process spy
125 lines
4.8 KiB
TypeScript
125 lines
4.8 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 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 { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { DiagramsModule } from '../../diagram/diagram.module';
|
|
import { AnalyticsReportHeatMapComponent } from '../components/analytics-report-heat-map.component';
|
|
import { AnalyticsProcessModule } from '../analytics-process.module';
|
|
import { MaterialModule } from '../../material.module';
|
|
|
|
declare let jasmine: any;
|
|
|
|
describe('AnalyticsReportHeatMapComponent', () => {
|
|
|
|
let component: AnalyticsReportHeatMapComponent;
|
|
let fixture: ComponentFixture<AnalyticsReportHeatMapComponent>;
|
|
let element: HTMLElement;
|
|
|
|
let totalCountPerc: any = { 'sid-fake-id': 0, 'fake-start-event': 100 };
|
|
let totalTimePerc: any = { 'sid-fake-id': 10, 'fake-start-event': 30 };
|
|
let avgTimePercentages: any = { 'sid-fake-id': 5, 'fake-start-event': 50 };
|
|
|
|
let totalCountValues: any = { 'sid-fake-id': 2, 'fake-start-event': 3 };
|
|
let totalTimeValues: any = { 'sid-fake-id': 1, 'fake-start-event': 4 };
|
|
let avgTimeValues: any = { 'sid-fake-id': 4, 'fake-start-event': 5 };
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
DiagramsModule,
|
|
MaterialModule,
|
|
AnalyticsProcessModule
|
|
]
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AnalyticsReportHeatMapComponent);
|
|
component = fixture.componentInstance;
|
|
element = fixture.nativeElement;
|
|
|
|
component.report = {
|
|
totalCountsPercentages: totalCountPerc,
|
|
totalCountValues: totalCountValues,
|
|
totalTimePercentages: totalTimePerc,
|
|
totalTimeValues: totalTimeValues,
|
|
avgTimeValues: avgTimeValues,
|
|
avgTimePercentages: avgTimePercentages
|
|
};
|
|
});
|
|
|
|
describe('Rendering tests: Heat Map', () => {
|
|
|
|
beforeEach(() => {
|
|
jasmine.Ajax.install();
|
|
});
|
|
|
|
afterEach(() => {
|
|
jasmine.Ajax.uninstall();
|
|
});
|
|
|
|
it('should render the dropdown with the metric options', async(() => {
|
|
component.report = { totalCountsPercentages: { 'sid-fake-id': 10, 'fake-start-event': 30 } };
|
|
|
|
component.success.subscribe(() => {
|
|
fixture.whenStable().then(() => {
|
|
let dropDown: any = element.querySelector('#select-metrics');
|
|
expect(dropDown).toBeDefined();
|
|
expect(dropDown.length).toEqual(3);
|
|
expect(dropDown[0].innerHTML).toEqual('Number of times a step is executed');
|
|
expect(dropDown[1].innerHTML).toEqual('Total time spent in a process step');
|
|
expect(dropDown[2].innerHTML).toEqual('Average time spent in a process step');
|
|
});
|
|
});
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it('should return false when no metrics are defined in the report', async(() => {
|
|
component.report = {};
|
|
expect(component.hasMetric()).toBeFalsy();
|
|
}));
|
|
|
|
it('should return true when the metrics are defined in the report', async(() => {
|
|
expect(component.hasMetric()).toBeTruthy();
|
|
}));
|
|
|
|
it('should change the currentmetric width totalCount', async(() => {
|
|
let field = { value: 'totalCount' };
|
|
component.onMetricChanges(field);
|
|
expect(component.currentMetric).toEqual(totalCountValues);
|
|
expect(component.currentMetricColors).toEqual(totalCountPerc);
|
|
}));
|
|
|
|
it('should change the currentmetric width totalTime', async(() => {
|
|
let field = { value: 'totalTime' };
|
|
component.onMetricChanges(field);
|
|
expect(component.currentMetric).toEqual(totalTimeValues);
|
|
expect(component.currentMetricColors).toEqual(totalTimePerc);
|
|
}));
|
|
|
|
it('should change the currentmetric width avgTime', async(() => {
|
|
let field = { value: 'avgTime' };
|
|
component.onMetricChanges(field);
|
|
expect(component.currentMetric).toEqual(avgTimeValues);
|
|
expect(component.currentMetricColors).toEqual(avgTimePercentages);
|
|
}));
|
|
|
|
});
|
|
|
|
});
|