From ef68436ac04da078ffdcacd7e1f785473a303d45 Mon Sep 17 00:00:00 2001 From: Giulio Cesare Solaroli Date: Sun, 02 Oct 2011 23:56:18 +0000 Subject: First version of the newly restructured repository --- (limited to 'frontend/gamma/js/Clipperz/PM/Proxy/Proxy.Test.js') diff --git a/frontend/gamma/js/Clipperz/PM/Proxy/Proxy.Test.js b/frontend/gamma/js/Clipperz/PM/Proxy/Proxy.Test.js new file mode 100644 index 0000000..be1c337 --- a/dev/null +++ b/frontend/gamma/js/Clipperz/PM/Proxy/Proxy.Test.js @@ -0,0 +1,167 @@ +/* + +Copyright 2008-2011 Clipperz Srl + +This file is part of Clipperz's Javascript Crypto Library. +Javascript Crypto Library provides web developers with an extensive +and efficient set of cryptographic functions. The library aims to +obtain maximum execution speed while preserving modularity and +reusability. +For further information about its features and functionalities please +refer to http://www.clipperz.com + +* Javascript Crypto Library is free software: you can redistribute + it and/or modify it under the terms of the GNU Affero General Public + License as published by the Free Software Foundation, either version + 3 of the License, or (at your option) any later version. + +* Javascript Crypto Library is distributed in the hope that it will + be useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Affero General Public License for more details. + +* You should have received a copy of the GNU Affero General Public + License along with Javascript Crypto Library. If not, see + . + +*/ + +if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } +if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } +if (typeof(Clipperz.PM.Proxy) == 'undefined') { Clipperz.PM.Proxy = {}; } + +//============================================================================= + +Clipperz.PM.Proxy.Test = function(args) { + Clipperz.PM.Proxy.Test.superclass.constructor.call(this, args); + + args = args || {}; + + this._expectedRequests = (args.shouldCheckExpectedRequests === true) ? [] : null; + this._isExpectingRequests = true; + this._unexpectedRequests = []; + + this.dataStore().resetData(); + + return this; +} + +Clipperz.Base.extend(Clipperz.PM.Proxy.Test, Clipperz.PM.Proxy.Offline, { + + 'toString': function() { + return "Clipperz.PM.Proxy.Test"; + }, + + //========================================================================= + + 'expectedRequests': function () { + return this._expectedRequests; + }, + + //------------------------------------------------------------------------- + + 'shouldCheckExpectedRequests': function () { + return (this._expectedRequests != null); + }, + + 'setShouldCheckExpectedRequests': function(aValue) { + if (aValue) { + this._expectedRequests = aValue; + } else { + this._expectedRequests = null; + } + }, + + //------------------------------------------------------------------------- + + 'shouldNotReceiveAnyFurtherRequest': function () { + this._isExpectingRequests = false; + }, + + 'mayReceiveMoreRequests': function () { + this._isExpectingRequests = true; + this.resetUnexpectedRequests(); + }, + + 'isExpectingRequests': function () { + return this._isExpectingRequests; + }, + + //------------------------------------------------------------------------- + + 'unexpectedRequests': function () { + return this._unexpectedRequests; + }, + + 'resetUnexpectedRequests': function () { + this._unexpectedRequests = []; + }, + + //------------------------------------------------------------------------- + + 'testExpectedRequestParameters': function (aPath, anActualRequest, anExpectedRequest) { + var aKey; +//console.log(">>> Proxy.testExpectedRequestParameters [" + aPath + "]", anActualRequest, anExpectedRequest); + for (aKey in anExpectedRequest) { + if (typeof(anActualRequest[aKey]) == 'undefined') { + throw "the expected paramter [" + aKey + "] is missing from the actual request"; + } + if (typeof(anExpectedRequest[aKey]) == 'object') { + this.testExpectedRequestParameters(aPath + "." + aKey, anActualRequest[aKey], anExpectedRequest[aKey]) + } else { + if (! anExpectedRequest[aKey](anActualRequest[aKey])) { + throw "wrong value for paramter [" + aKey + "]; got '" + anActualRequest[aKey] + "'"; + } + } + } +//console.log("<<< Proxy.testExpectedRequestParameters"); + }, + + //------------------------------------------------------------------------- + + 'checkRequest': function(aFunctionName, someParameters) { + if (this.shouldCheckExpectedRequests()) { + var expectedRequest; + +//console.log(">>> Proxy.Test.checkRequest - " + aFunctionName, someParameters); + expectedRequest = this.expectedRequests().pop(); +//console.log("--- Proxy.Test.checkRequest - expectedRequest", expectedRequest); + if (expectedRequest == null) { + throw "Proxy.Test.sentMessage: no expected result specified. Got request '" + aFunctionName + "': " + someParameters; + } + + try { + if (aFunctionName != expectedRequest.functionName) { + throw "wrong function name. Got '" + aFunctionName + "', expected '" + expectedRequest.request.functionName + "'"; + } + + this.testExpectedRequestParameters("parameters", someParameters, expectedRequest.parameters); + } catch(exception) { +//console.log("EXCEPTION: Proxy.Test.sentMessage[" + expectedRequest.name + "]", exception) + throw "Proxy.Test.sentMessage[" + expectedRequest.name + "]: " + exception; + } + } +//console.log("<<< Proxy.Test.checkRequest"); + }, + + //========================================================================= + + 'sendMessage': function(aFunctionName, someParameters) { + var result; + + if (this.isExpectingRequests() == false) { +// throw Clipperz.PM.Connection.exception.UnexpectedRequest; +Clipperz.log("UNEXPECTED REQUEST " + aFunctionName /* + ": " + Clipperz.Base.serializeJSON(someParameters) */); + this.unexpectedRequests().push({'functionName':aFunctionName, 'someParameters': someParameters}); + }; + this.checkRequest(aFunctionName, someParameters); + result = Clipperz.PM.Proxy.Test.superclass.sendMessage.call(this, aFunctionName, someParameters); + + return result; + }, + + //========================================================================= + __syntaxFix__: "syntax fix" + +}); + -- cgit v0.9.0.2