From d2828dcd84b1c1b8f1699da98ec7f17cf58228da Mon Sep 17 00:00:00 2001 From: Daniel Farrell Date: Tue, 7 Jun 2016 11:48:35 -0400 Subject: Use current ODL Integration/Test repo ODL Integration used to contain system testing, Karaf distribution building and packaging/delivery logic. It was split into three projects in August 2015: Int/Test, Int/Distribution and Int/Packaging. https://wiki.opendaylight.org/view/Archive_Proposals/Integration The integration.git repo Functest was cloning is the old one, containing all three projects. It hasn't been updated since the split. The new integration-test.git repo is the current version of ODL's system test code. This change also clones ODL from its official Gerrit, instead of its GitHub mirror. Change-Id: I6b38b1fedada504411ca0e0639355339f373084c Signed-off-by: Daniel Farrell --- docker/Dockerfile | 2 +- testcases/Controllers/ODL/start_tests.sh | 6 +++--- testcases/Controllers/ODL/test_list.txt | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f119cbb9..874a0638 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -72,7 +72,7 @@ RUN git clone https://gerrit.opnfv.org/gerrit/releng ${repos_dir}/releng RUN git clone https://gerrit.opnfv.org/gerrit/doctor ${repos_dir}/doctor RUN git clone -b 0.3.3 https://github.com/openstack/rally.git ${repos_dir}/rally RUN git clone https://github.com/openstack/tempest.git ${repos_dir}/tempest -RUN git clone https://github.com/opendaylight/integration.git ${repos_dir}/odl_integration +RUN git clone https://git.opendaylight.org/gerrit/p/integration/test.git ${repos_dir}/odl_test RUN git clone -b stable https://github.com/boucherv-orange/clearwater-live-test ${repos_dir}/vims-test RUN git clone https://github.com/openstack/networking-bgpvpn ${repos_dir}/bgpvpn RUN git clone https://gerrit.onosproject.org/OnosSystemTest ${repos_dir}/onos diff --git a/testcases/Controllers/ODL/start_tests.sh b/testcases/Controllers/ODL/start_tests.sh index 3800b630..7f5f121b 100755 --- a/testcases/Controllers/ODL/start_tests.sh +++ b/testcases/Controllers/ODL/start_tests.sh @@ -9,7 +9,7 @@ BASEDIR=`dirname $0` RESULTS_DIR='/home/opnfv/functest/results/odl/' -REPO_DIR='/home/opnfv/repos/odl_integration' +REPO_DIR='/home/opnfv/repos/odl_test' #TODO: read this form config_functest.yaml # Colors @@ -54,7 +54,7 @@ NEUTRON_IP=${NEUTRON_IP:-192.168.0.68} KEYSTONE_IP=${KEYSTONE_IP:-192.168.0.69} set +x -init_file=${REPO_DIR}/test/csit/suites/openstack/neutron/__init__.robot +init_file=${REPO_DIR}/csit/suites/openstack/neutron/__init__.robot # Change openstack password for admin tenant in neutron suite sed -i "s/\"password\": \".*\"/\"password\": \"${PASS}\"/" $init_file @@ -66,7 +66,7 @@ fi # add custom tests to suite, if there are more custom tests needed this will be reworked echo -e "${green}Copy custom tests to suite.${nc}" -cp -vf ${BASEDIR}/custom_tests/neutron/* ${REPO_DIR}/test/csit/suites/openstack/neutron/ +cp -vf ${BASEDIR}/custom_tests/neutron/* ${REPO_DIR}/csit/suites/openstack/neutron/ # List of tests are specified in test_list.txt # those are relative paths to test directories from integartion suite diff --git a/testcases/Controllers/ODL/test_list.txt b/testcases/Controllers/ODL/test_list.txt index ad791e55..ec8cd32e 100644 --- a/testcases/Controllers/ODL/test_list.txt +++ b/testcases/Controllers/ODL/test_list.txt @@ -1,5 +1,5 @@ # List of tests` which will be executed by script start_test.sh # You can specify path to specific robot test file or directory (in that case all tests from directory will be executed) -test/csit/suites/integration/basic/ -test/csit/suites/openstack/neutron/ +csit/suites/integration/basic/ +csit/suites/openstack/neutron/ -- cgit 1.2.3-korg