DOM 操作

    Another class of functions that is often considered difficult to test is code that directly manipulates the DOM. Another class of functions that is often considered difficult to test is code that directly manipulates the DOM. Let’s see how we can test the following snippet of jQuery code that listens to a click event, fetches some data asynchronously and sets the content of a span.

    接着,我们在文件夹下创建一个测试文件:

    1. 'use strict';
    2. jest.mock('../fetchCurrentUser');
    3. test('displays a user after a click', () => {
    4. // Set up our document body
    5. document.body.innerHTML =
    6. '<div>' +
    7. ' <span id="username" />' +
    8. ' <button id="button" />' +
    9. '</div>';
    10. // This module has a side-effect
    11. require('../displayUser');
    12. const $ = require('jquery');
    13. const fetchCurrentUser = require('../fetchCurrentUser');
    14. // Tell the fetchCurrentUser mock function to automatically invoke
    15. // its callback with some data
    16. fetchCurrentUser.mockImplementation(cb => {
    17. cb({
    18. loggedIn: true,
    19. });
    20. // Use jquery to emulate a click on our button
    21. $('#button').click();
    22. // Assert that the fetchCurrentUser function was called, and that the
    23. // #username span's inner text was updated as we'd expect it to.
    24. expect(fetchCurrentUser).toBeCalled();
    25. expect($('#username').text()).toEqual('Johnny Cash - Logged In');
    26. });

    The function being tested adds an event listener on the #button DOM element, so we need to set up our DOM correctly for the test. Jest ships with jsdom which simulates a DOM environment as if you were in the browser. This means that every DOM API that we call can be observed in the same way it would be observed in a browser! Jest ships with jsdom which simulates a DOM environment as if you were in the browser. This means that every DOM API that we call can be observed in the same way it would be observed in a browser!

    The code for this example is available at examples/jquery.