MuseScore/mtest
2016-12-28 16:36:59 +01:00
..
biab save 3.00 file in test mode 2016-09-23 22:30:24 +02:00
bww/io update reference files for commit 389d24541d 2015-01-12 21:38:05 +01:00
capella update mtest 2016-09-28 17:46:19 +02:00
guitarpro impl. staff type changes 2016-12-18 14:31:34 +01:00
importmidi Add more noteheads and staff type for dynamic noteheads (shapes, notenames, etc...) 2016-11-18 13:09:49 +01:00
libmscore barline changes, part-1 2016-12-28 16:36:59 +01:00
musicxml add StaffTypeChange element 2016-12-14 15:44:24 +01:00
omr Fix #110306: Enable and improve OMR module 2016-05-17 11:48:38 -04:00
scripting add StaffTypeChange element 2016-12-14 15:44:24 +01:00
testoves fix #141226: Can't change tie direction 2016-11-17 09:46:58 +01:00
zerberus fix compilation of tests under Windows 2016-10-10 14:16:13 +02:00
build.xml Initial commit 2012-05-26 14:49:10 +02:00
cmake.inc fix compilation of tests under Windows 2016-10-10 14:16:13 +02:00
CMakeLists.txt add back tst_links 2016-12-02 10:47:09 +01:00
config.h Fix #110306: Enable and improve OMR module 2016-05-17 11:48:38 -04:00
mscoreapi.h Initial commit 2012-05-26 14:49:10 +02:00
mtest.cpp Rhythmic grouping tests 2016-08-19 21:58:37 +01:00
mtest.qrc add MuseJazz score font and rename 2.0 MuseJazz to MuseJazzText 2016-10-11 15:26:49 +02:00
openscore.h Initial commit 2012-05-26 14:49:10 +02:00
README.md fixed make test directions for linux, osx, win 2016-03-17 06:37:29 -04:00
test.mscx fix #10806: Generating parts doesnt show the tabs at first 2016-04-25 10:02:21 +02:00
testutils.cpp rename Xml() -> XmlWriter() 2016-11-19 11:51:21 +01:00
testutils.h more mtest fixes 2016-04-13 13:07:32 +02:00

Building & running the tests

To build all tests:

Linux OSX Windows
make debug
sudo make installdebug
cd build.debug/mtest
make
make -f Makefile.osx debug
make -f Makefile.osx installdebug
cd build.debug/mtest
make -f Makefile.osx
mingw32-make -f Makefile.mingw debug
mingw32-make -f Makefile.mingw installdebug
cd build.debug\mtest
mingw32-make -f Makefile.mingw

To run all tests:

ctest

To run only one test (for debugging purposes):

cd libmscore/join/
./tst_join

To see how the CI environment is doing it check .travis.yml and build/run_tests.sh

Note: You need to have diff in your path. For Windows, get a copy of diffutils for Windows.

Test case conventions

Tests are grouped in directories by feature (like libmscore or mxl). In these directories, each subdirectory represents a test suite for a particular sub feature.

The name of a test suite directory should be descriptive. The CPP file for the tests should use the same name as the directory, for example tst_foo.cpp in directory foo. It's good practice to include a README file in a test suite directory.

Test suite CPP files contain one slot per test case. Each file should be called foo-XX with XX being an incrementing count. If a test case uses a file and a ref file, they should be called foo-XX and foo-XX-ref, with the extension .mscx. A test case should not reuse a file from another test case.

To create reference or original files, MuseScore can be run with the -t command line argument and it will save all the files in the session in test mode. Such files do not contain platform or version information and do contain extra data for tracing (for example, they contains pixel level position for beams).

How to write a test case

Import test

  • Open a short file containing an individual case in one of the formats supported by MuseScore
  • Save in MuseScore format
  • Compare with reference file

At first the test will fail because there is no reference file. Open the file created by the test case in MuseScore and try to edit it to be sure it's valid. If the file is valid, save it (without version number) as a reference file.

Object read write

Create a test case for all elements and all properties in each element. See libmscore/note

  • Create an object
  • Set a property
  • Write and read the object
  • Check if the property has the right value

Action tests

See libmscore/join or libmscore/split for example

  • Read a score file
  • Apply an action
  • Write the file
  • Compare with a reference
  • (Undo the action)
  • (Compare with original file)

Compatibility tests

Most of them are in mtest/libmscore/compat

  • Read a score file from an older version of MuseScore
  • Write the file
  • Compare with a reference file