****************************** OPNFV FUNCTEST developer guide ****************************** .. toctree:: :numbered: :maxdepth: 2 ============ Introduction ============ This document describes how feature projects aiming to run functional tests can be integrated into FuncTest framework. ================================ Functest High level architecture ================================ Functest is project delivering a test container dedicated to OPNFV. It includes the tools, the scripts and the test scenarios. Functest can be described as follow:: +----------------------+ | | | +--------------+ | +-------------------+ | | | | Public | | | | Tools | +------------------+ OPNFV | | | Scripts | | | System Under Test | | | Scenarios | +------------------+ | | | | | Management | | | +--------------+ | +-------------------+ | | | Functest Docker | | | +----------------------+ Functest deals with internal and external test cases. The Internal test cases in Brahmaputra are: * vPing_SSH * vPing_userdata * ODL * Tempest * vIMS * Rally The external tescases are: * Promise * Doctor * Onos * BGPVPN see `[2]`_ for details. Functest can also be considered as a framework that may include external OPNFV projects. This framework will ease the integration of the feature test suite to the CI. ================== How Functest works ================== The installation and the launch of the Functest docker image is described in `[1]`_. The Functest docker directories are:: home | `-- opnfv |-- functest | |-- conf | |-- data | `-- results `-- repos |-- bgpvpn |-- doctor |-- functest |-- odl_integration |-- onos |-- ovno |-- promise |-- rally |-- releng `-- vims-test :: +-----------+-------------------+---------------------------------------------+ | Directory | Subdirectory | Comments | +-----------+-------------------+---------------------------------------------+ | | /conf | All the useful configuration file(s) for | | | | the openstack creds are put there | | | | for CI | | | | It is recommended to push it there when | | | | passing the credentials to container through| | | | the -v option | | +-------------------+---------------------------------------------+ | opnfv | /data | Usefull data, images for | | | | By default we put a cirros image: | | | | cirros-0.3.4-x86_64-disk.img | | | | This image can be used by any projects | | +-------------------+---------------------------------------------+ | | /results | Local result directory of project | +-----------+-------------------+---------------------------------------------+ | | bgpvpn | | | +-------------------+ + | repos | doctor | | | +-------------------+ + | | functest | | | +-------------------+ + | | odl_integration | | | +-------------------+ Clone of the useful repositories + | | onos | These repositories may include: | | +-------------------+ - tooling + | | promise | - scenario | | +-------------------+ - scripts + | | rally | | | +-------------------+ + | | releng | | | +-------------------+ + | | vims-test | | | +-------------------+ + | | | | +-----------+-------------------+---------------------------------------------+ Before running the test suite, you must prepare the environement by running:: $ /home/opnfv/repos/functest/docker/prepare_env.sh By running prepare_env.sh, you build the test environement required by the tests including the retrieval and sourcing of OpenStack credentials. This is an example of the env variables we have in the docker container: * HOSTNAME=373f77816eb0 * INSTALLER_TYPE=fuel * repos_dir=/home/opnfv/repos * INSTALLER_IP=10.20.0.2 * PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin * PWD=/home/opnfv * SHLVL=1 * HOME=/home/opnfv * NODE_NAME=opnfv-jump-2 * creds=/home/opnfv/functest/conf/openstack.creds * _=/usr/bin/env The prepare_env.sh will source the credentials, so once run you should have access to the following env variables:: root@373f77816eb0:~# env|grep OS_ OS_REGION_NAME=RegionOne OS_PROJECT_NAME=admin OS_PASSWORD=admin OS_AUTH_STRATEGY=keystone OS_AUTH_URL=http://172.30.10.70:5000/v2.0 OS_USERNAME=admin OS_TENANT_NAME=admin OS_ENDPOINT_TYPE=internalURL OS_NO_CACHE=true Then you may run the test suite by running:: $ /home/opnfv/repos/functest/docker/run_tests.sh -t see `[2]`_ for details. ========================= How to integrate Functest ========================= The files of the Functest repository you must modify to integrate Functest are: * functest/docker/Dockerfile * functest/docker/common.sh * functest/docker/requirements.pip * functest/docker/run_tests.sh * functest/docker/prepare_env.sh * functest/config_funtest.yaml Dockerfile ========== This file lists the repositories to be cloned in the Functest container. The repositories can be internal or external:: RUN git clone https://gerrit.opnfv.org/gerrit/ ${repos_dir}/ Common.sh ========== This file can be used to declare the branch and commit variables of your projects:: _BRANCH=$(cat $config_file | grep -w _branch | awk 'END {print $NF}') _COMMIT=$(cat $config_file | grep -w _commit | awk 'END {print $NF}') echo "_BRANCH=${_BRANCH}" echo "_COMMIT=${_COMMIT}" requirements.pip ================ This file can be used to preloaded all the needed Python libraries (and avoid that each project does it) The current libraries used in Functest container are:: # cat requirements.pip pyyaml==3.10 gitpython==1.0.1 python-neutronclient==2.6.0 python-novaclient==2.28.1 python-glanceclient==1.1.0 python-cinderclient==1.4.0 python-ceilometerclient==1.5.1 python-keystoneclient==1.6.0 virtualenv==1.11.4 pexpect==4.0 requests==2.8.0 robotframework==2.9.1 robotframework-requests==0.3.8 robotframework-sshlibrary==2.1.1 configObj==5.0.6 Flask==0.10.1 xmltodict==0.9.2 scp==0.10.2 paramiko==1.16.0 prepare_env.sh ============== This script can be adapted if you need to set up a specific environment before running the tests. run_tests.sh ============ This script is used to run the tests. You must thus complete the cases with your own project:: ;; "promise") info "Running PROMISE test case..." # TODO ;; "doctor") info "Running Doctor test..." python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py ;; "") info "Running test..." # your script that launchs your tests... ;; And do not forget to update also the help line:: -t|--test run specific set of tests one or more of the following separated by comma: vping_ssh,vping_userdata,odl,rally,tempest,vims,onos,promise,ovno config_funtest.yaml =================== This file is the main configuration file of Functest. You must add the references to your project:: general: directories: dir_repo_: /home/opnfv/repos/ repositories: # branch and commit ID to which the repos will be reset (HEAD) _branch: master _commit: latest ==================== Test Dashboard & API ==================== The OPNFV testing group created a test collection database to collect the test results from CI. Any test project running on any lab integrated in CI can push the results to this database. This database can be used afterwards to see the evolution of the tests and compare the results versus the installers, the scenario or the labs. You can find more information about the dashboard from Testing Dashboard wiki page `[3]`_. Overall Architecture ==================== The Test result management can be summarized as follows:: +-------------+ +-------------+ +-------------+ | | | | | | | Test | | Test | | Test | | Project #1 | | Project #2 | | Project #N | | | | | | | +-------------+ +-------------+ +-------------+ | | | V V V +-----------------------------------------+ | | | Test Rest API front end | | http://testresults.opnfv.org/test | | | +-----------------------------------------+ A | | V | +-------------------------+ | | | | | Test Results DB | | | Mongo DB | | | | | +-------------------------+ | | +----------------------+ | | | test Dashboard | | | +----------------------+ Test API description ==================== The Test API is used to declare pods, projects, test cases and test results. An additional method dashboard has been added to post-process the raw results in release Brahmaputra. The data model is very basic, 4 objects are created: * Pods * Projects * Testcases * Results Pods:: { "id": , "details": , "creation_date": YYYY-MM-DD HH:MM:SS , "name": , "mode": , "role": }, Projects:: { "id": , "name": , "creation_date": "YYYY-MM-DD HH:MM:SS", "description": }, Testcases:: { "id": , "name":, "project_name":, "creation_date": "YYYY-MM-DD HH:MM:SS", "description": , "url": }, Results:: { "_id": "project_name": , "pod_name": , "installer": , "version": , "start_date": "YYYY-MM-DD HH:MM:SS", "stop_date": "YYYY-MM-DD HH:MM:SS", "build_tag": , "scenario": , "criteria": , "trust_indicator": <0 ~ 1> The API can described as follows. For detailed information, please go to http://testresults.opnfv.org/test/swagger/spec.html Authentication: opnfv/api@opnfv Please notes that POST/DELETE/PUT operations for test or study purpose via swagger website is not allowed, because it will change the real data in the database. Version: +--------+--------------------------+-----------------------------------------+ | Method | Path | Description | +========+==========================+=========================================+ | GET | /versions | Get all supported API versions | +--------+--------------------------+-----------------------------------------+ Pods: +--------+----------------------------+-----------------------------------------+ | Method | Path | Description | +========+============================+=========================================+ | GET | /api/v1/pods | Get the list of declared Labs (PODs) | +--------+----------------------------+-----------------------------------------+ | POST | /api/v1/pods | Declare a new POD | | | | Content-Type: application/json | | | | { | | | | "name": "pod_foo", | | | | "mode": "metal", | | | | "role": "ci-pod", | | | | "details": "it is a ci pod" | | | | } | +--------+----------------------------+-----------------------------------------+ | GET | /api/v1/pods/{pod_name} | Get a declared POD | +--------+----------------------------+-----------------------------------------+ Projects: +--------+----------------------------+-----------------------------------------+ | Method | Path | Description | +========+============================+=========================================+ | GET | /api/v1/projects | Get the list of declared projects | +--------+----------------------------+-----------------------------------------+ | POST | /api/v1/projects | Declare a new test project | | | | Content-Type: application/json | | | | { | | | | "name": "project_foo", | | | | "description": "whatever you want" | | | | } | +--------+----------------------------+-----------------------------------------+ | DELETE | /api/v1/projects/{project} | Delete a test project | +--------+----------------------------+-----------------------------------------+ | GET | /api/v1/projects/{project} | Get details on a {project} | | | | | +--------+----------------------------+-----------------------------------------+ | PUT | /api/v1/projects/{project} | Update a test project | | | | | | | | Content-Type: application/json | | | | { | | | | | | | | } | +--------+----------------------------+-----------------------------------------+ Testcases: +--------+----------------------------+-----------------------------------------+ | Method | Path | Description | +========+============================+=========================================+ | GET | /api/v1/projects/{project}/| Get the list of testcases of {project} | | | cases | | +--------+----------------------------+-----------------------------------------+ | POST | /api/v1/projects/{project}/| Add a new test case to {project} | | | cases | Content-Type: application/json | | | | { | | | | "name": "case_foo", | | | | "description": "whatever you want" | | | | "url": "whatever you want" | | | | } | +--------+----------------------------+-----------------------------------------+ | DELETE | /api/v1/projects/{project}/| Delete a test case | | | cases/{case} | | +--------+----------------------------+-----------------------------------------+ | GET | /api/v1/projects/{project}/| Get a declared test case | | | cases/{case} | | +--------+----------------------------+-----------------------------------------+ | PUT | /api/v1/projects/{project}?| Modify a test case of {project} | | | cases/{case} | | | | | Content-Type: application/json | | | | { | | | | | | | | } | +--------+----------------------------+-----------------------------------------+ Results: +--------+----------------------------+------------------------------------------+ | Method | Path | Description | +========+============================+==========================================+ | GET | /api/v1/results | Get all the test results | +--------+----------------------------+------------------------------------------+ | POST | /api/v1/results | Add a new test results | | | | Content-Type: application/json | | | | { | | | | "project_name": "project_foo", | | | | "scenario": "odl-l2", | | | | "stop_date": "2016-05-28T14:42:58.384Z", | | | | "trust_indicator": 0.5, | | | | "case_name": "vPing", | | | | "build_tag": "", | | | | "version": "Colorado", | | | | "pod_name": "pod_foo", | | | | "criteria": "PASS", | | | | "installer": "fuel", | | | | "start_date": "2016-05-28T14:41:58.384Z",| | | | "details": | | | | } | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of {case} | | | case={case} | | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of build_tag | | | build_tag={tag} | {tag}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get last {N} records of test results | | | last={N} | | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of scenario | | | scenario={scenario} | {scenario}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of trust_indicator | | | trust_indicator={ind} | {ind}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of last days | | | period={period} | {period}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of {project} | | | project={project} | | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of version | | | version={version} | {version}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of criteria | | | criteria={criteria} | {criteria}. | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | get the results on pod {pod} | | | pod={pod} | | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the test results of installer {inst} | | | installer={inst} | | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results? | Get the results according to combined | | | | query conditions supported above | +--------+----------------------------+------------------------------------------+ | GET | /api/v1/results/{result_id}| Get the test result by result_id | +--------+----------------------------+------------------------------------------+ Dashboard: +--------+----------------------------+-----------------------------------------+ | Method | Path | Description | +========+============================+=========================================+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | version {version} | | |&version={version} | | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | since {days} days | | |&period={days} | | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | installed by {installer} | | |&installer={installer} | | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | on POD {pod} | | |&pod={pod} | | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/results? | Get all the dashboard ready results of | | |&project={project} | {case} of the project {project} | | |&case={case} | and combined by other query conditions | | |& | supported above. | +--------+----------------------------+-----------------------------------------+ | GET |/dashboard/v1/projects? | Get all the dashboard ready projects | +--------+----------------------------+-----------------------------------------+ Dashboard description ===================== The results with dashboard method are post-processed from raw results. Please note that dashboard results are not stored. Only raw results are stored. Release Brahmaputra ------------------- Dashboard url: http://testresults.opnfv.org/dashboard/ Release Colorado ---------------- Dashboard url: http://testresults.opnfv.org/kibana_dashboards/ Credentials for a guest account: opnfvuser/kibana =============================================== How to push your results into the Test Database =============================================== The test database is used to collect test results. By default it is enabled only in Continuous Integration. The architecture and associated API is described in `[2]`_. If you want to push your results from CI, you just have to use the API at the end of your script. You can also reuse a python function defined in functest_utils.py:: def push_results_to_db(db_url, case_name, logger, pod_name,version, payload): """ POST results to the Result target DB """ url = db_url + "/results" installer = get_installer_type(logger) params = {"project_name": "functest", "case_name": case_name, "pod_name": pod_name, "installer": installer, "version": version, "details": payload} headers = {'Content-Type': 'application/json'} try: r = requests.post(url, data=json.dumps(params), headers=headers) if logger: logger.debug(r) return True except Exception, e: print "Error [push_results_to_db('%s', '%s', '%s', '%s', '%s')]:" \ % (db_url, case_name, pod_name, version, payload), e return False ========== References ========== .. _`[1]`: http://artifacts.opnfv.org/functest/docs/configguide/index.html Functest configuration guide URL .. _`[2]`: http://artifacts.opnfv.org/functest/docs/userguide/index.html functest user guide URL .. _`[3]`: https://wiki.opnfv.org/opnfv_test_dashboard OPNFV main site: opnfvmain_. OPNFV functional test page: opnfvfunctest_. IRC support chan: #opnfv-testperf .. _opnfvmain: http://www.opnfv.org .. _opnfvfunctest: https://wiki.opnfv.org/opnfv_functional_testing .. _`OpenRC`: http://docs.openstack.org/user-guide/common/cli_set_environment_variables_using_openstack_rc.html .. _`Rally installation procedure`: https://rally.readthedocs.org/en/latest/tutorial/step_0_installation.html .. _`config_test.py` : https://git.opnfv.org/cgit/functest/tree/testcases/config_functest.py .. _`config_functest.yaml` : https://git.opnfv.org/cgit/functest/tree/testcases/config_functest.yaml