• [Cypress] install, configure, and script Cypress for JavaScript web applications -- part2


    Use Cypress to test user registration

    Let’s write a test to fill out our registration form. Because we’ll be running this against a live backend, we need to generate the user’s information to avoid re-runs from trying to create new users that already exist. There are trade-offs with this approach. You should probably also clean out the application database before all of your tests start (how you accomplish this is pretty application-specific). Also, if your application requires email confirmation, I recommend you mock that on the backend and automatically set the user as confirmed during tests.

    Let's create a helper method first.

    support/generate.js

    import {build, fake} from 'test-data-bot'
    
    const userBuilder = build('User').fields(
        {
            username: fake(f => f.internet.userName()),
            password: fake(f => f.internet.password())
        }
    )
    
    export {userBuilder}

    Then, create tests:

    e2e/register.js

    import {userBuilder} from '../support/generate'
    
    describe('should register a new user', () => {
        it('should register a new user', () => {
            const user = userBuilder();
            cy.visit('/')
                .getByText(/register/i)
                .click()
                .getByLabelText(/username/i)
                .type(user.username)
                .getByLabelText(/password/i)
                .type(user.password)
                .getByText(/submit/i)
                .click()
                .url()
                .should('eq', `${Cypress.config().baseUrl}/`)
                .window()
                .its('localStorage.token')
                .should('be.a', 'string')
        });
    });

    Cypress Driven Development

    Because Cypress allows you to use all the developer tools you’re used to from Google Chrome, you can actually use Cypress as your main application development workflow. If you’ve ever tried to develop a feature that required you to be in a certain state you’ve probably felt the pain of repeatedly refreshing the page and clicking around to get into that state. Instead, you can use cypress to do that and developer your application entirely in Cypress.

    Simulate HTTP Errors in Cypress Tests

    Normally I prefer to test error states using integration or unit tests, but there are some situations where it can be really useful to mock out a response to test a specific scenario in an E2E test. Let’s use the cypress server and route commands to mock a response from our registration request to test the error state.

        it(`should show an error message if there's an error registering`, () => {
            cy.server()
            cy.route({
              method: 'POST',
              url: 'http://localhost:3000/register',
              status: 500,
              response: {},
            })
            cy.visit('/register')
              .getByText(/submit/i)
              .click()
              .getByText(/error.*try again/i)
          })

    Test user login with Cypress

     To test user login we need to have a user to login with. We could seed the database with a user and that may be the right choice for your application. In our case though we’ll just go through the registration process again and then login as the user and make the same assertions we made for registration.

    import {userBuilder} from '../support/generate'
    
    describe('should register a new user', () => {
        it('should register a new user', () => {
            const user = userBuilder();
            cy.visit('/')
                .getByText(/register/i)
                .click()
                .getByLabelText(/username/i)
                .type(user.username)
                .getByLabelText(/password/i)
                .type(user.password)
                .getByText(/submit/i)
                .click()
    
                // now we have new user
                .getByText(/logout/i)
                .click()
    
                // login again
                .getByText(/login/i)
                .click()
                .getByLabelText(/username/i)
                .type(user.username)
                .getByLabelText(/password/i)
                .type(user.password)
                .getByText(/submit/i)
                .click()
    
                // verify the user in localStorage
                .url()
                .should('eq', `${Cypress.config().baseUrl}/`)
                .window()
                .its('localStorage.token')
                .should('be.a', 'string')
                .getByTestId('username-display', {timeout: 500})
                .should('have.text', user.username)
        });
    });

    Create a user with cy.request from Cypress

    We’re duplicating a lot of logic between our registration and login tests and not getting any additional confidence, so lets reduce the duplicate logic and time in our tests using cy.request to get a user registered rather than clicking through the application to register a new user.

    import {userBuilder} from '../support/generate'
    
    describe('should register a new user', () => {
        it('should register a new user', () => {
            const user = userBuilder();
            // send a http request to server to create a new user
            cy.request({
                url: 'http://localhost:3000/register',
                method: 'POST',
                body: user
            })
            cy.visit('/')
                .getByText(/login/i)
                .click()
                .getByLabelText(/username/i)
                .type(user.username)
                .getByLabelText(/password/i)
                .type(user.password)
                .getByText(/submit/i)
                .click()
    
                // verify the user in localStorage
                .url()
                .should('eq', `${Cypress.config().baseUrl}/`)
                .window()
                .its('localStorage.token')
                .should('be.a', 'string')
                .getByTestId('username-display', {timeout: 500})
                .should('have.text', user.username)
        });
    });

    Keep tests isolated and focused with custom Cypress commands

    We’re going to need a newly created user for several tests so let’s move our cy.request command to register a new user into a custom Cypress command so we can use that wherever we need a new user.

    Because we need to create user very often in the test, it is good to create a command to simply the code:

    //support/commands.js
    
    
    import {userBuilder} from '../support/generate'
    
    Cypress.Commands.add('createUser', (overrides) => {
        const user = userBuilder(overrides);
        // send a http request to server to create a new user
        cy.request({
            url: 'http://localhost:3000/register',
            method: 'POST',
            body: user
        }).then(response => response.body.user)
    })

    We chain .then() call is to get the created user and pass down to the test.

    describe('should register a new user', () => {
        it('should register a new user', () => {
            cy.createUser().then(user => {
                cy.visit('/')
                .getByText(/login/i)
                .click()
                .getByLabelText(/username/i)
                .type(user.username)
                .getByLabelText(/password/i)
                .type(user.password)
                .getByText(/submit/i)
                .click()
    
                // verify the user in localStorage
                .url()
                .should('eq', `${Cypress.config().baseUrl}/`)
                .window()
                .its('localStorage.token')
                .should('be.a', 'string')
                .getByTestId('username-display', {timeout: 500})
                .should('have.text', user.username)
            })
        });
    });
  • 相关阅读:
    阻止事件传播的常用方法
    原生JS获取元素的位置与尺寸
    FileReader 与canvas结合使用显示图片
    dot.js使用心得
    时间格式转换
    JS对象操作
    vue-awesome-swipe 基于vue使用的轮播组件 使用(改)
    vscode 插件推荐
    chrome 发送请求出现:Provisional headers are shown 提示
    手机端
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10068867.html
Copyright © 2020-2023  润新知