= Introduction = This page outlines the efforts taken to maintain OpenVPN's quality without excessive compromises on development speed. = Static testing = Static testing usually refers to [http://en.wikipedia.org/wiki/Static_code_analysis Static code analysis], which is baked in into our [DeveloperDocumentation development process] in the form of mandatory ACK process every patch has to go through. In addition, OpenVPN codebase is scanned using [http://scan.coverity.com/ Coverity Scan] which can detect many potential security vulnerabilities. = Dynamic testing = Dynamic (black-box) testing means trying out an application and verifying if it works as intended. In closed-source software development which is organized around the [http://en.wikipedia.org/wiki/Waterfall_model waterfall model] there are usually dedicated testers who do various scripted or intuitive tests to verify an application works as intended, usually just before launch. In complex applications such as OpenVPN testing even a small fraction of functionality would be impractical and very costly. However, in [http://en.wikipedia.org/wiki/Lean_software_development Lean software development] methodologies such as [http://en.wikipedia.org/wiki/Scrum_%28development%29 Scrum] and community-driven OSS development extensive, dedicated testing effort is in general just a waste of time. That said, a minimal amount of dedicated testing (a.k.a. [http://en.wikipedia.org/wiki/Smoke_testing smoke testing]) goes into each release, In OpenVPN (and most other open source projects), the stability of stable releases (e.g. 2.1, 2.2) is ensured with ''real-life testing'' by it's users during development, alpha, beta and rc phases. Even though only a small subset of users will be running the development code or "unstable" releases, they will be able to catch the most obvious issues. As compiling OpenVPN from development code (in Git) is somewhat difficult - especially for Windows users - "unstable" releases are pushed out as fast as possible; this allows more people to test the releases, report bugs and fix issues, so that new releases can be made quickly. The project also has a [http://trac.buildbot.net/ Buildbot] buildmaster, which drives several buildslaves. Each of these buildslaves is running a different operating system, and every commit to the OpenVPN Git repository triggers a build on them. After the build, each buildslave's openvpn tries to connect to a test server using several different configurations, thus ensuring that basic functionality is unaffected by the commit.