-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtests.js
50 lines (45 loc) · 1.42 KB
/
tests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* This is an interactive test.
* The user has to check that his/her device is recognized properly.
* Set the MAC address of your device in the testConfig.json file.
*
* Since we might receive many ARP packets we cannot rely on detecting only the first one.
*/
var arper = require('./arper');
var config = require('./testConfig');
var INTERFACE = "en0";
var logger = function(sender) {
console.log("New node detected");
console.log("-----------------");
console.log("IP address: " + sender.ipAddr);
console.log("MAC address: " + sender.macAddr);
};
// Hydrate the sender's info with an additional field
var hydratedSender = function(sender) {
sender._test = "test";
};
arper.addMiddleware(hydratedSender, logger);
arper.monitor(INTERFACE, function(err, newNode) {
var expected = null;
var given = null;
if (err) {
console.log(err);
} else {
try {
console.assert(newNode._test === "test");
console.warn("[V] Test passed! The _test field was set!");
} catch (ae) {
console.warn("[X] Test failed! The _test field was not set...");
}
given = newNode.macAddr.toLowerCase();
expected = config.macAddr.toLowerCase();
try {
console.assert(expected == given);
console.log("[V] Test passed!");
process.exit(0);
} catch (ae) {
console.warn("[X] Test failed! Expected " + expected + " / Given " + given);
console.log("Waiting...\n\n");
}
}
}, true);