blob: 2ae7a9ffe84cd1d5889e563bab537a4988e76ead (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
Route Server Scenario Test
========================
Preparation
-----------
Please set up Ubuntu 14.04 Server Edition virtual machine,
and install golang environment inside the VM.
Setup
-----
Execute the following commands on a shell inside the VM:
install the python packages and libraries required to run the test program and clone gobgp repository.
```
% sudo su -
# apt-get install python-pip
# apt-get install python-dev
# git clone https://github.com/osrg/gobgp.git
# cd ./gobgp
# go get -v
# cd ./test/scenario_test
# pip install -r pip-requires.txt
```
This step installs other packages such as Docker container and generates some helper scripts needed by the scenario test.
```
# fab -f docker_control.py install_docker_and_tools
```
Please make sure following packages are installed properly inside the VM.
・docker
・bridge-utils
・pipework
Start
-----
Please run the test script as root.
route_server_test.py is scenario test script.
```
# python route_server_test.py -v [ --use-local ] [--go-path=<path>]
```
If you want to do malformed packet test, please run route_server_malformed_test.py
```
# python route_server_malformed_test.py -v [ --use-local ] [--go-path=<path>]
```
After the test, test results will be shown.
Notes
-----
use [ --use-local ] option when execute gobgp program of local system.
use [ --go-path ] option when not root and use sudo command.
|