Compare commits
18 Commits
Author | SHA1 | Date | |
---|---|---|---|
8eeb0a9827 | |||
d140e224c9 | |||
ef25a7fb7c | |||
32b516e302 | |||
d1eac84058 | |||
50090aecda | |||
bc61dc2f02 | |||
5030d9f693 | |||
e874b44200 | |||
f1c0c014da | |||
29e715897e | |||
d302473da7 | |||
5305124084 | |||
cfacdd6438 | |||
8a8005e2ef | |||
6ce58993a2 | |||
834dc4210e | |||
b33de0ce94 |
@ -4,5 +4,5 @@ branches:
|
|||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
node_js:
|
node_js:
|
||||||
- "4"
|
- "10"
|
||||||
- "5"
|
- "11"
|
||||||
|
22
README.md
22
README.md
@ -27,6 +27,12 @@ It was tested with the following operating systems:
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
### Command Line
|
||||||
|
|
||||||
|
Run the script ```scan``` in the bin folder.
|
||||||
|
|
||||||
|
### Code
|
||||||
|
|
||||||
const scanner = require('node-wifi-scanner');
|
const scanner = require('node-wifi-scanner');
|
||||||
|
|
||||||
scanner.scan((err, networks) => {
|
scanner.scan((err, networks) => {
|
||||||
@ -60,6 +66,22 @@ Unfortunately, Mac OS-X and Windows use the system language for the output which
|
|||||||
generic way of parsing the data. If you experience any troubles, please create a GitHub issue and supply
|
generic way of parsing the data. If you experience any troubles, please create a GitHub issue and supply
|
||||||
the output of the tool.
|
the output of the tool.
|
||||||
|
|
||||||
|
## Limits of the tool
|
||||||
|
|
||||||
|
There is no such thing as perfect software and this is all the more true when the tools used require different
|
||||||
|
access rights depending on
|
||||||
|
the operating system. Please note the following restrictions
|
||||||
|
before using this tool in a productive system.
|
||||||
|
|
||||||
|
**Linux**: iwlist does only return all found networks if run as sudo! Otherwise you'll
|
||||||
|
get only the network you're connected to.
|
||||||
|
|
||||||
|
**Windows**: there are some network cards which do not
|
||||||
|
return the MAC address and other parameters of the found networks. In this case
|
||||||
|
the "found" networks are ignored as there is no valuable data. If you have this effect
|
||||||
|
on your system, please provide as many information about your system (PC manufacturer, network
|
||||||
|
card, OS,...) as available. Thanks
|
||||||
|
|
||||||
## Licence
|
## Licence
|
||||||
|
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
4
bin/scan
4
bin/scan
@ -5,7 +5,7 @@
|
|||||||
* Created by kc on 04.04.16.
|
* Created by kc on 04.04.16.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var scanner = require('../index');
|
const scanner = require('../index');
|
||||||
|
|
||||||
scanner.scan((err, output) => {
|
scanner.scan((err, output) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
@ -13,4 +13,4 @@ scanner.scan((err, output) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log(output);
|
console.log(output);
|
||||||
});
|
});
|
||||||
|
64
index.js
64
index.js
@ -3,36 +3,62 @@
|
|||||||
* Created by kc on 04.04.16.
|
* Created by kc on 04.04.16.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
const exec = require('child_process').exec;
|
const exec = require('child_process').exec;
|
||||||
|
const async = require('async');
|
||||||
|
const _ = require('lodash');
|
||||||
// The tools
|
// The tools
|
||||||
const airport = require('./lib/airport');
|
const airport = require('./lib/airport');
|
||||||
const iwlist = require('./lib/iwlist');
|
const iwlist = require('./lib/iwlist');
|
||||||
const netsh = require('./lib/netsh');
|
const netsh = require('./lib/netsh');
|
||||||
|
|
||||||
var scanner;
|
let scanner;
|
||||||
|
|
||||||
// Initializing the tools
|
// Initializing the tools
|
||||||
function initTools(callback) {
|
function initTools(callback) {
|
||||||
fs.stat(airport.tool, function (err, stats) {
|
|
||||||
if (stats) {
|
|
||||||
return callback(null, airport);
|
|
||||||
}
|
|
||||||
|
|
||||||
fs.stat(iwlist.tool, function (err, stats) {
|
// When a command is not found, an error is issued and async would finish. Therefore we pack
|
||||||
if (stats) {
|
// the error into the result and check it later on.
|
||||||
return callback(null, iwlist);
|
async.parallel([
|
||||||
|
function (cb) {
|
||||||
|
exec(airport.detector, function (err) {
|
||||||
|
cb(null, {err: err, scanner: airport}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
function (cb) {
|
||||||
|
exec(iwlist.detector, function (err) {
|
||||||
|
cb(null, {err: err, scanner: iwlist}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
function (cb) {
|
||||||
|
exec(netsh.detector, function (err) {
|
||||||
|
cb(null, {err: err, scanner: netsh}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
fs.stat(netsh.tool, function (err, stats) {
|
],
|
||||||
if (stats) {
|
function (err, results) {
|
||||||
return callback(null, netsh);
|
let res = _.find(results,
|
||||||
}
|
function (f) {
|
||||||
callback(new Error('No scanner found'));
|
return !f.err
|
||||||
});
|
});
|
||||||
});
|
|
||||||
});
|
if (res) {
|
||||||
|
return callback(null, res.scanner);
|
||||||
|
}
|
||||||
|
callback(new Error('No scanner found'));
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scan the networks with the scanner detected before
|
||||||
|
* @param callback
|
||||||
|
*/
|
||||||
function scanNetworks(callback) {
|
function scanNetworks(callback) {
|
||||||
exec(scanner.cmdLine, function (err, stdout) {
|
exec(scanner.cmdLine, function (err, stdout) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@ -50,7 +76,7 @@ module.exports = {
|
|||||||
*/
|
*/
|
||||||
scan: function (callback) {
|
scan: function (callback) {
|
||||||
if (!scanner) {
|
if (!scanner) {
|
||||||
initTools((err, s) => {
|
initTools(function (err, s) {
|
||||||
if (err) {
|
if (err) {
|
||||||
return callback(err);
|
return callback(err);
|
||||||
}
|
}
|
||||||
@ -61,4 +87,4 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
scanNetworks(callback);
|
scanNetworks(callback);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -3,47 +3,51 @@
|
|||||||
* Created by kc on 04.04.16.
|
* Created by kc on 04.04.16.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const tool = '/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport';
|
const tool = '/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport';
|
||||||
const cmdLine = tool + ' -s';
|
const cmdLine = tool + ' -s';
|
||||||
|
const detector = tool + ' -getInfo';
|
||||||
|
|
||||||
const macRegex = /([0-9a-zA-Z]{1}[0-9a-zA-Z]{1}[:]{1}){5}[0-9a-zA-Z]{1}[0-9a-zA-Z]{1}/;
|
const macRegex = /([0-9a-zA-Z]{1}[0-9a-zA-Z]{1}[:]{1}){5}[0-9a-zA-Z]{1}[0-9a-zA-Z]{1}/;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parsing the output of airport (Mac OS X)
|
* Parsing the output of airport (Mac OS X)
|
||||||
* @param str output of the tool
|
* @param str output of the tool
|
||||||
* @param callback
|
* @param callback
|
||||||
*/
|
*/
|
||||||
function parseOutput(str, callback) {
|
function parseOutput(str, callback) {
|
||||||
var err = null;
|
let err = null;
|
||||||
|
let wifis = [];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var lines = str.split('\n');
|
let lines = str.split('\n');
|
||||||
var wifis = [];
|
|
||||||
|
for (let i = 1, l = lines.length; i < l; i++) {
|
||||||
for (var i = 1, l = lines.length; i < l; i++) {
|
let mac = lines[i].match(macRegex);
|
||||||
var mac = lines[i].match(macRegex);
|
|
||||||
if (!mac) {
|
if (!mac) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var macStart = lines[i].indexOf(mac[0]);
|
let macStart = lines[i].indexOf(mac[0]);
|
||||||
var elements = lines[i].substr(macStart).split(/[ ]+/);
|
let elements = lines[i].substr(macStart).split(/[ ]+/);
|
||||||
wifis.push({
|
wifis.push({
|
||||||
'ssid' : lines[i].substr(0, macStart).trim(),
|
'ssid' : lines[i].substr(0, macStart).trim(),
|
||||||
'mac' : elements[0].trim(),
|
'mac' : elements[0].trim(),
|
||||||
'channel' : parseInt(elements[2].trim(), 10),
|
'channel': parseInt(elements[2].trim(), 10),
|
||||||
'rssi' : parseInt(elements[1].trim())
|
'rssi' : parseInt(elements[1].trim(), 10)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
err = ex;
|
err = ex;
|
||||||
}
|
}
|
||||||
|
finally {
|
||||||
callback(err, wifis);
|
callback(err, wifis);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
parseOutput: parseOutput,
|
parseOutput: parseOutput,
|
||||||
cmdLine : cmdLine,
|
cmdLine : cmdLine,
|
||||||
|
detector : detector,
|
||||||
tool : tool
|
tool : tool
|
||||||
};
|
};
|
||||||
|
@ -3,27 +3,32 @@
|
|||||||
* Created by kc on 04.04.16.
|
* Created by kc on 04.04.16.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
const tool = '/usr/bin/iwlist';
|
// usually located in /usr/bin/ but as it could be at another location, allow all found in PATH (but we're in trouble
|
||||||
const cmdLine = tool + ' scan';
|
// when the default location, /usr/bin/ is not in the PATH!). GitHub issue #1
|
||||||
|
const tool = 'iwlist';
|
||||||
|
const cmdLine = tool + ' scan';
|
||||||
|
const detector = tool + ' --help';
|
||||||
|
|
||||||
|
|
||||||
const macRegex = /([0-9a-zA-Z]{1}[0-9a-zA-Z]{1}[:]{1}){5}[0-9a-zA-Z]{1}[0-9a-zA-Z]{1}/;
|
const macRegex = /([0-9a-zA-Z]{1}[0-9a-zA-Z]{1}[:]{1}){5}[0-9a-zA-Z]{1}[0-9a-zA-Z]{1}/;
|
||||||
const cellRegex = /Cell [0-9]{2,} - Address:/;
|
const cellRegex = /Cell [0-9]{2,} - Address:/;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parsing the output of iwlist, tool having a lot of different faces :-(
|
* Parsing the output of iwlist, tool having a lot of different faces :-(
|
||||||
* @param str output of the tool
|
* @param str output of the tool
|
||||||
* @param callback
|
* @param callback
|
||||||
*/
|
*/
|
||||||
function parseOutput(str, callback) {
|
function parseOutput(str, callback) {
|
||||||
var err = null;
|
let err = null;
|
||||||
var wifis = [];
|
let wifis = [];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var blocks = str.split(cellRegex);
|
let blocks = str.split(cellRegex);
|
||||||
|
|
||||||
blocks.forEach(block => {
|
blocks.forEach(block => {
|
||||||
var network = {};
|
let network = {};
|
||||||
var lines = block.split('\n');
|
let lines = block.split('\n');
|
||||||
if (macRegex.exec(lines[0])) {
|
if (macRegex.exec(lines[0])) {
|
||||||
// First line is the mac address (always! (?))
|
// First line is the mac address (always! (?))
|
||||||
network.mac = lines[0].trim();
|
network.mac = lines[0].trim();
|
||||||
@ -39,25 +44,24 @@ function parseOutput(str, callback) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Channel, an ugly thing to get it
|
// Channel, an ugly thing to get it
|
||||||
else if (_.startsWith(line.trim(), 'Frequency:')) {
|
else if (_.startsWith(line.trim(), 'Channel:')) {
|
||||||
network.channel = parseInt(_.trim(line, ' )').split(/Channel/)[1], 10);
|
network.channel = parseInt(_.trim(line, ' )').split(/:/)[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Another ugly thing, the signal which can have different formats, even worse als
|
// Another ugly thing, the signal which can have different formats, even worse als
|
||||||
// having different identifiers
|
// having different identifiers
|
||||||
else if (line.indexOf('Signal level') > -1) {
|
else if (line.indexOf('Signal level') > -1) {
|
||||||
if (line.indexOf('Quality') > -1) {
|
if (line.indexOf('Quality') > -1) {
|
||||||
// This is a "Quality=40/70 Signal level=-70 dBm" line
|
// This is a "Quality=40/70 Signal level=-70 dBm" line
|
||||||
network.rssi = parseInt(line.substr(line.indexOf('Signal level') + 13), 10);
|
network.rssi = parseInt(line.substr(line.indexOf('Signal level') + 13), 10);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
// This is a "Signal level=60/100" line
|
// This is a "Signal level=60/100" line
|
||||||
var elements = line.split('=');
|
let elements = line.split('=');
|
||||||
elements.forEach(e => {
|
elements.forEach(e => {
|
||||||
if (e.indexOf('/') > 0) {
|
if (e.indexOf('/') > 0) {
|
||||||
// that's our part
|
// that's our part
|
||||||
var parts = e.split('/');
|
let parts = e.split('/');
|
||||||
var level = Math.floor(100 * parseInt(parts[0], 10) / parseInt(parts[1], 10));
|
let level = Math.floor(100 * parseInt(parts[0], 10) / parseInt(parts[1], 10));
|
||||||
network.rssi = level / 2 - 100;
|
network.rssi = level / 2 - 100;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -79,5 +83,6 @@ function parseOutput(str, callback) {
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
parseOutput: parseOutput,
|
parseOutput: parseOutput,
|
||||||
cmdLine : cmdLine,
|
cmdLine : cmdLine,
|
||||||
|
detector : detector,
|
||||||
tool : tool
|
tool : tool
|
||||||
};
|
};
|
||||||
|
30
lib/netsh.js
30
lib/netsh.js
@ -6,6 +6,7 @@
|
|||||||
const systemRoot = process.env.SystemRoot || 'C:\\Windows';
|
const systemRoot = process.env.SystemRoot || 'C:\\Windows';
|
||||||
const tool = systemRoot + '\\System32\\netsh.exe';
|
const tool = systemRoot + '\\System32\\netsh.exe';
|
||||||
const cmdLine = tool + ' wlan show networks mode=Bssid';
|
const cmdLine = tool + ' wlan show networks mode=Bssid';
|
||||||
|
const detector = tool + ' show alias';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parsing netnsh output. Unfortunately netsh supplies the network information
|
* Parsing netnsh output. Unfortunately netsh supplies the network information
|
||||||
@ -14,9 +15,9 @@ const cmdLine = tool + ' wlan show networks mode=Bssid';
|
|||||||
* an approach of analyzing the structure of the output
|
* an approach of analyzing the structure of the output
|
||||||
*/
|
*/
|
||||||
function parseOutput(str, callback) {
|
function parseOutput(str, callback) {
|
||||||
var blocks = str.split('\n\n');
|
let blocks = str.split('\n\n');
|
||||||
var wifis = [];
|
let wifis = [];
|
||||||
var err = null;
|
let err = null;
|
||||||
try {
|
try {
|
||||||
if (blocks.length < 2) {
|
if (blocks.length < 2) {
|
||||||
// 2nd try, with \r\n
|
// 2nd try, with \r\n
|
||||||
@ -39,18 +40,18 @@ function parseOutput(str, callback) {
|
|||||||
// Channel : 6
|
// Channel : 6
|
||||||
// Basic rates (MBit/s) : 1 2 5.5 11
|
// Basic rates (MBit/s) : 1 2 5.5 11
|
||||||
// Other rates (MBit/s) : 6 9 12 18 24 36 48 54
|
// Other rates (MBit/s) : 6 9 12 18 24 36 48 54
|
||||||
for (var i = 1, l = blocks.length; i < l; i++) {
|
for (let i = 1, l = blocks.length; i < l; i++) {
|
||||||
var network = {};
|
let network = {};
|
||||||
var lines = blocks[i].split('\n');
|
let lines = blocks[i].split('\n');
|
||||||
var regexChannel = /[a-zA-Z0-9()\s]+:[\s]*[0-9]+$/g;
|
let regexChannel = /[a-zA-Z0-9()\s]+:[\s]*[0-9]+$/g;
|
||||||
if (!lines || lines.length < 2) {
|
if (!lines || lines.length < 2) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// First line is always the SSID (which can be empty)
|
// First line is always the SSID (which can be empty)
|
||||||
var ssid = lines[0].substring(lines[0].indexOf(':') + 1).trim();
|
let ssid = lines[0].substring(lines[0].indexOf(':') + 1).trim();
|
||||||
|
|
||||||
for (var t = 1, n = lines.length; t < n; t++) {
|
for (let t = 1, n = lines.length; t < n; t++) {
|
||||||
if (lines[t].split(':').length === 7) {
|
if (lines[t].split(':').length === 7) {
|
||||||
// This is the mac address, use this one as trigger for a new network
|
// This is the mac address, use this one as trigger for a new network
|
||||||
if (network.mac) {
|
if (network.mac) {
|
||||||
@ -60,18 +61,16 @@ function parseOutput(str, callback) {
|
|||||||
ssid: ssid,
|
ssid: ssid,
|
||||||
mac : lines[t].substring(lines[t].indexOf(':') + 1).trim()
|
mac : lines[t].substring(lines[t].indexOf(':') + 1).trim()
|
||||||
};
|
};
|
||||||
}
|
} else if (lines[t].indexOf('%') > 0) {
|
||||||
else if (lines[t].indexOf('%') > 0) {
|
|
||||||
// Network signal strength, identified by '%'
|
// Network signal strength, identified by '%'
|
||||||
var level = parseInt(lines[t].split(':')[1].split('%')[0].trim(), 10);
|
let level = parseInt(lines[t].split(':')[1].split('%')[0].trim(), 10);
|
||||||
|
|
||||||
network.rssi = (level / 2) - 100;
|
network.rssi = (level / 2) - 100;
|
||||||
}
|
} else if (!network.channel) {
|
||||||
else if (!network.channel) {
|
|
||||||
// A tricky one: the channel is the first one having just ONE number. Set only
|
// A tricky one: the channel is the first one having just ONE number. Set only
|
||||||
// if the channel is not already set ("Basic Rates" can be a single number also)
|
// if the channel is not already set ("Basic Rates" can be a single number also)
|
||||||
if (regexChannel.exec(lines[t].trim())) {
|
if (regexChannel.exec(lines[t].trim())) {
|
||||||
network.channel = parseInt(lines[t].split(':')[1].trim());
|
network.channel = parseInt(lines[t].split(':')[1].trim(), 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -90,5 +89,6 @@ function parseOutput(str, callback) {
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
parseOutput: parseOutput,
|
parseOutput: parseOutput,
|
||||||
cmdLine : cmdLine,
|
cmdLine : cmdLine,
|
||||||
|
detector : detector,
|
||||||
tool : tool
|
tool : tool
|
||||||
};
|
};
|
||||||
|
1666
package-lock.json
generated
Normal file
1666
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
11
package.json
11
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-wifi-scanner",
|
"name": "node-wifi-scanner",
|
||||||
"version": "1.0.0",
|
"version": "1.1.2",
|
||||||
"description": "node.js module for WiFi network detection",
|
"description": "node.js module for WiFi network detection",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -35,11 +35,12 @@
|
|||||||
"test": "mocha test"
|
"test": "mocha test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "4.8.1"
|
"async": "3.1.0",
|
||||||
|
"lodash": "4.17.15"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "0.4.5",
|
"grunt": "^1.0.3",
|
||||||
"grunt-bump": "0.7.0",
|
"grunt-bump": "0.8.0",
|
||||||
"mocha": "2.2.5"
|
"mocha": "6.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@ describe('airport', () => {
|
|||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
assert.equal(info.length, 36);
|
assert.equal(info.length, 36);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '00:35:1a:90:56:03');
|
assert.equal(ap.mac, '00:35:1a:90:56:03');
|
||||||
assert.equal(ap.ssid, 'OurTest');
|
assert.equal(ap.ssid, 'OurTest');
|
||||||
assert.equal(ap.rssi, -70);
|
assert.equal(ap.rssi, -70);
|
||||||
@ -49,7 +49,7 @@ describe('airport', () => {
|
|||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
assert.equal(info.length, 4);
|
assert.equal(info.length, 4);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '7c:b7:33:ae:3b:06');
|
assert.equal(ap.mac, '7c:b7:33:ae:3b:06');
|
||||||
assert.equal(ap.ssid, 'Raupo');
|
assert.equal(ap.ssid, 'Raupo');
|
||||||
assert.equal(ap.rssi, -80);
|
assert.equal(ap.rssi, -80);
|
||||||
@ -64,4 +64,4 @@ describe('airport', () => {
|
|||||||
done(err);
|
done(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -22,7 +22,7 @@ describe('iwlist', () => {
|
|||||||
|
|
||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, 'D4:D1:84:50:76:45');
|
assert.equal(ap.mac, 'D4:D1:84:50:76:45');
|
||||||
assert.equal(ap.ssid, 'gsy-97796');
|
assert.equal(ap.ssid, 'gsy-97796');
|
||||||
assert.equal(ap.rssi, -76);
|
assert.equal(ap.rssi, -76);
|
||||||
@ -40,7 +40,7 @@ describe('iwlist', () => {
|
|||||||
iwlist.parseOutput(fs.readFileSync(path.join(__dirname, 'fixtures','iwlist','iwlist03_raspi.txt'), { encoding: 'utf8' }), (err, info) => {
|
iwlist.parseOutput(fs.readFileSync(path.join(__dirname, 'fixtures','iwlist','iwlist03_raspi.txt'), { encoding: 'utf8' }), (err, info) => {
|
||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '00:35:1A:90:56:00');
|
assert.equal(ap.mac, '00:35:1A:90:56:00');
|
||||||
assert.equal(ap.ssid, 'LORA-Wifi');
|
assert.equal(ap.ssid, 'LORA-Wifi');
|
||||||
assert.equal(ap.rssi, -71);
|
assert.equal(ap.rssi, -71);
|
||||||
@ -55,4 +55,4 @@ describe('iwlist', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -16,7 +16,7 @@ describe('netsh', function () {
|
|||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
assert.equal(info.length, 86);
|
assert.equal(info.length, 86);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '00:f2:8b:8c:a6:88');
|
assert.equal(ap.mac, '00:f2:8b:8c:a6:88');
|
||||||
assert.equal(ap.ssid, '');
|
assert.equal(ap.ssid, '');
|
||||||
assert.equal(ap.rssi, -88.5);
|
assert.equal(ap.rssi, -88.5);
|
||||||
@ -55,7 +55,7 @@ describe('netsh', function () {
|
|||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
assert.equal(info.length, 86);
|
assert.equal(info.length, 86);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '00:f2:8b:8c:a6:88');
|
assert.equal(ap.mac, '00:f2:8b:8c:a6:88');
|
||||||
assert.equal(ap.ssid, '');
|
assert.equal(ap.ssid, '');
|
||||||
assert.equal(ap.rssi, -88.5);
|
assert.equal(ap.rssi, -88.5);
|
||||||
@ -94,7 +94,7 @@ describe('netsh', function () {
|
|||||||
assert.ok(info);
|
assert.ok(info);
|
||||||
assert.equal(info.length, 8);
|
assert.equal(info.length, 8);
|
||||||
|
|
||||||
var ap = info[0];
|
let ap = info[0];
|
||||||
assert.equal(ap.mac, '98:fc:11:b6:88:9e');
|
assert.equal(ap.mac, '98:fc:11:b6:88:9e');
|
||||||
assert.equal(ap.ssid, 'CARAMANZANAS_BAJA');
|
assert.equal(ap.ssid, 'CARAMANZANAS_BAJA');
|
||||||
assert.equal(ap.rssi, -86);
|
assert.equal(ap.rssi, -86);
|
||||||
|
Reference in New Issue
Block a user