diff --git a/webrtc/tools/rtcbot/README b/webrtc/tools/rtcbot/README index bfa981c5a0..1f4d7c11c1 100644 --- a/webrtc/tools/rtcbot/README +++ b/webrtc/tools/rtcbot/README @@ -17,8 +17,18 @@ access its exposed API. Details are in botmanager.js. == How to run the test == $ cd trunk/webrtc/tool/rtcbot $ npm install express browserify ws websocket-stream dnode + $ mkdir configurations + $ cd configurations + $ openssl genrsa -out priv.pem 1024 + $ openssl req -x509 -new -key priv.pem -days 3650 -out cert.crt + $ cd trunk/webrtc/tool/rtcbot $ node main.js "" +* Note: + In first time you will use rtcBot you will receive a warning telling + you that your connection is not private. Just avoid this warning and + click Proceed to localhost (unsafe). + == How can I see the list of available tests? == $ node main.js @@ -29,6 +39,10 @@ access its exposed API. Details are in botmanager.js. $ nvm install 0.10 $ nvm use 0.10 +== Why generating the private key and self signed certificate? == + - Private key and certificate are used for creating HTTPs server in + rtcBot for loading the required files on the different types of the bots. + == Supported Bot Types == - "chrome": chrome on host machine. - "android-chrome": chrome on android device. Details in "Android" Section. diff --git a/webrtc/tools/rtcbot/bot/api.js b/webrtc/tools/rtcbot/bot/api.js index b51d49df2d..7e1a436ed3 100644 --- a/webrtc/tools/rtcbot/bot/api.js +++ b/webrtc/tools/rtcbot/bot/api.js @@ -15,7 +15,7 @@ var WebSocketStream = require('websocket-stream'); var Dnode = require('dnode'); function connectToServer(api) { - var stream = new WebSocketStream("ws://127.0.0.1:8080/"); + var stream = new WebSocketStream("wss://localhost:8080/"); var dnode = new Dnode(api); dnode.on('error', function (error) { console.log(error); }); dnode.pipe(stream).pipe(dnode); diff --git a/webrtc/tools/rtcbot/botmanager.js b/webrtc/tools/rtcbot/botmanager.js index cd88f19f40..5b325bd839 100644 --- a/webrtc/tools/rtcbot/botmanager.js +++ b/webrtc/tools/rtcbot/botmanager.js @@ -8,7 +8,8 @@ // // botmanager.js module allows a test to spawn bots that expose an RPC API // to be controlled by tests. -var http = require('http'); +var https = require('https'); +var fs = require('fs'); var child = require('child_process'); var Browserify = require('browserify'); var Dnode = require('dnode'); @@ -16,7 +17,7 @@ var Express = require('express'); var WebSocketServer = require('ws').Server; var WebSocketStream = require('websocket-stream'); -// BotManager runs a HttpServer that serves bots assets and and WebSocketServer +// BotManager runs a HttpsServer that serves bots assets and and WebSocketServer // that listens to incoming connections. Once a connection is available it // connects it to bots pending endpoints. // @@ -66,7 +67,11 @@ BotManager.prototype = { this.app_.use('/bot/', Express.static(__dirname + '/bot')); - this.server_ = http.createServer(this.app_); + var options = options = { + key: fs.readFileSync('configurations/priv.pem', 'utf8'), + cert: fs.readFileSync('configurations/cert.crt', 'utf8') + }; + this.server_ = https.createServer(options, this.app_); this.webSocketServer_ = new WebSocketServer({ server: this.server_ }); this.webSocketServer_.on('connection', this.onConnection_.bind(this)); @@ -116,7 +121,7 @@ Bot.prototype = { } } -// BrowserBot spawns a process to open "http://localhost:8080/bot/browser". +// BrowserBot spawns a process to open "https://localhost:8080/bot/browser". // // That page once loaded, connects to the websocket server run by BotManager // and exposes the bot api. @@ -128,14 +133,14 @@ BrowserBot = function (name, callback) { BrowserBot.prototype = { spawnBotProcess_: function () { this.log('Spawning browser'); - child.exec('google-chrome "http://localhost:8080/bot/browser/"'); + child.exec('google-chrome "https://localhost:8080/bot/browser/"'); }, __proto__: Bot.prototype } // AndroidChromeBot spawns a process to open -// "http://localhost:8080/bot/browser/" on chrome for Android. +// "https://localhost:8080/bot/browser/" on chrome for Android. AndroidChromeBot = function (name, androidDeviceManager, callback) { Bot.call(this, name, callback); androidDeviceManager.getNewDevice(function (serialNumber) { @@ -149,7 +154,7 @@ AndroidChromeBot.prototype = { this.log('Spawning Android device with serial ' + this.serialNumber_); var runChrome = 'adb -s ' + this.serialNumber_ + ' shell am start ' + '-n com.android.chrome/com.google.android.apps.chrome.Main ' + - '-d http://localhost:8080/bot/browser/'; + '-d https://localhost:8080/bot/browser/'; child.exec(runChrome, function (error, stdout, stderr) { if (error) { this.log(error);