aboutsummaryrefslogblamecommitdiffstats
path: root/test/support/fake_xhr.js
blob: 27e621b4fc071b8eac7364930087fc9f0e96e665 (plain) (tree)










































                                                                
(function(module) {

  function FakeXhr() {
    this.openArgs = null;
    this.sendArgs = null;
    this.headers = {};
    this.responseHeaders = {};
  }

  FakeXhr.prototype = {
    open: function() {
      this.openArgs = arguments;
    },

    getResponseHeader: function(key) {
      return this.responseHeaders[key];
    },

    setRequestHeader: function(key, value) {
      this.headers[key] = value;
    },

    send: function() {
      this.sendArgs = arguments;
    },

    respond: function(data, code) {
      this.readyState = 4;
      this.responseHeaders['content-type'] = 'application/json';
      this.responseText = JSON.stringify(data);
      this.status = code || 200;
      this.onreadystatechange();
    }
  };

  module.exports = FakeXhr;

}.apply(
  this,
  (this.Webcals) ?
    [Webcals('support/fake_xhr'), Webcals] :
    [module, require('../../lib/webcals/webcals')]
));