tests/soup.js
[gitlive] / tests / soup.js
1 #!/usr/bin/env seed
2
3 Soup = imports.gi.Soup;
4 GLib = imports.gi.GLib;
5
6 var session = new Soup.SessionSync();
7 File  = imports['../File.js'].File;
8
9 var netrc = File.read(GLib.get_home_dir() + "/.netrc");
10 var lines = [];
11 netrc.split("\n").forEach(function(nl) {
12     var line = {};
13     var k = false
14    print(JSON.stringify(nl));
15
16     nl.replace(/\s+$/,'').replace(/^\s+/,'').split(/\s+/).forEach(function(kv) {
17         print(JSON.stringify(kv));
18
19         if (!k) {
20             k = kv;
21             return
22         }
23         line[k] = kv
24         k = false;
25    });
26    
27    lines[line.machine] = line;
28     
29 });
30 print(JSON.stringify(lines));
31
32 // Soup.URI is a struct.
33 var uri = new Soup.URI.c_new("http://www.roojs.com/admin.php/Roo/person");
34 var msg = new Soup.Message({method:"GET", uri:uri});
35
36 var auth = new Soup.Auth.c_new(Soup.AuthBasic.type, msg, "Basic realm=\"Test\"");
37 print(auth);
38 print(auth.authenticate);
39 auth.authenticate('aaaa','bbbb');
40 var authmsg = auth.get_authorization(msg);
41
42 msg.request_headers.append('Authorization', authmsg + '==')
43
44 //request.headers_append...
45 var status = session.send_message(msg);
46 // session.queue_message(function(ses, msg) {
47 //
48 //}
49 //)
50 print(status);
51
52 print(msg.response_body.data);