赛普拉斯路由功能未检测到网络请求

时间:2019-01-02 11:45:51

标签: javascript reactjs e2e-testing 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: Timed out retrying: cy.wait() timed out waiting 5000ms for the 1st request to the route: 'uploadShowroom'. No request ever occurred.

3 个答案:

答案 0 :(得分:3)

我认为这是因为您的表单正在使用本机表单提交,但是Cypress的cy.route()仅响应XHR调用(此刻)。

issue #170中有一个大讨论。

Gleb Bahmutov在此comment中有一个有趣的想法,在此repository中有代码。本质上,他可以随时随地用XHR提交“嘲笑”本地提交。

我尝试了一种更接近您的情况的变体。请按照存储库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(位于规范顶部)“模拟”本地提交的功能

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
    }
  })
}

答案 1 :(得分:1)

我遇到了类似的情况。诀窍不是根据字符串检查路由,而是根据正则表达式检查路由。尝试以下操作以匹配您的POST路线:

cy.route('POST', /showroom\/validate/).as('uploadShowroom');
// [...]
cy.wait('@uploadShowroom');

如果您在cypress命令日志中看到路由是匹配的(路由旁边的黄色徽章),它应该执行您想要的操作。

答案 2 :(得分:-1)

尝试覆盖默认的等待超时时间:

cy.wait('@ uploadShowroom',{超时:10000);