Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/microsoft/pict
Pairwise Independent Combinatorial Tool
https://github.com/microsoft/pict
combinatorial-testing pairwise-testing testing testing-tools
Last synced: 30 days ago
JSON representation
Pairwise Independent Combinatorial Tool
- Host: GitHub
- URL: https://github.com/microsoft/pict
- Owner: microsoft
- License: other
- Created: 2015-10-16T15:15:03.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-07-19T11:20:42.000Z (4 months ago)
- Last Synced: 2024-10-01T04:23:42.458Z (about 1 month ago)
- Topics: combinatorial-testing, pairwise-testing, testing, testing-tools
- Language: C++
- Homepage: www.pairwise.org
- Size: 718 KB
- Stars: 1,262
- Watchers: 75
- Forks: 286
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE.TXT
- Security: SECURITY.md
Awesome Lists containing this project
README
Pairwise Independent Combinatorial Testing
==========================================PICT generates test cases and test configurations. With PICT, you can generate tests that are more effective than manually generated tests and in a fraction of the time required by hands-on test case design.
PICT runs as a command line tool. Prepare a model file detailing the parameters of the interface (or set of configurations, or data) you want to test. PICT generates a compact set of parameter value choices that represent the test cases you should use to get comprehensive combinatorial coverage of your parameters.
For instance, if you wish to create a test suite for partition and volume creation, the domain can be described by the following parameters: **Type**, **Size**, **File system**, **Format method**, **Cluster size**, and **Compression**. Each parameter has a limited number of possible values, each of which is determined by its nature (for example, **Compression** can only be **On** or **Off**) or by the equivalence partitioning (such as **Size**).
Type: Single, Span, Stripe, Mirror, RAID-5
Size: 10, 100, 500, 1000, 5000, 10000, 40000
Format method: Quick, Slow
File system: FAT, FAT32, NTFS
Cluster size: 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536
Compression: On, OffThere are thousands of possible combinations of these values. It would be difficult to test all of them in a reasonable amount of time. Instead, we settle on testing all possible pairs of values. For example, **{Single, FAT}** is one pair, **{10, Slow}** is another; one test case can cover many pairs. Research shows that testing all pairs is an effective alternative to exhaustive testing and much less costly. It will provide very good coverage and the number of test cases will remain manageable.
# More information
See **[doc/pict.md](https://github.com/Microsoft/pict/blob/main/doc/pict.md)** for detailed documentation on PICT and http://pairwise.org has details on this testing methododology.
The most recent **pict.exe** is available at https://github.com/microsoft/pict/releases/.
# Contributing
PICT consists of the following projects:
* **api**: The core combinatorial engine,
* **cli**: PICT.EXE command-line tool,
* **clidll**: PICT.EXE client repackaged as a Windows DLL to be used in-proc,
* **api-usage**: A sample of how the engine API can be used,
* **clidll-usage**: A sample of how the PICT DLL is to be used.## Building and testing on Windows with MsBuild
Use **pict.sln** to open the solution in Visual Studio 2022. You will need VC++ build tools installed. See https://www.visualstudio.com/downloads/ for details.PICT uses MsBuild for building. **_build.cmd** script in the root directory will build both Debug and Release from the command-line.
The **test** folder contains all that is necessary to test PICT. You need Perl to run the tests. **_test.cmd** is the script that does it all.
The test script produces a log: **dbg.log** or **rel.log** for the Debug and Release bits respectively. Compare them with their committed baselines and make sure all the differences can be explained.
>There are tests which randomize output which typically make it different on each run. These results should be masked in the baseline but currently aren't.
## Building on Linux, OS/X, *BSD, etc.
PICT uses CMake to build on Linux.
Assuming installation of CMake and C++ toolchain, following set of commands will build and run tests in the directory `build`
```
> cmake -DCMAKE_BUILD_TYPE=Release -S . -B build
> cmake --build build
> pushd build && ctest -v && popd
```## Debugging
Most commonly, you will want to debug the command-line tool. Start in the **pictcli** project, **cli/pict.cpp** file. You'll find **wmain** routine there which would be a convenient place to put the very first breakpoint.
## PICT as a container
To build a container image with PICT, just execute
make image-build
Once built, you can run it with a sample model as follows
make image-run
To use your own models, please execute
podman run -it --rm -v ./:/var/pict:Z pict:latest []