test(actions): phase 6 add parity and behavioural service hardening checks

This commit is contained in:
2026-03-13 10:11:33 +00:00
parent a35f2990c6
commit b5ae6c271f
9 changed files with 461 additions and 178 deletions
+7 -25
View File
@@ -1,6 +1,7 @@
import axios from "axios";
import { BASE_URL } from "../core/env";
import { consoleLogger } from "../core/logger";
import { logAndReturnResponse } from "./httpServiceUtils";
export const getCaseMessage = (searchString) => {
return axios
@@ -8,10 +9,7 @@ export const getCaseMessage = (searchString) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getIncidentbyID = (searchString) => {
@@ -24,10 +22,7 @@ export const getIncidentbyID = (searchString) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getIsPublishedbyID = (searchString) => {
@@ -38,10 +33,7 @@ export const getIsPublishedbyID = (searchString) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getPartSavedAppeal = (searchString) => {
@@ -54,10 +46,7 @@ export const getPartSavedAppeal = (searchString) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getSIPSEvents = async (caseid) => {
@@ -66,10 +55,7 @@ export const getSIPSEvents = async (caseid) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getSIPSMedia = async (caseid) => {
@@ -78,10 +64,7 @@ export const getSIPSMedia = async (caseid) => {
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
.catch(logAndReturnResponse);
};
export const getAppealID = (
@@ -342,7 +325,6 @@ export const getPortalModuleDetails = async (appealType, caseReference) => {
const res = await axios(config);
return res.data;
} catch (error) {
console.log("error case ref:", caseReference);
consoleLogger(error);
}
};