Giter Site home page Giter Site logo

thommyhh / fake-xmlhttprequest Goto Github PK

View Code? Open in Web Editor NEW
6.0 3.0 2.0 8 KB

A wrapper around the real XMLHttpRequest object to make it possible to catch certain (matched) calls and return mocked responses.

License: MIT License

JavaScript 100.00%
xmlhttprequest xhr fake mock frontend mockjax

fake-xmlhttprequest's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

fake-xmlhttprequest's Issues

FakeXMLHttpRequest.restore sets window.XMLHttpRequest to undefined

Hi,
noticed the issue with removing FakeXMLHttpRequest,
When it is set up, it saves original object to window.OriginalXHR variable but, on restore, retrieves it from window.originalXHR, which doesn't store expected value. As a result, window.XMLHttpRequest turns out to be undefined.

FakeXMLHttpRequest.setup = function() {
window.OriginalXHR = window.XMLHttpRequest;
window.XMLHttpRequest = FakeXMLHttpRequest;
FakeXMLHttpRequest.handlers = [];
};
FakeXMLHttpRequest.restore = function() {
FakeXMLHttpRequest.handlers = [];
window.XMLHttpRequest = window.originalXHR;
delete window.originalXHR;
};

[Bug?] Proxy request causes infinite loop

If you add a handler that has proxy option like this

FakeXMLHttpRequest.addHandler({
    url: /projects\/(.*)\/services\/lostmycode/,
    proxy: (url, data) => {
        return "http://localhost:9090/" + url;
    }
});

you will get maximum call stack size exceeded error

Uncaught RangeError: Maximum call stack size exceeded
    at FakeXMLHttpRequest.open

So i think Line#166 should be new window.OriginalXHR() instead of new XMLHttpRequest()

if (typeof url === 'string' && url.length > 0) {
var proxyRequest = new XMLHttpRequest();
proxyRequest.onreadystatechange = function() {

new window.OriginalXHR() worked for me

@thommyhh Sry for mentioning your old project. It's been 4 or 5 years since the last update, but I just wanted to help to improve this repo coz it really nice and helped me so much. Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.