summaryrefslogtreecommitdiff
path: root/test/socket.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/socket.html')
-rw-r--r--test/socket.html32
1 files changed, 25 insertions, 7 deletions
diff --git a/test/socket.html b/test/socket.html
index 4d26667..c179456 100644
--- a/test/socket.html
+++ b/test/socket.html
@@ -58,9 +58,7 @@
switch (msg.TYPE) {
case "ack":
$('#sessionid').val(msg.ID);
- $('#buttonrun').attr('disabled','disabled')
- $('#buttonreconnect').attr('disabled','disabled')
- $('#buttoncancel').removeAttr('disabled')
+ buttonsRunning();
break;
case "done":
case "error":
@@ -86,12 +84,12 @@
function run() {
req = { COMMAND: "new",
TIMEOUT: 200,
- REFERENCE_ID: "my-very-personal-import",
+ REFERENCE_ID: $('#refid').val(),
LOGIN_NAME: $('#username').val(),
PASSWORD: $('#token').val(),
SHOW_ID: 10002,
CLEAR_SHOW_CARTS: true,
- SOURCE_URI: "fake://10000" };
+ SOURCE_URI: $('#source').val() };
s = new Session(req);
}
@@ -106,12 +104,29 @@
s.cancel();
}
- function init() {
- $('#sessionid').val("");
+ function detach() {
+ s.sock.close();
+ buttonsIdle();
+ }
+
+ function buttonsIdle() {
$('#buttonrun').removeAttr('disabled')
$('#buttonreconnect').removeAttr('disabled')
+ $('#buttondetach').attr('disabled','disabled')
$('#buttoncancel').attr('disabled','disabled')
}
+
+ function buttonsRunning() {
+ $('#buttonrun').attr('disabled','disabled')
+ $('#buttonreconnect').attr('disabled','disabled')
+ $('#buttondetach').removeAttr('disabled')
+ $('#buttoncancel').removeAttr('disabled')
+ }
+
+ function init() {
+ $('#sessionid').val("");
+ buttonsIdle();
+ }
</script>
</head>
<body onload="init()">
@@ -131,7 +146,10 @@
</p>
<p>
+ <input id="source" type="text" size="30" value="fake://10000">
+ <input id="refid" type="text" size="15" value="test-reference-id">
<button id="buttonrun" onclick="run()">start</button>
+ <button id="buttondetach" onclick="detach()">detach</button>
<input id="sessionid" type="text" size="45">
<button id="buttonreconnect" onclick="reconnect()">reconnect</button>
<button id="buttoncancel" onclick="cancel()">cancel</button>