@carbonorm/carbonreact 3.2.13 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbonorm/carbonreact",
3
- "version": "3.2.13",
3
+ "version": "3.3.0",
4
4
  "browser": "dist/index.umd.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "main": "dist/index.cjs.js",
@@ -0,0 +1,67 @@
1
+ import fs from "fs";
2
+ import {inspect} from "util";
3
+ import {checkAllRequestsComplete, isVerbose} from "@carbonorm/carbonnode";
4
+ import {waitFor} from "@testing-library/react";
5
+ import {validSQL} from "./validSQL";
6
+
7
+ const origionalWindowLocation = window.location
8
+
9
+ const testName = () => expect.getState().currentTestName?.replaceAll(" ", "_").toLowerCase()
10
+
11
+ const validSqlFile = () => './logs/rest/' + testName() + '.json';
12
+
13
+ const logsFile = () => './logs/tests/' + testName() + '.log';
14
+
15
+ /* eslint-disable no-undef */
16
+ expect(document).not.toBeNull();
17
+
18
+
19
+ const orig = console;
20
+
21
+ // @link https://stackoverflow.com/questions/13542667/create-directory-when-writing-to-file-in-node-js
22
+ const superLogger = async (...args) => fs.writeFileSync(
23
+ logsFile(),
24
+ '\n' + inspect(args.length === 1 ? args.pop() : args, false, 10, true),
25
+ {flag: "a+"});
26
+
27
+ // noinspection CommaExpressionJS
28
+ global.console = {
29
+ ...console,
30
+ // use jest.fn() to silence, comment out to leave as it is
31
+ log: (...args) => (isVerbose && orig.log(...args), superLogger('log', ...args)),
32
+ error: (...args) => (isVerbose && orig.error(...args), superLogger('error', ...args)),
33
+ warn: (...args) => (isVerbose && orig.warn(...args), superLogger('warn', ...args)),
34
+ info: (...args) => (isVerbose && orig.info(...args), superLogger('info', ...args)),
35
+ debug: (...args) => (isVerbose && orig.debug(...args), superLogger('debug', ...args)),
36
+ table: (...args) => (isVerbose && orig.table(...args), superLogger('table', ...args)),
37
+ trace: (...args) => (isVerbose && orig.trace(...args), superLogger((() => {
38
+ const err = new Error();
39
+ return err.stack;
40
+ })())),
41
+ group: (...args) => (isVerbose && orig.group(...args), superLogger('group', ...args)),
42
+ groupCollapsed: (...args) => (isVerbose && orig.groupCollapsed(args), superLogger('groupCollapsed', ...args)),
43
+ groupEnd: () => (isVerbose && orig.groupEnd(), superLogger('groupEnd')),
44
+ };
45
+
46
+ afterEach(async () => {
47
+
48
+ await waitFor(async () => {
49
+
50
+ expect(checkAllRequestsComplete()).toEqual(true);
51
+
52
+ }, {timeout: 3000, interval: 1000});
53
+
54
+ // this must be a dynamic import to avoid loading dependencies out of order
55
+ // await waitForTrailingRequests({testPassed: true, timeout: 12000})
56
+
57
+ console.log('After each Test (' + expect.getState().currentTestName + ')', expect.getState());
58
+
59
+ // restore `window.location` to the original `jsdom`
60
+ // `Location` object
61
+ window.location = origionalWindowLocation
62
+
63
+ fs.writeFileSync(validSqlFile(), JSON.stringify(validSQL , undefined, 2) ?? '');
64
+
65
+ }, 65000)
66
+
67
+
@@ -0,0 +1,10 @@
1
+
2
+ export const validSQL: any[] = [];
3
+
4
+ export default function (sql: any) {
5
+
6
+ const {expect} = require("@jest/globals");
7
+
8
+ validSQL.push({[expect.getState().currentTestName.replaceAll(" ", "_").toLowerCase()]: sql});
9
+
10
+ }
package/src/index.ts CHANGED
@@ -41,10 +41,13 @@ export { default as setCookies } from "./hoc/setCookies";
41
41
  export * from "./hoc/setCookies";
42
42
  export { default as setUrl } from "./hoc/setUrl";
43
43
  export * from "./hoc/setUrl";
44
+ export * from "./hoc/setupTests";
44
45
  export { default as updateRestfulObjectArrays } from "./hoc/updateRestfulObjectArrays";
45
46
  export * from "./hoc/updateRestfulObjectArrays";
46
47
  export { default as uploadImage } from "./hoc/uploadImage";
47
48
  export * from "./hoc/uploadImage";
49
+ export { default as validSQL } from "./hoc/validSQL";
50
+ export * from "./hoc/validSQL";
48
51
  export { default as windowDimensions } from "./hoc/windowDimensions";
49
52
  export * from "./hoc/windowDimensions";
50
53
  export * from "./variables/C6";