Summary: * Removed Flow compilation step * Removed all `flow` annotations * Removed all FlowFixMe's * Removed flow typings for Flipper * Left flow transpilation (stripping) in babel, in case there is any external user using Flow in his plugin * Left `eslint-plugin-flowtype` dependencies, as `eslint-config-fbjs` requires it Reviewed By: passy Differential Revision: D24755545 fbshipit-source-id: 9c0a7910657fd1cba88294e041bf2bfdf7b565bf
321 lines
7.9 KiB
TypeScript
321 lines
7.9 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import FrescoPlugin from '../index';
|
|
import {PersistedState, ImageEventWithId} from '../index';
|
|
import {AndroidCloseableReferenceLeakEvent} from '../api';
|
|
import {MetricType, Notification} from 'flipper';
|
|
import {ImagesMap} from '../ImagePool';
|
|
|
|
type ScanDisplayTime = {[scan_number: number]: number};
|
|
|
|
function mockPersistedState(
|
|
imageSizes: Array<{
|
|
width: number;
|
|
height: number;
|
|
}> = [],
|
|
viewport: {
|
|
width: number;
|
|
height: number;
|
|
} = {width: 150, height: 150},
|
|
): PersistedState {
|
|
const scanDisplayTime: ScanDisplayTime = {};
|
|
scanDisplayTime[1] = 3;
|
|
const events: Array<ImageEventWithId> = [
|
|
{
|
|
imageIds: [...Array(imageSizes.length).keys()].map(String),
|
|
eventId: 0,
|
|
attribution: [],
|
|
startTime: 1,
|
|
endTime: 2,
|
|
source: 'source',
|
|
coldStart: true,
|
|
viewport: {...viewport, scanDisplayTime},
|
|
},
|
|
];
|
|
|
|
const imagesMap = imageSizes.reduce((acc, val, index) => {
|
|
acc[index] = {
|
|
imageId: String(index),
|
|
width: val.width,
|
|
height: val.height,
|
|
sizeBytes: 10,
|
|
data: 'undefined',
|
|
};
|
|
return acc;
|
|
}, {} as ImagesMap);
|
|
|
|
return {
|
|
surfaceList: new Set(),
|
|
images: [],
|
|
events,
|
|
imagesMap,
|
|
closeableReferenceLeaks: [],
|
|
isLeakTrackingEnabled: false,
|
|
nextEventId: 0,
|
|
showDiskImages: false,
|
|
};
|
|
}
|
|
|
|
test('the metric reducer for the input having regression', () => {
|
|
const persistedState = mockPersistedState(
|
|
[
|
|
{
|
|
width: 150,
|
|
height: 150,
|
|
},
|
|
{
|
|
width: 150,
|
|
height: 150,
|
|
},
|
|
{
|
|
width: 150,
|
|
height: 150,
|
|
},
|
|
],
|
|
{
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
);
|
|
expect(FrescoPlugin.metricsReducer).toBeDefined();
|
|
const metrics = FrescoPlugin.metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({
|
|
WASTED_BYTES: 37500,
|
|
});
|
|
});
|
|
|
|
test('the metric reducer for the input having no regression', () => {
|
|
const persistedState = mockPersistedState(
|
|
[
|
|
{
|
|
width: 50,
|
|
height: 10,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
],
|
|
{
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
);
|
|
const metricsReducer = FrescoPlugin.metricsReducer;
|
|
expect(metricsReducer).toBeDefined();
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({
|
|
WASTED_BYTES: 0,
|
|
});
|
|
});
|
|
|
|
test('the metric reducer for the default persisted state', () => {
|
|
const metricsReducer = FrescoPlugin.metricsReducer;
|
|
expect(metricsReducer).toBeDefined();
|
|
const metrics = metricsReducer(FrescoPlugin.defaultPersistedState);
|
|
return expect(metrics).resolves.toMatchObject({WASTED_BYTES: 0});
|
|
});
|
|
|
|
test('the metric reducer with the events data but with no imageData in imagesMap ', () => {
|
|
const persistedState = mockPersistedState(
|
|
[
|
|
{
|
|
width: 50,
|
|
height: 10,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
],
|
|
{
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
);
|
|
persistedState.imagesMap = {};
|
|
const metricsReducer = FrescoPlugin.metricsReducer;
|
|
expect(metricsReducer).toBeDefined();
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({WASTED_BYTES: 0});
|
|
});
|
|
|
|
test('the metric reducer with the no viewPort data in events', () => {
|
|
const persistedState = mockPersistedState(
|
|
[
|
|
{
|
|
width: 50,
|
|
height: 10,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
{
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
],
|
|
{
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
);
|
|
delete persistedState.events[0].viewport;
|
|
const metricsReducer = FrescoPlugin.metricsReducer;
|
|
expect(metricsReducer).toBeDefined();
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({WASTED_BYTES: 0});
|
|
});
|
|
test('the metric reducer with the multiple events', () => {
|
|
const scanDisplayTime: ScanDisplayTime = {};
|
|
scanDisplayTime[1] = 3;
|
|
const events: Array<ImageEventWithId> = [
|
|
{
|
|
imageIds: ['0', '1'],
|
|
eventId: 0,
|
|
attribution: [],
|
|
startTime: 1,
|
|
endTime: 2,
|
|
source: 'source',
|
|
coldStart: true,
|
|
viewport: {width: 100, height: 100, scanDisplayTime},
|
|
},
|
|
{
|
|
imageIds: ['2', '3'],
|
|
eventId: 1,
|
|
attribution: [],
|
|
startTime: 1,
|
|
endTime: 2,
|
|
source: 'source',
|
|
coldStart: true,
|
|
viewport: {width: 50, height: 50, scanDisplayTime},
|
|
},
|
|
];
|
|
const imageSizes = [
|
|
{
|
|
width: 150,
|
|
height: 150,
|
|
},
|
|
{
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
{
|
|
width: 250,
|
|
height: 250,
|
|
},
|
|
{
|
|
width: 300,
|
|
height: 300,
|
|
},
|
|
];
|
|
const imagesMap = imageSizes.reduce((acc, val, index) => {
|
|
acc[index] = {
|
|
imageId: String(index),
|
|
width: val.width,
|
|
height: val.height,
|
|
sizeBytes: 10,
|
|
data: 'undefined',
|
|
};
|
|
return acc;
|
|
}, {} as ImagesMap);
|
|
const persistedState = {
|
|
surfaceList: new Set<string>(),
|
|
images: [],
|
|
nextEventId: 0,
|
|
events,
|
|
imagesMap,
|
|
closeableReferenceLeaks: [],
|
|
isLeakTrackingEnabled: true,
|
|
showDiskImages: false,
|
|
};
|
|
const metricsReducer = FrescoPlugin.metricsReducer;
|
|
expect(metricsReducer).toBeDefined();
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({WASTED_BYTES: 160000});
|
|
});
|
|
|
|
test('closeable reference metrics on empty state', () => {
|
|
const metricsReducer: (
|
|
persistedState: PersistedState,
|
|
) => Promise<MetricType> = FrescoPlugin.metricsReducer;
|
|
const persistedState = mockPersistedState();
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({CLOSEABLE_REFERENCE_LEAKS: 0});
|
|
});
|
|
|
|
test('closeable reference metrics on input', () => {
|
|
const metricsReducer: (
|
|
persistedState: PersistedState,
|
|
) => Promise<MetricType> = FrescoPlugin.metricsReducer;
|
|
const closeableReferenceLeaks: Array<AndroidCloseableReferenceLeakEvent> = [
|
|
{
|
|
identityHashCode: 'deadbeef',
|
|
className: 'com.facebook.imagepipeline.memory.NativeMemoryChunk',
|
|
stacktrace: null,
|
|
},
|
|
{
|
|
identityHashCode: 'f4c3b00c',
|
|
className: 'com.facebook.flipper.SomeMemoryAbstraction',
|
|
stacktrace: null,
|
|
},
|
|
];
|
|
const persistedState = {
|
|
...mockPersistedState(),
|
|
closeableReferenceLeaks,
|
|
};
|
|
const metrics = metricsReducer(persistedState);
|
|
return expect(metrics).resolves.toMatchObject({CLOSEABLE_REFERENCE_LEAKS: 2});
|
|
});
|
|
|
|
test('notifications for leaks', () => {
|
|
const notificationReducer: (
|
|
persistedState: PersistedState,
|
|
) => Array<Notification> = FrescoPlugin.getActiveNotifications;
|
|
const closeableReferenceLeaks: Array<AndroidCloseableReferenceLeakEvent> = [
|
|
{
|
|
identityHashCode: 'deadbeef',
|
|
className: 'com.facebook.imagepipeline.memory.NativeMemoryChunk',
|
|
stacktrace: null,
|
|
},
|
|
{
|
|
identityHashCode: 'f4c3b00c',
|
|
className: 'com.facebook.flipper.SomeMemoryAbstraction',
|
|
stacktrace: null,
|
|
},
|
|
];
|
|
const persistedStateWithoutTracking = {
|
|
...mockPersistedState(),
|
|
closeableReferenceLeaks,
|
|
isLeakTrackingEnabled: false,
|
|
};
|
|
const emptyNotifs = notificationReducer(persistedStateWithoutTracking);
|
|
expect(emptyNotifs).toHaveLength(0);
|
|
|
|
const persistedStateWithTracking = {
|
|
...mockPersistedState(),
|
|
closeableReferenceLeaks,
|
|
isLeakTrackingEnabled: true,
|
|
};
|
|
const notifs = notificationReducer(persistedStateWithTracking);
|
|
expect(notifs).toHaveLength(2);
|
|
expect(notifs[0].message).toMatchSnapshot();
|
|
expect(notifs[1].title).toContain('SomeMemoryAbstraction');
|
|
});
|