This is a framework for end-to-end testing the core storage functionality of owncloud-based service installation. This test framework may be run interactively from a command line, perform continous testing via cron jobs or stress/load testing. It may be easily integrated in testing and QA process.
What we check:
- sync clients in various scenarios
- trashbin and versioning
- sharing of files and folders
- basic protocol checks and documentation
The goal of this is to:
- make sure that behaviour of the system is understood and not changing unintentionally
- reproduce difficult bugs more easily
- a testcase is better way of reporting and documenting bugs or undesider behaviour to the developers
- provide a broad test coverage given a large number of setups and platforms
If you think you see a bug - write a test-case and let others reproduce it on their systems.
- Find your localhost owncloud server ip using e.g.
ipconfig
- Execute smashbox run over that server e.g.
172.16.12.112:80/octest
. Ensure to mountsmashdir
andtmp
directory to local filesystem to be able to debug test run and cache client build - Smash wrapper will check if test nplusone exists in
lib
folder undertest_[name].py
scheme
docker run \
-e SMASHBOX_URL=<ip>:<port>/<path-to-oc> \
-e SMASHBOX_USERNAME=admin \
-e SMASHBOX_PASSWORD=admin \
-e SMASHBOX_ACCOUNT_PASSWORD=admin \
-e SMASHBOX_TEST_NAME=nplusone \
-v ~/smashdir:/smashdir \
-v /tmp:/tmp \
owncloud/smashbox:build
- Check run logs
$ cat ~/smashdir/log-test_nplusone.log | grep error (..warning, critical etc)
- Check client logs
$ cat ~/smashdir/test_nplusone/worker0-ocsync.step01.cnt000.log | grep error (..warning, critical etc)
- Check sync client directories of workers
$ ls ~/smashdir/test_nplusone/worker1/
- You can also run whole integration tests suite in docker for you server
./bin/run_all_integration.sh 172.16.12.112:80/octest
- Basic Sync and Conflicts
- basicSync_filesizeKB from 1kB to 50MB (normal and chunked files sync)
- basicSync_rmLocalStateDB removing local database in the test (index 0-3) or not (index 4-7)
- Concurrently removing directory while files are being added
- Currently only checks for corrupted files in the outcome
- Removing the directory while a large file is chunk-uploaded (index 0)
- Removing the directory while lots of smaller files are uploaded (index 1)
- Removing the directory before files are uploaded (index 2)
- Resharing
- Share directory with receiver and receiver reshares one of the files with another user
- Directory Sharing between users
- Tests various sharing actions between users
- Files Sharing between users
- Tests various sharing actions between users
- Files Sharing between users and groups
- Tests various sharing actions between users and groups
- Files Sharing by link
- Tests various sharing actions with links
- Ensures correct behaviour having different permissions
- Tests various sharing actions having share permissions
- Ensures correct etag propagation 1
- Tests etag propagation sharing/resharing between groups of users
- Ensures correct etag propagation 2
- Tests etag propagation sharing/resharing between groups of users
- Syncing shared mounts
- Test is oriented on syncing share mount in most sharing cases
- Upload/Download of small/big files
- Test should monitor upload/download sync time in each of the scenarious (TODO)
- Test (index 0) verifies performance of many small files - 100 files - each 1kB
- Test (index 1) verifies performance of 1 big over-chunking-size file of total size 60MB
- Shared Mount Performance
- PROPFIND on root folder - initialize mount points (initMount is done only on 1st propfind on received shares)
- PROPFIND on root folder with initialized content and mount points
- PUT to non-shared folder
- PUT to shared folder
- GET to non-shared folder
- GET to shared folder
General layout:
smashbox ├── bin/ │ └── smash* : main test driver + other utilities for direct shell use ├── etc/ │ └── smashbox.conf : configuration file - this is also the default configuration for smashbox/bin utilities and for test-cases ├── lib/ : main collection of test-cases │ ├── test_nplusone.py │ └── ... ├── protocol/ : sync protocol tests and documentation ├── python/ : implementation of tools and API library for tests │ └── smashbox/utilities : here is the utilities used directly in the test-cases ├── server/ : server-side procedures used in the tests ├── client/ : owncloud client helpers │ └── compile-owncloud-sync-client* : └── README : this file
Note: Currently this framework works on Unix-like systems only. Windows port is needed.
Clone git repository into your local smashbox
directory.
Copy the etc/smashbox.conf.template into etc/smashbox.conf
Note: a helper shell script, makeconfig, has been added to the etc directory.
Edit this file to make some of the more common configuration changes and then run the script.
This will create a local smashbox.conf file.
Set the oc_sync_cmd to the location of the owncloud command-line client (see client/compile-owncloud-sync-client if you don't have one yet compiled).
Set the oc_account_password.
Otherwise the default configuration should work out-of-the-box if you run the smashbox tests locally on the owncloud server. You should try that first (on the TEST server instance).
Support has been added for the provisioning API which creates a dependency on the pyocclient repo.
To install the library, run the following after checking out your branch:
pip install -r requirements.txt
If you want to use a local copy of pyocclient, you can add the following to your shell environment:
export PYTHONPATH=/local/path/to/pyocclient/repo/branch
and clone git repository into your local pyocclient
directory.
When you run a test several workers (clients) are started in parallel locally and access owncloud server according to the test-case scenario. The test-case specifies which actions happen simultaneously.
Examples:
# help on all available options
bin/smash --help
# basic test
bin/smash lib/test_basicSync.py
# basic test, specifying test number as specified in tests' `testsets` array
bin/smash -t 0 lib/test_basicSync.py
# run a test with different paremeters
bin/smash -o nplusone_nfiles=10 lib/test_nplusone.py
# run all tests - print summaries only
bin/smash --quiet lib/test_*.py
You will find main log files in ~/smashdir/log* and all temporary files and detailed logs for each test-case in ~/smashdir/
Currently, monitoring module is supporting local
and prometheus
endpoints. Prometheus endpoint can be used in integration with Jenkins.
By default, two values are prepared for export, 'total_duration' and 'number_of_queries', however one can embed inside the test their custom variables using e.g. commit_to_monitoring("download_duration",time1-time0)
inside lib/test_nplusone.py
test.
NOTE: To enable checking number of queries, one need to set oc_check_diagnostic_log = True
in the smashbox.conf
file
NOTE: To enable diagnostics in SUMMARY level on the server one need to go to the server directory e.g. /var/www/owncloud
and:
git clone https://github.com/owncloud/diagnostics apps/diagnostics
sudo -u www-data php occ app:enable diagnostics
sudo -u www-data php occ config:system:set --value true debug
sudo -u www-data php occ config:app:set --value 1 diagnostics diagnosticLogLevel
Export to local monitor example:
Executing
bin/smash -t 1 -o monitoring_type=local lib/test_nplusone.py
will execute index 1
of test_nplusone
test and adding option flag -o monitoring_type=local
will result in the below output if test has been completed successfully
download_duration 0.750847816467
upload_duration 1.4001121521
returncode 0
elapsed 6.87230300903
or below in case of failure
returncode 2
elapsed 7.0446870327
Export to prometheus with jenkins example:
Executing
bin/smash -t 1 -o monitoring_type=prometheus -o endpoint=http://localhost:9091/metrics/job/jenkins/instance/smashbox -o duration_label=jenkins_smashbox_test_duration -o queries_label=jenkins_smashbox_db_queries -o owncloud=daily-master -o client=2.3.1 -o suite=nplusonet1 -o build=test_build1 lib/test_nplusone.py
will result in:
- pushing the monitoring points to the Prometheus endpoint
http://localhost:9091/metrics/job/jenkins/instance/smashbox
- Adding flags
-o duration_label=jenkins_smashbox_test_duration
and-o queries_label=jenkins_smashbox_db_queries
will cause default results 'total_duration' and 'number_of_queries' to be exported to Prometheus. - Additional flags
-o owncloud=daily-master
,-o client=2.3.1
,-o suite=nplusonet1
,-o build=test_build1
can be used in order to distinguish smashbox runs
or below in case of failure to push to monitoring
curl: (7) Failed to connect to localhost port 9091: Connection refused
Adding custom monitoring endpoint:
One can add their own monitoring endpoint by adding new option in push_to_monitoring
. You can test your custom test (as in test_nplusone) and monitoring endpoint setting flag
-o monitoring_type=MY_CUSTOM_MONITORING_TYPE
e.g. -o monitoring_type=local
=======
Make sure you can passwordlessly ssh to the server node (only for some admin tasks like creating accounts) You will need to set oc_server, oc_server_shell_cmd.
If you don't keep the same path on the server and the client to the smashbox git repository clone then you will need to set oc_server_tools_path.
As of version x.x, the provisioning API is used for user management on the server so this is no longer needed.
Simply add new tests to smashbox/lib. If you have specific tests which are not generally applicable or which belong to the same functional category it is best to store them in a subdirectory, e.g. smashbox/lib/oc-tests.
If you need to add new utilities then add a module in smashbox/python/smashbox/utilities.
- test scripts with minimal code clutter
- possible to run individual test scripts or the whole suite at once
- convenient run environment for systematic and ad-hoc testing
- easy and flexible configuration
- easy to add and run tests in an additional lib
- possibility to extend with cluster mode (distributed workers)
Configuration may be set globally in smashbox/etc/smashbox.conf, passed as a command line option to commands or hardcoded in the code of an individual test. This is also the priority order - whatever is defined last wins.
In the future we would like to add other possibilities (lib/smashbox.conf, $SMASHBOX_CONF file if defined)
Local working directories keep temporary files, local sync folders, etc. General structure (some elements of the path may be ommited, others may be transformed)::
<smashdir>/<rundir>/<testname>
Server test accounts follow this general naming scheme (some elements may be ommited, others may be transformed) ::
smash-<runid>-<collection>-<testname>
Consider running an simple test::
smash smashbox/lib/test_nplusone.py
If workdir_runid_enabled option is enabled then local working directory will be everytime different (and unique)::
<runbasedir>/test_nplusone-<runid>
The format of identifier is defined by the runid option.
Otherwise the local working directory will be the same (and cleaned-up before running the test)::
<runbasedir>/test_nplusone
If oc_account_runid_enabled is enabled then the test account on the server will be everytime different (and unique)::
smash-nplusone-<runid>
Otherwsie the test account on the server will be everytime the same (and will be cleaned-up before running the test)::
smash-nplusone
The account_cleanup_procedure defines how the account is cleaned-up before running the test. These procedures are defined in smashbox/python/smashbox.