show crash notifications only for a particular device

Summary:
Before this diff we used to show crash notifications for all kind of crashes. This diff adds the check, which makes sure that only the crashes of a selected device is shown

Also added tests and updated few tests

Reviewed By: danielbuechele

Differential Revision: D13518019

fbshipit-source-id: 6d640d078a43480274242a5d86f2d135d875d630
This commit is contained in:
Pritesh Nandgaonkar
2018-12-20 05:17:10 -08:00
committed by Facebook Github Bot
parent bb7c8a152a
commit 9748aba878
2 changed files with 97 additions and 5 deletions

View File

@@ -65,10 +65,10 @@ window.addEventListener('beforeunload', () => {
});
export function parseCrashLog(content: string): Crash {
const regex = /Exception Type: *[aA-zZ0-9]*/;
const regex = /Exception Type: *[\w]*/;
const arr = regex.exec(content);
const exceptionString = arr ? arr[0] : '';
const exceptionRegex = /[aA-zZ0-9]*$/;
const exceptionRegex = /[\w]*$/;
const tmp = exceptionRegex.exec(exceptionString);
const exception =
tmp && tmp[0].length ? tmp[0] : 'Cannot figure out the cause';
@@ -79,6 +79,21 @@ export function parseCrashLog(content: string): Crash {
};
return crash;
}
export function parsePath(content: string): ?string {
const regex = /Path: *[\w\-\/\.\t\ \_\%]*\n/;
const arr = regex.exec(content);
if (!arr || arr.length <= 0) {
return null;
}
const pathString = arr[0];
const pathRegex = /[\w\-\/\.\t\ \_\%]*\n/;
const tmp = pathRegex.exec(pathString);
if (!tmp || tmp.length == 0) {
return null;
}
const path = tmp[0];
return path.trim();
}
export function getPersistedState(
pluginKey: string,
@@ -119,7 +134,28 @@ export function getNewPersisitedStateFromCrashLog(
return newPluginState;
}
export function shouldShowCrashNotification(
baseDevice: ?BaseDevice,
content: string,
): boolean {
const appPath = parsePath(content);
const serial: string = baseDevice?.serial || 'unknown';
if (!appPath || !appPath.includes(serial)) {
// Do not show notifications for the app which are not the selected one
return false;
}
return true;
}
function parseCrashLogAndUpdateState(store: Store, content: string) {
if (
!shouldShowCrashNotification(
store.getState().connections.selectedDevice,
content,
)
) {
return;
}
const pluginID = 'CrashReporter';
const pluginKey = getPluginKey(
store.getState().connections.selectedDevice,