| .. | ||
| cicd | ||
| jenkins | ||
| vagrant | ||
| all.sh | ||
| config.sh.in | ||
| example_module.sh | ||
| jukebox.sh | ||
| lib.sh | ||
| long.sh | ||
| Makefile.in | ||
| mem.sh | ||
| nacm.sh | ||
| plot_perf.sh | ||
| README.md | ||
| site.sh | ||
| sum.sh | ||
| test_api.sh | ||
| test_api_path.sh | ||
| test_augment.sh | ||
| test_augment_state.sh | ||
| test_augment_trans.sh | ||
| test_c++.sh | ||
| test_choice.sh | ||
| test_cli.sh | ||
| test_cli_apipath.sh | ||
| test_cli_auto.sh | ||
| test_cli_auto_extension.sh | ||
| test_cli_auto_genmodel.sh | ||
| test_cli_auto_sub.sh | ||
| test_cli_history.sh | ||
| test_cli_leafref.sh | ||
| test_cli_multikey.sh | ||
| test_cli_submodes.sh | ||
| test_cli_translate.sh | ||
| test_client.sh | ||
| test_configdir.sh | ||
| test_copy_config.sh | ||
| test_datastore.sh | ||
| test_datastore_repair.sh | ||
| test_debug.sh | ||
| test_feature.sh | ||
| test_identity.sh | ||
| test_insert.sh | ||
| test_install.sh | ||
| test_instance_id.sh | ||
| test_instance_id_multi.sh | ||
| test_json.sh | ||
| test_json_list.sh | ||
| test_json_null.sh | ||
| test_leaf_default.sh | ||
| test_leafref.sh | ||
| test_leafref_augment.sh | ||
| test_leafref_state.sh | ||
| test_minmax.sh | ||
| test_nacm.sh | ||
| test_nacm_credentials.sh | ||
| test_nacm_datanode.sh | ||
| test_nacm_datanode_paths.sh | ||
| test_nacm_datanode_read.sh | ||
| test_nacm_datanode_write.sh | ||
| test_nacm_default.sh | ||
| test_nacm_ext.sh | ||
| test_nacm_module_read.sh | ||
| test_nacm_module_write.sh | ||
| test_nacm_protocol.sh | ||
| test_nacm_recovery.sh | ||
| test_netconf.sh | ||
| test_netconf_filter.sh | ||
| test_netconf_hello.sh | ||
| test_netconf_notifications.sh | ||
| test_netconf_ssh_callhome.sh | ||
| test_netconf_whitespace.sh | ||
| test_openconfig.sh | ||
| test_openconfig_interfaces.sh | ||
| test_order.sh | ||
| test_pagination.sh | ||
| test_pattern.sh | ||
| test_perf_cli.sh | ||
| test_perf_json.sh | ||
| test_perf_mem.sh | ||
| test_perf_netconf.sh | ||
| test_perf_restconf.sh | ||
| test_perf_startup.sh | ||
| test_perf_state.sh | ||
| test_perf_state_only.sh | ||
| test_perf_xml.sh | ||
| test_privileges.sh | ||
| test_restconf.sh | ||
| test_restconf_basic_auth.sh | ||
| test_restconf_err.sh | ||
| test_restconf_http_upgrade.sh | ||
| test_restconf_internal.sh | ||
| test_restconf_internal_usecases.sh | ||
| test_restconf_jukebox.sh | ||
| test_restconf_listkey.sh | ||
| test_restconf_netns.sh | ||
| test_restconf_nmap.sh | ||
| test_restconf_notifications.sh | ||
| test_restconf_op.sh | ||
| test_restconf_plain_patch.sh | ||
| test_restconf_ssl_certs.sh | ||
| test_restconf_startup.sh | ||
| test_restconf_yang_patch_json.sh | ||
| test_restconf_yang_patch_xml.sh | ||
| test_rpc.sh | ||
| test_search_index.sh | ||
| test_sock.sh | ||
| test_startup.sh | ||
| test_submodule.sh | ||
| test_transaction.sh | ||
| test_transaction_restart.sh | ||
| test_type.sh | ||
| test_type_range.sh | ||
| test_union.sh | ||
| test_unique.sh | ||
| test_upgrade_auto.sh | ||
| test_upgrade_checkold.sh | ||
| test_upgrade_failsafe.sh | ||
| test_upgrade_interfaces.sh | ||
| test_upgrade_module.sh | ||
| test_upgrade_quit.sh | ||
| test_upgrade_repair.sh | ||
| test_upgrade_simple.sh | ||
| test_when_must.sh | ||
| test_with_default.sh | ||
| test_xml.sh | ||
| test_xml_trees.sh | ||
| test_xml_validate.sh | ||
| test_xpath.sh | ||
| test_xpath_canonical.sh | ||
| test_xpath_functions.sh | ||
| test_yang.sh | ||
| test_yang_anydata.sh | ||
| test_yang_bind.sh | ||
| test_yang_default.sh | ||
| test_yang_deviation.sh | ||
| test_yang_extension.sh | ||
| test_yang_load.sh | ||
| test_yang_models_ieee.sh | ||
| test_yang_models_ietf.sh | ||
| test_yang_namespace.sh | ||
| test_yang_when.sh | ||
| valgrind-clixon.supp | ||
Clixon tests and CI
Overview
Tests called 'test_*.sh' and placed in this directory will be automatically run as part of the all.sh, sum.sh tests etc. The scripts need to follow some rules to work properly, please look at one or two to get the idea.
Note that configure must ensure optional yangs be installed:
./configure --enable-optyangs
See also the site.sh for example for skipping tests or setting some site-specific variables.
Continuous Integration
CI is done via Travis CI.
In the CI process, the system is built and configured and then the clixon test container is built and the tests in this directory is executed.
There are also manual cicd scripts here
Vagrant
Getting started
You need to build and install the clixon utility programs before running the tests as some of the tests rely on them:
cd util
make
sudo make install
You need to configure and start nginx for the restconf tests:
- The example has instructions on how to edit your nginx config files
- If you run systemd:
sudo systemctl start nginx.service
You may need to install the time utility (/usr/bin/time).
Prefix variable
You can prefix a test with BE=0 if you want to run your own backend.
To run with debug flags, use the DBG=<number> environment variable.
Other variables include:
- DEMWAIT Number of seconds to sleep after daemons have started
Run all tests
You can run an individual test by itself, or run through all tests matching 'test_*.sh' in the directory. Prints test output and stops on first error:
all.sh
Run all tests but continue after errors and only print a summary test output identifying which tests succeeded and which failed:
sum.sh
Memory leak test
The mem.sh runs memory checks using valgrind. Start it with no arguments to test all components (backend, restconf, cli, netconf), or specify which components to run:
mem.sh 2>&1 | tee mylog # All components
mem.sh restconf backend # Only backend and cli
Run pattern of tests
The above scripts work with the pattern variable to limit the scope of which tests run, eg:
pattern="test_c*.sh" mem.sh
Performance plots
The script plot_perf.sh produces gnuplots for some testcases.
Site.sh
You may add your site-specific modifications in a site.sh file. Example:
# Add your local site specific env variables (or tests) here.
# Add test to this list that you dont want run
SKIPLIST="test_openconfig.sh test_yangmodels.sh"
# Parse yang openconfig models from https://github.com/openconfig/public
OPENCONFIG=/usr/local/share/openconfig/public
# Parse yangmodels from https://github.com/YangModels/yang
YANGMODELS=/usr/local/share/yangmodels
# Standard IETF RFC yang files.
IETFRFC=$YANGMODELS/standard/ietf/RFC
For example, in FreeBSD, add:
wwwuser=www
make=gmake
https
For fcgi/nginx you need to setup https in the nginx config file, independently of clixon.
If you use evhtp with configure --with-restconf=evhtp, you can prepend the tests with RCPROTO=https which will run all restconf tests with SSL https and server certs.
Ensure the server keys are in order, as follows.
If you already have server certs, ensure the RESTCONF variable in lib.sh points to them, by default the config is
<server-cert-path>/etc/ssl/certs/clixon-server-crt.pem</server-cert-path>
<server-key-path>/etc/ssl/private/clixon-server-key.pem</server-key-path>
<server-ca-cert-path>/etc/ssl/certs/clixon-ca-crt.pem</server-ca-cert-path>
If you do not have them, generate self-signed certs, eg as follows:
openssl req -x509 -nodes -newkey rsa:4096 -keyout /etc/ssl/private/clixon-server-key.pem -out /etc/ssl/certs/clixon-server-crt.pem -days 365
There are also client-cert tests, eg test_ssl_certs.sh