146 lines
5.6 KiB
JavaScript
146 lines
5.6 KiB
JavaScript
const path = require("path");
|
|
const fs = require("fs");
|
|
const Dinero = require("dinero.js");
|
|
const { gql } = require("graphql-request");
|
|
const AxiosLib = require("axios").default;
|
|
const axios = AxiosLib.create();
|
|
const pLimit = require("p-limit");
|
|
const converter = require("json-2-csv");
|
|
|
|
Dinero.globalRoundingMode = "HALF_EVEN";
|
|
const client = require("./server/graphql-client/graphql-client").client;
|
|
require("dotenv").config({
|
|
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
|
|
});
|
|
|
|
async function RunTheTest() {
|
|
const bodyshopids = ["71f8494c-89f0-43e0-8eb2-820b52d723bc"];
|
|
const bearerToken = `Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImU2YWMzNTcyNzY3ZGUyNjE0ZmM1MTA4NjMzMDg3YTQ5MjMzMDNkM2IiLCJ0eXAiOiJKV1QifQ.eyJuYW1lIjoiUGF0cmljayBGaWMgKERFVikiLCJodHRwczovL2hhc3VyYS5pby9qd3QvY2xhaW1zIjp7IngtaGFzdXJhLWRlZmF1bHQtcm9sZSI6InVzZXIiLCJ4LWhhc3VyYS1hbGxvd2VkLXJvbGVzIjpbInVzZXIiXSwieC1oYXN1cmEtdXNlci1pZCI6ImhOSjhBRHB0REhRQkRFcXNCOFFNWVRqaURuZjEifSwiaXNzIjoiaHR0cHM6Ly9zZWN1cmV0b2tlbi5nb29nbGUuY29tL2ltZXgtZGV2IiwiYXVkIjoiaW1leC1kZXYiLCJhdXRoX3RpbWUiOjE3MzAxMzIwMjksInVzZXJfaWQiOiJoTko4QURwdERIUUJERXFzQjhRTVlUamlEbmYxIiwic3ViIjoiaE5KOEFEcHRESFFCREVxc0I4UU1ZVGppRG5mMSIsImlhdCI6MTczMDQwNzg2MSwiZXhwIjoxNzMwNDExNDYxLCJlbWFpbCI6InBhdHJpY2tAaW1leC5kZXYiLCJlbWFpbF92ZXJpZmllZCI6ZmFsc2UsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsiZW1haWwiOlsicGF0cmlja0BpbWV4LmRldiJdfSwic2lnbl9pbl9wcm92aWRlciI6InBhc3N3b3JkIn19.Mxla5zqBNpdzXuAPqCswsLohrV5xm0SNi2Agr0lAU_crNJxVXJdTaKL8B4Av-LMCGjylHqume9WUbZ43fnMxrq4hlWGqeDzGpD7ev76h4omSn0jiMJ0qZmFeR1ejV40KZ6eLrvxEbDLiAebbU2rLp7tZonpspwPa1ruoRk4ixvtvv66ZNcbiEA5NP3VM9VDFnLzj8Vb160t3dQF58bxMUt8RoCc9cP_XPXWxnj-DsyDaYBO-shJrg3Co8T_jPg2ix-x2HkAVpPvTUjCCpAya-DhOx5aFZYiaNlmvosqCqcfZgVfjVuEogZb_rDkSF4wkR8DtfUt9IgGjWxF_rhos_Q`;
|
|
|
|
const { jobs } = await client.request(
|
|
gql`
|
|
query GET_JOBS($bodyshopids: [uuid!]!) {
|
|
jobs(where: { shopid: { _in: $bodyshopids } }, order_by: { created_at: desc }) {
|
|
id
|
|
ro_number
|
|
job_totals
|
|
cieca_ttl
|
|
}
|
|
}
|
|
`,
|
|
{
|
|
bodyshopids
|
|
}
|
|
);
|
|
|
|
const results = [];
|
|
|
|
const limit = pLimit(5); // Set concurrency limit to 3
|
|
|
|
const tasks = jobs.map((job, index) => {
|
|
return limit(async () => {
|
|
process.stdout.cursorTo(0);
|
|
process.stdout.write(
|
|
`Processing job ${index + 1} of ${jobs.length}. Failed jobs: ${results.filter((r) => r.overallTotalCorrect !== "PASS").length}. Correct jobs because of adjustment: ${results.filter((r) => r.correctJobsBecauseOfAdjustment).length}`
|
|
);
|
|
|
|
try {
|
|
await axios.post(
|
|
`http://localhost:4000/job/totalsssu`,
|
|
{ id: job.id },
|
|
{ headers: { Authorization: bearerToken } }
|
|
);
|
|
const { jobs_by_pk: newjob } = await client.request(
|
|
gql`
|
|
query GET_JOBS($id: uuid!) {
|
|
jobs_by_pk(id: $id) {
|
|
id
|
|
ro_number
|
|
cieca_ttl
|
|
job_totals
|
|
ownr_fn
|
|
ownr_ln
|
|
ownr_co_nm
|
|
ins_co_nm
|
|
comment
|
|
}
|
|
}
|
|
`,
|
|
{
|
|
id: job.id
|
|
}
|
|
);
|
|
|
|
const result = {
|
|
id: newjob.id,
|
|
owner: `${newjob.ownr_fn} ${newjob.ownr_ln} ${job.ownr_co_nm || ""}`,
|
|
ins_co: newjob.ins_co_nm,
|
|
comment: newjob.comment
|
|
};
|
|
|
|
const calcTotal = newjob.job_totals.totals.total_repairs.amount;
|
|
const ttlTotal = newjob.cieca_ttl.data.g_ttl_amt * 100;
|
|
result.difference = (calcTotal - ttlTotal) / 100;
|
|
|
|
if (Math.abs(calcTotal - ttlTotal) > 3) {
|
|
result.overallTotalCorrect = "***FAIL***";
|
|
} else {
|
|
result.overallTotalCorrect = "PASS";
|
|
}
|
|
result.ttl_adjustment = Dinero(newjob.job_totals.totals.ttl_adjustment).toFormat();
|
|
result.ttl_tax_adjustment = Dinero(newjob.job_totals.totals.ttl_tax_adjustment).toFormat();
|
|
|
|
const calcTax =
|
|
Dinero(newjob.job_totals.totals.us_sales_tax_breakdown.ty1Tax)
|
|
.add(Dinero(newjob.job_totals.totals.us_sales_tax_breakdown.ty2Tax))
|
|
.add(Dinero(newjob.job_totals.totals.us_sales_tax_breakdown.ty3Tax))
|
|
.add(Dinero(newjob.job_totals.totals.us_sales_tax_breakdown.ty4Tax))
|
|
.add(Dinero(newjob.job_totals.totals.us_sales_tax_breakdown.ty5Tax))
|
|
.add(Dinero(newjob.job_totals.totals.ttl_tax_adjustment))
|
|
.getAmount() / 100;
|
|
|
|
const emsTax = newjob.cieca_ttl.data.g_tax;
|
|
result.taxDifference = calcTax - emsTax;
|
|
|
|
if (Math.abs(calcTax - emsTax) > 3) {
|
|
result.taxCorrect = "***FAIL***";
|
|
} else {
|
|
result.taxCorrect = "PASS";
|
|
}
|
|
|
|
results.push(result);
|
|
} catch (error) {
|
|
results.push({
|
|
ro_number: job.ro_number,
|
|
id: job.id,
|
|
result: "**503 FAILURE**"
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
await Promise.all(tasks);
|
|
|
|
console.table(results.filter((r) => r.overallTotalCorrect !== "PASS"));
|
|
console.log("=======================================");
|
|
const summary = results.reduce(
|
|
(acc, val) => {
|
|
if (val.result === "PASS") {
|
|
return { ...acc, pass: acc.pass + 1 };
|
|
} else {
|
|
return { ...acc, fail: acc.fail + 1 };
|
|
}
|
|
},
|
|
{ pass: 0, fail: 0 }
|
|
);
|
|
console.log("Pass Rate: ", ((summary.pass / (summary.fail + summary.pass)) * 100).toFixed(1));
|
|
|
|
const ret = converter.json2csv(results, { emptyFieldValue: "" });
|
|
|
|
fs.writeFile(`./logs/totalstest-${Date.now()}.csv`, ret, (error) => console.log(error));
|
|
}
|
|
|
|
RunTheTest().catch((error) => {
|
|
console.log("Error in RunTheTest: ", error);
|
|
});
|