diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-01 01:27:07 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-01 01:27:07 +0200 |
commit | 655dcd3b809c80ca6ca2ae001202064dd594df2b (patch) | |
tree | 554332b216f36f0957e9bbe09e5f518b409c019b /lib | |
parent | 43218b75f3df450b97992815322c2d668ba2bab7 (diff) | |
download | bugzilla-triage-655dcd3b809c80ca6ca2ae001202064dd594df2b.tar.gz |
Adding unit tests for xmlrpc.js
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rhbzpage.js | 6 | ||||
-rw-r--r-- | lib/xmlrpc.js | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index b007982..f318528 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -4,6 +4,8 @@ // http://www.opensource.org/licenses/mit-license.php "use strict"; var utilMod = require("util"); +var xrpc = require("xmlrpc"); +var xhr = require("xhr"); // var TriagedDistro = 13; // var NumberOfFrames = 7; // var XMLRPCurl = "https://bugzilla.redhat.com/xmlrpc.cgi"; @@ -641,7 +643,7 @@ RHBugzillaPage.prototype.fillInChipMagic = function () { attURL = "https://bugzilla.redhat.com/attachment.cgi?id="+XorgLogAttID; that = this; - let req = new XMLHttpRequest(); + let req = new xhrMod.XMLHttpRequest(); req.open("GET",attURL,true); req.onreadystatechange = function (aEvt) { if (req.readyState == 4) { @@ -888,7 +890,7 @@ RHBugzillaPage.prototype.fixAttachById = function(id, type, email) { email = false; } - let msg = new XMLRPCMessage("bugzilla.updateAttachMimeType"); + let msg = new xrpc.XMLRPCMessage("bugzilla.updateAttachMimeType"); msg.addParameter( { 'attach_id' : id, 'mime_type' : type, diff --git a/lib/xmlrpc.js b/lib/xmlrpc.js index 2b264e7..69bb77e 100644 --- a/lib/xmlrpc.js +++ b/lib/xmlrpc.js @@ -15,7 +15,7 @@ * */ -exports.XMLRPCMessage = function XMLRPCMessage(methodname) { +var XMLRPCMessage = exports.XMLRPCMessage = function XMLRPCMessage(methodname) { this.method = methodname || "system.listMethods"; this.params = []; return this; |