diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-30 16:11:03 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-04-17 23:05:59 +0900 |
commit | 616ae9f2cd960e9e7b49bbceee4a0424806b8ef2 (patch) | |
tree | 823fd6203b70f669a786fc456f67f0aa2fa57dd6 /test/scenario_test | |
parent | c3b41aff3842482cc7725e35f59279d3104c5c34 (diff) |
scenario_test/README: Remove redundant brake tag
Also adds the language type of code blocks.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/scenario_test')
-rw-r--r-- | test/scenario_test/README.md | 92 |
1 files changed, 43 insertions, 49 deletions
diff --git a/test/scenario_test/README.md b/test/scenario_test/README.md index 10449a76..f8d1364e 100644 --- a/test/scenario_test/README.md +++ b/test/scenario_test/README.md @@ -36,7 +36,6 @@ Server: Git commit: 76d6bc9 Built: Tue Nov 3 17:43:42 UTC 2015 OS/Arch: linux/amd64 - ``` ## <a name="section1"> Set up dependencies @@ -44,73 +43,67 @@ Execute the following commands inside the VM to install the dependencies: 1. Install pip and [pipework](https://github.com/jpetazzo/pipework). - ```shell - $ sudo apt-get update - $ sudo apt-get install git python-pip python-dev iputils-arping bridge-utils lv - $ sudo wget https://raw.github.com/jpetazzo/pipework/master/pipework -O /usr/local/bin/pipework - $ sudo chmod 755 /usr/local/bin/pipework - ``` - <br> +```shell +$ sudo apt-get update +$ sudo apt-get install git python-pip python-dev iputils-arping bridge-utils lv +$ sudo wget https://raw.github.com/jpetazzo/pipework/master/pipework -O /usr/local/bin/pipework +$ sudo chmod 755 /usr/local/bin/pipework +``` -1. Get docker images. +2. Get docker images. Download docker images pertaining to GoBGP testing. - ```shell - $ sudo docker pull golang:1.7 - $ sudo docker pull osrg/gobgp - $ sudo docker pull osrg/quagga - $ sudo docker pull osrg/quagga:v1.0 - $ sudo docker pull osrg/exabgp - ``` - <br> - -1. Clone gobgp and install python libraries. - - ```shell - $ mkdir -p $GOPATH/src/github.com/osrg - $ cd $GOPATH/src/github.com/osrg - $ git clone https://github.com/osrg/gobgp.git - $ cd ./gobgp/test - $ sudo pip install -r pip-requires.txt - ``` -<br> +```shell +$ sudo docker pull golang:1.7 +$ sudo docker pull osrg/gobgp +$ sudo docker pull osrg/quagga +$ sudo docker pull osrg/quagga:v1.0 +$ sudo docker pull osrg/exabgp +``` + +3. Clone GoBGP and install python libraries. + +```shell +$ mkdir -p $GOPATH/src/github.com/osrg +$ cd $GOPATH/src/github.com/osrg +$ git clone https://github.com/osrg/gobgp.git +$ cd ./gobgp/test +$ sudo pip install -r pip-requires.txt +``` ## <a name="section2"> Install local source code -You need to install local source code into gobgp docker container. +You need to install local source code into GoBGP docker container. You also need this operation at every modification to the source code. -``` +```shell $ cd $GOPATH/src/github.com/osrg/gobgp $ sudo fab -f ./test/lib/base.py make_gobgp_ctn --set tag=gobgp ``` - ## <a name="section3"> Run test -1. Run all test - +1. Run all test. You can run all scenario tests with run_all_tests.sh. If all tests passed, you can see "all tests passed successfully" at the end of the test. - ```shell - $ cd $GOPATH/src/github.com/osrg/gobgp/test/scenario_test - $ ./run_all_tests.sh - ... - OK - all tests passed successfully - ``` - <br> -2. Run each test +```shell +$ cd $GOPATH/src/github.com/osrg/gobgp/test/scenario_test +$ ./run_all_tests.sh +... +OK +all tests passed successfully +``` +2. Run each test. Gobgp have a scenario test shown in the following. You can run scenario tests individually with each test file. - ```shell - $ cd $GOPATH/src/github.com/osrg/gobgp/test/scenario_test - $ sudo -E PYTHONPATH=$GOBGP/test python <scenario test name>.py - ... - OK - ``` +```shell +$ cd $GOPATH/src/github.com/osrg/gobgp/test/scenario_test +$ sudo -E PYTHONPATH=$GOBGP/test python <scenario test name>.py +... +OK +``` what kind of scenaio tests: - bgp_router_test @@ -129,6 +122,7 @@ $ sudo fab -f ./test/lib/base.py make_gobgp_ctn --set tag=gobgp ## <a name="section4"> Clean up A lot of containers are created during the test. Let's clean up. -``` + +```shell $ sudo docker rm -f $(sudo docker ps -a -q) ``` |