Как я могу закодировать с помощью Protobuf ответ на заглушку Cypress? - PullRequest
0 голосов
/ 11 февраля 2019

У меня есть несколько приспособлений для заглушки сервера, который кодирует сообщения с помощью protobuf (я использую protobufjs).Я хотел бы, чтобы приборы были декодированы, чтобы легко ими манипулировать, и чтобы Cypress кодировал тело заглушки перед отправкой ответа клиенту, как я могу это сделать?

1 Ответ

0 голосов
/ 11 февраля 2019

[ОБНОВЛЕНИЕ] теперь он доступен как Cypress плагин


Это мое решение:

  • cypress/plugins/protobufjs/index.js файл (где определения protobufимпортированы)
const path = require("path");
const protobufjs = require("protobufjs");
const definition = path.join(__dirname, "../../../public/escrow/ui.proto");
const proto = protobufjs.loadSync(definition);
module.exports = {
  Status: proto.lookupType("escrow.Status"),
};
  • cypress/plugins/index.js (где кодирование выполняется с помощью пользовательской задачи Cypress)
const { StringDecoder } = require("string_decoder");
const Messages = require("./protobufjs");

module.exports = on => {
  on("task", {
    protobufEncode: ({ data, encoderName }) => {
      const decoder = new StringDecoder("utf8");
      const bufferValue = Messages[encoderName].encode(data).finish();
      return decoder.end(Buffer.from(bufferValue));
    }
  });
};
  • в вашемтест
cy.fixture("YOUR_FIXTURE.json").then(async json => {
  cy.task("protobufEncode", { encoderName: "Status", data: json }).then(result => {
    cy.route({
      headers: {
        "content-type": "application/octet-stream"
      },
      method: "GET",
      response: result,
      status: 200,
      url: `**/YOUR_URL`
    }).as("route_status_one_usb_key");
  });
});
...