jest-setup.js 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
const path = require("path");
const fs = require("fs");

const { configureToMatchImageSnapshot } = require("jest-image-snapshot");

const hbuilderx_version = process.env.HX_Version;
const uniTestPlatformInfo = process.env.uniTestPlatformInfo
  ? process.env.uniTestPlatformInfo.replace(/\s/g, "_")
  : "";
const folderName = `__image_snapshots__/${hbuilderx_version}/__${uniTestPlatformInfo}__`;
let environment = "official";
if (hbuilderx_version.includes("dev")) {
  environment = "dev";
} else if (hbuilderx_version.includes("alpha")) {
  environment = "alpha";
}
const baseFolderName = `__image_snapshots__/base/${environment}/__${uniTestPlatformInfo}__`;
18 19

expect.extend({
20 21 22 23 24 25 26 27 28
  toMatchImageSnapshot: configureToMatchImageSnapshot({
    customSnapshotIdentifier(args) {
      return args.currentTestName.replace(/\//g, "-").replace(" ", "-");
    },
    customSnapshotsDir: path.join(__dirname, baseFolderName),
    customDiffDir: path.join(__dirname, `${folderName}/`, "diff"),
  }),
  toSaveSnapshot,
  toSaveImageSnapshot,
29
});
30

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
const testCaseToSnapshotFilePath =
  process.env.testCaseToSnapshotFilePath || "./testCaseToSnapshotFilePath.json";

if (!fs.existsSync(testCaseToSnapshotFilePath)) {
  fs.writeFileSync(testCaseToSnapshotFilePath, "{}");
}

function writeTestCaseToSnapshotFile(testCaseName, snapshotFilePath) {
  const data = JSON.parse(fs.readFileSync(testCaseToSnapshotFilePath));
  if (!data[testCaseName]) {
    data[testCaseName] = [snapshotFilePath];
  } else {
    data[testCaseName].push(snapshotFilePath);
  }
  fs.writeFileSync(testCaseToSnapshotFilePath, JSON.stringify(data, null, 2));
}

48
function toSaveSnapshot(received, { customSnapshotsDir, fileName } = {}) {
49 50 51 52 53
  const {
    snapshotState: { _rootDir },
    testPath,
    currentTestName,
  } = this;
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
  const SNAPSHOTS_DIR = "__file_snapshots__";
  const snapshotDir =
    process.env.saveSnapshotDir ||
    createSnapshotDir({
      customSnapshotsDir,
      testPath,
      SNAPSHOTS_DIR,
    });
  const _fileName = createFileName({
    fileName,
    testPath,
    currentTestName,
  });
  const filePath = path.join(snapshotDir, _fileName);
  let message = () => `${currentTestName} toSaveSnapshot success`;
  let pass = true;

  try {
    checkSnapshotDir(snapshotDir);
    fs.writeFileSync(filePath, received);
74
    writeTestCaseToSnapshotFile(testPath.replace(`${_rootDir}/`, ""), filePath);
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
  } catch (e) {
    console.log("toSaveSnapshot fail", e);
    message = () => e.message;
    pass = false;
  }

  return {
    message,
    pass,
  };
}

function toSaveImageSnapshot(
  received,
  { customSnapshotsDir, customSnapshotIdentifier } = {}
) {
91 92 93 94 95
  const {
    snapshotState: { _rootDir },
    testPath,
    currentTestName,
  } = this;
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  const SNAPSHOTS_DIR = "__image_snapshots__";
  const snapshotDir =
    process.env.saveImageSnapshotDir ||
    createSnapshotDir({
      customSnapshotsDir,
      testPath,
      SNAPSHOTS_DIR,
    });
  const _fileName = createFileName({
    fileName: customSnapshotIdentifier ? customSnapshotIdentifier() : "",
    testPath,
    currentTestName,
    fileType: "png",
  });
  const filePath = path.join(snapshotDir, _fileName);
  let message = () => `${currentTestName} toSaveImageSnapshot success`;
  let pass = true;

  try {
    checkSnapshotDir(snapshotDir);
    fs.writeFileSync(filePath, Buffer.from(received, "base64"));
117
    writeTestCaseToSnapshotFile(testPath.replace(`${_rootDir}/`, ""), filePath);
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
  } catch (e) {
    console.log("toSaveImageSnapshot fail", e);
    message = () => e.message;
    pass = false;
  }

  return {
    message,
    pass,
  };
}

function createSnapshotDir({ customSnapshotsDir, testPath, SNAPSHOTS_DIR }) {
  return customSnapshotsDir || path.join(path.dirname(testPath), SNAPSHOTS_DIR);
}

function createFileName({ fileName, testPath, currentTestName, fileType }) {
  return (
    fileName ||
    createSnapshotIdentifier({
      testPath,
      currentTestName,
      fileType,
    })
  );
}

function createSnapshotIdentifier({
  testPath,
  currentTestName,
  fileType = "txt",
}) {
  const snapshotIdentifier = kebabCase(
    `${path.basename(testPath)}-${currentTestName}`
  );
  const counter = timesCalled.get(`${snapshotIdentifier}-${fileType}`) || 1;
  timesCalled.set(`${snapshotIdentifier}-${fileType}`, counter + 1);
  return `${snapshotIdentifier}-${counter}.${fileType}`;
}

function kebabCase(str) {
  return str
    .replaceAll(/([a-z])([A-Z])/g, "$1-$2")
    .replaceAll(/\s+/g, "-")
    .replaceAll(/_+/g, "-")
    .replaceAll(/\/+/g, "-")
    .replaceAll(/\.+/g, "-")
    .toLowerCase();
}

function checkSnapshotDir(snapshotDir) {
  if (!fs.existsSync(snapshotDir)) {
    fs.mkdirSync(snapshotDir, {
      recursive: true,
    });
  }
}

const timesCalled = new Map();