• Home
  • History
  • Annotate
  • only in /external/chromium_org/third_party/webrtc/tools/rtcbot/
NameDateSize

..12-Mar-20154 KiB

bot/12-Mar-20154 KiB

botmanager.js12-Mar-20156.4 KiB

OWNERS12-Mar-201540

README12-Mar-20151.6 KiB

test/12-Mar-20154 KiB

test.js12-Mar-20152.5 KiB

README

1=== RTCBot ===
2RTCBot is a framework to write tests that need to spawn multiple webrtc
3endpoints.
4
5== Description ==
6RTCBot is a framework that allows to write tests where logic runs on a single
7host that controls multiple endpoints ("bots"). It allows creating complex
8scenarios that would otherwise require non-trival signalling between multiple
9parties.
10
11The host runs in node.js, but the test code is run in an isolated context with
12no access to node.js specifics other than the exposed api via a test variable.
13
14Part of the exposed api (test.spawnBot) allows a test to spawn a bot and
15access its exposed API. Details are in botmanager.js.
16
17== How to run the test ==
18 $ cd trunk/webrtc/tool/rtcbot
19 $ npm install express browserify ws websocket-stream dnode
20 $ node test.js <bot_type> <test_file_path>
21
22 <bot_type> — the type of the running bot. For example:
23  - chrome: chrome on host machine.
24  - android: android device. Details in "Android" Section.
25  - android-chrome: chrome on android device. Details in "Android" Section.
26
27== Example on how to install nodejs ==
28 $ cd /work/tools/
29 $ git clone https://github.com/creationix/nvm.git
30 $ export NVM_DIR=/work/tools/nvm; source $NVM_DIR/nvm.sh
31 $ nvm install 0.10
32 $ nvm use 0.10
33
34== Android ==
35Before running test with Android one MUST forward the device port 8080 to the
36host machine. That is easy to achieve with chrome port forwarding tools.
37 - Visit chrome://inspect/devices on the host machine.
38 - Configure and enable port forwarding 8080 -> localhost:8080
39 - Open chrome on you Android device before running test, and leave it
40   running until the end of test.
41 - Run your test.
42