tests/soup.js
[gitlive] / tests / soup.js
index b99847c..a5cc75d 100644 (file)
@@ -27,10 +27,17 @@ netrc.split("\n").forEach(function(nl) {
 });
  
 // Soup.URI is a struct.
-//var uri = new Soup.URI.c_new("http://www.roojs.com/admin.php/Roo/person");
-var uri = new Soup.URI.c_new("http://www.roojs.com/header.php");
+var uri = new Soup.URI.c_new("http://www.roojs.com/admin.php/Events");
+//var uri = new Soup.URI.c_new("http://www.roojs.com/head.php");
+
+var msg = new Soup.Message({method:"POST", uri:uri});
+//var msg = new Soup.Message({method:"GET", uri:uri});
+
+// post..
+buftxt =  "remarks=test";
+msg.set_request('application/x-www-form-urlencoded', Soup.MemoryUse.COPY, buftxt, buftxt.length)
 
-var msg = new Soup.Message({method:"GET", uri:uri});
 
 var auth = new Soup.Auth.c_new(Soup.AuthBasic.type, msg, "Basic realm=\"Test\"");
 print(auth);
@@ -39,7 +46,7 @@ var authvals = authdata['git.roojs.com'];
 auth.authenticate(authvals.login ,authvals.password);
 var authmsg = auth.get_authorization(msg);
 print(authmsg);
-msg.request_headers.append('Authorization', authmsg + '==')
+msg.request_headers.append('Authorization', authmsg)
 
 //request.headers_append...
 var status = session.send_message(msg);