ansi-test VS hypothesis

Compare ansi-test vs hypothesis and see what are their differences.

ansi-test

My working copy of the Common Lisp ANSI Test Suite (by pfdietz)

hypothesis

Hypothesis is a powerful, flexible, and easy to use library for property-based testing. (by HypothesisWorks)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
ansi-test hypothesis
2 20
14 7,275
- 0.7%
2.8 9.9
about 1 year ago 6 days ago
Common Lisp Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ansi-test

Posts with mentions or reviews of ansi-test. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-09-19.
  • ECL could run as fast as SBCL if it does more type inference and aggressive function inlining
    1 project | /r/lisp | 20 Nov 2022
  • What Is Property Based Testing?
    4 projects | news.ycombinator.com | 19 Sep 2021
    I have applied it to testing Common Lisp implementations, but there has been much work on applying it to other languages (most famously C and Javascript.)

    I applied the following techniques:

    (1) Generate random valid well defined programs and see (a) if they crash the compiler, (b) cause different CL implementations to produce different outputs, (c) when modified (by addition of randomly generated optimization directives or valid type declarations) they still produce the same output. This is differential testing, which was used by McKeeman at DEC in the 1990s to test C compilers, and later improved (again, on C compilers) by Yang, Chan, Eide, and Regehr at U. of Utah (csmith, creduce).

    Since a running lisp image can generate and compile functions internally (this IS lisp, after all), the testing loop can be very fast. Since 2003 I have run this on and off for many billions of iterations on desktop and laptop machines on various CL implementations, now mainly on SBCL. Most of the test input reduction is handled automatically, which is a big help.

    (2) Generate random possibly invalid code by mutating or recombining snippets drawn from a large corpus of code, to see if it crashes the compiler (in CL implementations where the compiler is promised to never respond to bad code by signaling an error.) This was also the approach jsfunfuzz took on Javascript.

    (3) Extensive fuzzing of calls to standard functions in CL, using random generation of input values and random generation of valid type declarations, with the invariant being that the same values should be computed (and the compiler not fail.) This is a specialization of (1), but was sufficiently different that the bugs it found were not the same.

    Examples of tests produced by (1) and (3) over an early period when this was being developed. Each caused a failure in some CL implementation: https://github.com/pfdietz/ansi-test/blob/master/misc/misc.l...

    See also the various bugs I've reported against SBCL over the years, many of which come from this testing. https://bugs.launchpad.net/~paul-f-dietz

    The experience with this sort of testing of compilers (in any language) is that if the compiler (free or commercial) has never been subjected to it, it will immediately find bugs in the compiler.

hypothesis

Posts with mentions or reviews of hypothesis. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-12.
  • Hypothesis
    1 project | news.ycombinator.com | 1 Feb 2024
  • A Tale of Two Kitchens - Hypermodernizing Your Python Code Base
    31 projects | dev.to | 12 Nov 2023
    Hypothesis for Property-Based Testing: Hypothesis is a Python library facilitating property-based testing. It offers a distinct advantage by generating a wide array of input data based on specified properties or invariants within the code. The perks of Hypothesis include:
  • Pix2tex: Using a ViT to convert images of equations into LaTeX code
    5 projects | news.ycombinator.com | 3 Nov 2023
    But then add tests! Tests for LaTeX equations that had never been executable as code.

    https://github.com/HypothesisWorks/hypothesis :

    > Hypothesis is a family of testing libraries which let you write tests parametrized by a source of examples. A Hypothesis implementation then generates simple and comprehensible examples that make your tests fail. This simplifies writing your tests and makes them more powerful at the same time, by letting software automate the boring bits and do them to a higher standard than a human would, freeing you to focus on the higher level test logic.

    > This sort of testing is often called "property-based testing", and the most widely known implementation of the concept is the Haskell library QuickCheck, but Hypothesis differs significantly from QuickCheck and is designed to fit idiomatically and easily into existing styles of testing that you are used to, with absolutely no familiarity with Haskell or functional programming needed.

  • pgregory.net/rapid v1.0.0, modern Go property-based testing library
    1 project | /r/golang | 12 Jun 2023
    pgregory.net/rapid is a modern Go property-based testing library initially inspired by the power and convenience of Python's Hypothesis.
  • Was muss man als nicht-technischer Quereinsteiger in Data Science *wirklich* können?
    1 project | /r/de_EDV | 13 Sep 2022
  • Python toolkits
    38 projects | /r/Python | 15 Jul 2022
    Hypothesis to generate dummy data for test.
  • Best way to test GraphQL API using Python?
    4 projects | /r/graphql | 28 Jun 2022
    To create your own test cases, I recommend you use hypothesis-graphql in combination with hypothesis. hypothesis is a property-based testing library. Property-based testing is an approach to testing in which you make assertions about the result of a test given certain conditions and parameters. For example, if you have a mutation that requires a boolean parameter, you can assert that the client will receive an error if it sends a different type. hypothesis-graphql is a GraphQL testing library that knows how to use hypothesis strategies to generate query documents.
  • Fuzzcheck (a structure-aware Rust fuzzer)
    4 projects | /r/rust | 26 Feb 2022
    The Hypothesis stateful testing code is somewhat self-contained, since it mostly builds on top of internal APIs that already existed.
  • Running C unit tests with pytest
    6 projects | news.ycombinator.com | 12 Feb 2022
    We've had a lot of success combining that approach with property-based testing (https://github.com/HypothesisWorks/hypothesis) for the query engine at backtrace: https://engineering.backtrace.io/2020-03-11-how-hard-is-it-t... .
  • Machine Readable Specifications at Scale
    4 projects | news.ycombinator.com | 26 Jan 2022
    Systems I've used for this include https://agda.readthedocs.io/en/v2.6.0.1/getting-started/what... https://coq.inria.fr https://www.idris-lang.org and https://isabelle.in.tum.de

    An easier alternative is to try disproving the statement, by executing it on thousands of examples and seeing if any fail. That gives us less confidence than a full proof, but can still be better than traditional "there exists" tests. This is called property checking or property-based testing. Systems I've used for this include https://hypothesis.works https://hackage.haskell.org/package/QuickCheck https://scalacheck.org and https://jsverify.github.io

What are some alternatives?

When comparing ansi-test and hypothesis you can also consider the following projects:

Schemathesis - Automate your API Testing: catch crashes, validate specs, and save time

pytest - The pytest framework makes it easy to write small tests, yet scales to support complex functional testing

jepsen - A framework for distributed systems verification, with fault injection

Robot Framework - Generic automation framework for acceptance testing and RPA

Behave - BDD, Python style.

nose2 - The successor to nose, based on unittest2

nose - nose is nicer testing for python

mamba - The definitive testing tool for Python. Born under the banner of Behavior Driven Development (BDD).

Slash - The Slash testing infrastructure

Python Testing Crawler - A crawler for automated functional testing of a web application

Selenium Wire - Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.