small os_printf fix

This commit is contained in:
Thorsten von Eicken 2015-12-10 21:47:52 -08:00
parent 1f562156ca
commit 9b0a00bc01
4 changed files with 102 additions and 142 deletions

View File

@ -7,6 +7,10 @@ get "/ping" do
"pong\nEND"
end
get "/empty" do
""
end
get "/data" do
size = params[:size].to_i || 4013
text = "This is a #{size} byte response from the friendly test server\n"

View File

@ -4,16 +4,102 @@
test_host = "h.voneicken.com";
test_port = 4567;
var result = 0;
var async = require("Async");
var http = require("http");
http.get("http://"+test_host+":"+test_port+"/ping", function(res) {
console.log("Got response: " + JSON.stringify(res));
res.on('data', function(data) {
console.log(">" + data +"<");
result = data=="pong\nEND";
if (result) console.log("*** TEST SUCCESSFUL");
});
});//.on('error', function(e) {
// console.log("Got error: " + e.message);
//});*/
var ok = true;
var host;
// barf if false
function expect(what, outcome, value) {
if (!outcome) {
console.log("In " + what + " unexpected value:\n", JSON.stringify(value), "\nOooops!");
ok = false;
} else {
console.log("OK " + what);
}
}
function testHttpSimple() {
async.sequence([
// make a simple HTTP request
function() {
console.log("** simple");
var self = this;
http.get(host+"/ping", function(res) {
//console.log("Got response: " + JSON.stringify(res));
res.on('data', function(data) {
//console.log(">" + data +"<");
expect("response", data=="pong\nEND", data);
self.next();
});
});//.on('error', function(e) { console.log("Got error: " + e.message); });
},
// make an http request without data callback
function() {
console.log("** no cb");
var self = this;
http.get(host+"/ping", function(res) {
//console.log("Got response: " + JSON.stringify(res));
res.on('close', function(data) {
//console.log("Closed");
self.next();
});
});
},
// make an http request receiving an empty response
function() {
console.log("** empty");
var self = this;
var d = false;
http.get(host+"/empty", function(res) {
//console.log("Got response: " + JSON.stringify(res));
res.on('data', function(data) {
d = true; // got the CB
});
res.on('close', function() {
expect("no data CB", !d, d);
self.next();
});
});
},
// make an http request receiving a 404 response
function() {
console.log("** 404");
var self = this;
var d = false;
var e = false;
http.get(host+"/foobar", function(res) {
//console.log("Got response: " + JSON.stringify(res));
res.on('data', function(data) { d = true; }); // should get the 404 message
res.on('error', function(err) { e = true; console.log("error", err); });
res.on('close', function(hadError) {
console.log("Closed", hadError);
expect("data CB", d, d);
expect("error CB", e, e);
expect("hadError", hadError, hadError);
self.next();
});
});
},
],
{},
function() {
console.log("=== test ended:", (ok?"SUCCESS":"ERROR"),"===");
console.log(process.memory());
});
}
console.log("***** TEST START *****");
console.log(process.memory());
if (typeof test_host === 'undefined' || typeof test_port === 'undefined') {
console.log("please set test_host, and test_port");
} else {
host = "http://"+test_host+":"+test_port;
testHttpSimple();
}

View File

@ -1,130 +0,0 @@
// Espruino esp8266 Socket tester - Copyright 2015 by Thorsten von Eicken
test_host = "h.voneicken.com";
test_port = 4567;
// Test misc
var wifi = require("Wifi");
var esp8266 = require("ESP8266");
var async = require("Async");
var http = require("http");
//var url = require("url");
// Overall test outcome
var ok=true;
var urlPrefix;
// barf if false
function expect(what, outcome, value) {
if (!outcome) {
console.log("In " + what + " unexpected value:\n", value, "\nOooops!");
ok = false;
} else {
console.log("OK " + what);
}
}
function testCB(msg, next, timeout) {
if (timeout === undefined) timeout = 1000;
console.log("Wait for", msg, "in", timeout/1000.0, "sec");
var n = 0;
setTimeout(function() {
if (n++ === 0) { console.log("OOPS: no callback for " + msg); ok = false; next(); }
}, timeout);
return function(x) { console.log("GOT CB for " + msg); if (n++ === 0) next(x); };
}
function doGet(path, next) {
var len = 0;
var data = "";
http.get(urlPrefix+path, function(res) {
res.on('data', function(d) { len += d.length; data = d; });
res.on('close', function() {
// We expect all responses to end with "END"
var l = data.length;
expect("get END", l < 3 || data.substring(l-3, l) === "END", data);
next(len);
});
});
}
function doPost(path, data, next) {
var respData = "";
var q = url.parse(urlPrefix+path, false);
q.method = "POST";
q.headers = {'Content-Length': data.length};
var req = http.request(q, function(resp) {
resp.on('data', function(d) { respData += d; });
resp.on('close', function() { next(data.length, respData); });
});
console.log("...");
req.on('drain', function() {console.log("drain"); });
req.end(data);
req.on('error', function(err) { console.log("http request error", err); next(data.length, ""); } );
}
function testSock1() {
async.sequence([
// make a simple HTTP request
function() {
doGet("/ping", this.next);
},
function(len) {
expect("ping", len === 8, len);
this.next();
},
// make a simple HTTP request with explicit DNS lookup
function() {
wifi.getHostByName(test_host, this.next);
},
function(ip) {
var tmp = urlPrefix;
doGet("/ping", this.next);
urlPrefix = tmp;
},
function(len) {
expect("ping", len === 8, len);
this.next();
},
// make an HTTP request with a long response
function() {
doGet("/data?size=3048", this.next);
},
function(len) {
expect("data 3048", len == 3048, len);
this.next();
},
// make an HTTP request with a long request
function() {
var data = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
data = data + data;
doPost("/data", data, this.next);
},
function(len, resp) {
expect("post", parseInt(resp,10) == len, resp);
this.next();
}
],
{},
function() {
console.log("=== test ended:", (ok?"SUCCESS":"ERROR"),"===");
});
}
console.log("***** TEST START *****");
console.log(process.memory());
if (typeof test_host === 'undefined' || typeof test_port === 'undefined') {
console.log("please set test_host, and test_port");
console.log("then wifi.save();");
} else {
urlPrefix = "http://" + test_host + ":" + test_port;
testSock1();
console.log(process.memory());
}

View File

@ -50,7 +50,7 @@ extern int os_printf_plus(const char *format, ...) __attribute__((format(printf
#define os_printf os_printf_plus
#else
#define CHUNK 64
#define os_printf(X) do { } while(0)
#define os_printf(X, ...) do { } while(0)
#endif