javascript - Cypress 路由功能未检测到网络请求

标签 javascript reactjs e2e-testing cypress

我正在尝试等待我的应用程序发出的请求,但 Cypress 未在 cy.wait 上检测到它

    cy.server();
    cy.getAuthenticatedUrl();
    cy.route('POST', '/showroom/validate').as('uploadShowroom');

    cy.get('[data-testid=Next]').click();

    cy.uploadFile('[id=uploadArea]', 'testfile-valid.xlsx', 'application/vnd.ms-excel');

    cy.wait('@uploadShowroom');

    cy.contains('FILE UPLOAD DONE');

如果我在测试期间检查我的控制台,我可以看到请求是对我的服务器发出的

screenshot-console

我的客户端和服务器都在本地运行,但在不同的端口。

错误如下: CypressError:重试超时:cy.wait() 等待第一个路由请求超时 5000 毫秒:“uploadShowroom”。从未发生任何请求。

最佳答案

我认为这是因为您的表单使用的是原生表单提交,但 Cypress 的 cy.route() 仅响应 XHR 调用(目前)。

issue #170里面有大讨论.

Gleb Bahmutov 在这个 comment 中有一个有趣的想法, 代码在此 repository .本质上,他使用 XHR 提交动态地“模拟” native 提交。

我尝试了一种更接近您的场景的变体。按照存储库 READ.ME 设置测试,但首先更新 package.json 中的 Cypress 版本。将要上传的文件添加到/cypress/fixtures

然后尝试以下规范。

第三个测试是使用 cy.url() 而不是 cy.route() 的替代方法。

uploadFile 命令(或类似变体)

Cypress.Commands.add('uploadFile', (fileName, selector) =>
  cy.get(selector).then(subject => {
    return cy
      .fixture(fileName, 'base64')
      .then(Cypress.Blob.base64StringToBlob)
      .then(blob => {
        const el = subject[0];
        const testFile = new File([blob], fileName, {
          type: 'application/vnd.openxmlformatsofficedocument.spreadsheetml.sheet',
        });
        const dataTransfer = new DataTransfer();
        dataTransfer.items.add(testFile);
        el.files = dataTransfer.files;
        return subject;
      });
  })
);

使用 XHR“模拟” native 提交的功能(位于规范顶部)

const mockNativeSubmitWithXhr = (form$) => {
  let win
  cy.window().then(w => {
    win = w
  })
  form$.on('submit', e => {
    e.preventDefault()
    const form = new FormData(e.target)
    const XHR = new win.XMLHttpRequest()
    XHR.onload = response => {
      win.document.write(XHR.responseText)
      win.history.pushState({}, '', XHR.url)
    }
    XHR.open(e.target.method, e.target.action)
    XHR.send(form)
    return true
  })
}

规范

describe('waiting for form-data post', () => {

  beforeEach(() => {
    cy.task('deleteFile', '../../uploads/Sample_data.xlsx')
    cy.visit('localhost:3000')
    cy.get('input[name="userid"]').type('foo@bar.com')
  })

  it('upload with native form submit (fails because of native event)', () => {
    cy.server()
    cy.route('POST', '/upload').as('upload');

    cy.uploadFile('Sample_data.xlsx', '[id=fileToUpload]')
    cy.get('input[type="submit"]').click()

    cy.wait('@upload');
    cy.readFile('uploads/Sample_data.xlsx') // check saved file
  })

  it('upload with form submit mocked to XHR send (succeeds)', () => {
    cy.server()
    cy.route('POST', '/upload').as('upload');

    cy.uploadFile('Sample_data.xlsx', '[id=fileToUpload]')
    cy.get('form').then(form => mockNativeSubmitWithXhr(form))
    cy.get('input[type="submit"]').click()

    cy.wait('@upload');
    cy.readFile('uploads/Sample_data.xlsx')
  })

  it('upload with native form submit (testing url has changed)', () => {
    cy.uploadFile('Sample_data.xlsx', '[id=fileToUpload]')
    cy.get('input[type="submit"]').click()

    cy.url().should('eq', 'http://localhost:3000/upload')
    cy.readFile('uploads/Sample_data.xlsx')
  })
})

在测试之间删除上传文件的任务(修改“/cypress/plugins/index.js”)

const fs = require('fs')

module.exports = (on, config) => {
  on('task', {
    deleteFile: (path) => {
      if (fs.existsSync(path)) {
        fs.unlinkSync(path)
      }
      return null
    }
  })
}

关于javascript - Cypress 路由功能未检测到网络请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54005760/

相关文章:

reactjs - useNavigate 给我空白网页

javascript - react : how to pass and array from inside a Function to the return (JSX)

javascript - 对存储在 Liferay 中的 Angular 应用程序执行 Protractor 测试时出现 "angular is not defined"错误

javascript - 访问新网址 Cypress

reactjs - 使用 webpack 为 Protractor 预处理 e2e 测试文件(ES6 样式)

javascript - V8 公开类但在特定代码中对其进行限制

java - 引用错误 : "alert" is not defined

reactjs - AWS AppSync + React-Apollo Query/useQuery 引发异常 this.currentObservable.query.getCurrentResult 不是函数

javascript - 检查缩略图和图像是否存在

javascript - 如何删除 jQuery-ui 对话框标题栏?