Metadata-Version: 2.1
Name: hitchstory
Version: 0.13.2
Summary: Type-safe, YAML-based BDD, TDD & specification by example framework for python.
Home-page: https://hitchdev.com/hitchstory/
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: MIT
Keywords: hitchdev framework bdd tdd declarative tests testing yaml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Operating System :: Unix
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# HitchStory

[![Main branch status](https://github.com/hitchdev/hitchstory/actions/workflows/regression.yml/badge.svg)](https://github.com/hitchdev/hitchstory/actions/workflows/regression.yml)

HitchStory is a python 3
[testing and living documentation framework](https://hitchdev.com/hitchstory/approach/testing-and-living-documentation) for building easily
maintained example driven [executable specifications](https://hitchdev.com/hitchstory/approach/executable-specifications) (sometimes dubbed
acceptance tests).

It was designed initially to make [realistic testing](https://hitchdev.com/hitchstory/approach/test-realism) of code less
of a chore so the tests would actually get written and run.

The executable specifications can be written to specify and test applications at
any level and have been used successfully to replace traditional
low level unit tests, integration tests and end to end tests
with easier to maintain tests.

The specifications are [written using StrictYAML](https://hitchdev.com/hitchstory/why/strictyaml) and the
code to execute them is written by you, in python.


## Example








example.story:

```yaml
Logged in:
  given:
    website: /login  # preconditions
  steps:
  - Form filled:
      username: AzureDiamond
      password: hunter2
  - Clicked: login


Email sent:
  about: |
    The most basic email with no subject, cc or bcc
    set.
  based on: logged in             # inherits from and continues from test above
  steps:
  - Clicked: new email
  - Form filled:
      to: Cthon98@aol.com
      contents: |                # long form text
        Hey guys,

        I think I got hacked!
  - Clicked: send email
  - Email was sent

```









engine.py:

```python
from hitchstory import BaseEngine, GivenDefinition, GivenProperty
from mockemailchecker import email_was_sent
from mockselenium import Webdriver
from strictyaml import Str

class Engine(BaseEngine):
    given_definition = GivenDefinition(
        website=GivenProperty(Str()),
    )

    def set_up(self):
        self.driver = Webdriver()
        self.driver.visit(
            "http://localhost:5000{0}".format(self.given['website'])
        )

    def form_filled(self, **textboxes):
        for name, contents in sorted(textboxes.items()):
            self.driver.fill_form(name, contents)

    def clicked(self, name):
        self.driver.click(name)

    def email_was_sent(self):
        email_was_sent()

```









```python
from hitchstory import StoryCollection
from pathquery import pathquery
from engine import Engine

StoryCollection(pathquery(".").ext("story"), Engine()).named("Email sent").play()

```

Will output:
```
RUNNING Email sent in /path/to/working/example.story ...
Visiting http://localhost:5000/login
Entering text hunter2 in password
Entering text AzureDiamond in username
Clicking on login
Clicking on new email
In contents entering text:
Hey guys,

I think I got hacked!


Entering text Cthon98@aol.com in to
Clicking on send email
Email was sent
SUCCESS in 0.1 seconds.
```












## Installation and set up

You *can* install hitchstory through pypi in any python 3 virtualenv:

```bash
$ pip install hitchstory
```

However, it's recommended to install and set up hitchstory with [hitchkey](https://github.com/hitchdev/hitchkey),
which will take care of automatically setting up a up the [recommended hitchstory environment](https://hitchdev.com/hitchstory/approach/recommended-environment).

Install hitchkey with [pipx](https://pypa.github.io/pipx/):

```bash
pipx install hitchkey
```

Once hitchkey is installed:

Example demo of hitchstory basics:

```bash
cd temp
hk --demo hitchstory ; hk bdd email
```

Example python API test demo (uses game of life):

```bash
cd temp
hk --demo pythonapi ; cd pythonapi ; hk bdd
```


## Using HitchStory

- [Abort a story with ctrl-C](https://hitchdev.com/hitchstory/using/alpha/aborting)
- [Continue on failure when playing multiple stories](https://hitchdev.com/hitchstory/using/alpha/continue-on-failure)
- [Hiding stacktraces for expected exceptions](https://hitchdev.com/hitchstory/using/alpha/expected-exceptions)
- [Handling failing tests](https://hitchdev.com/hitchstory/using/alpha/failing-tests)
- [Flaky story detection](https://hitchdev.com/hitchstory/using/alpha/flaky-story-detection)
- [Generate documentation from stories](https://hitchdev.com/hitchstory/using/alpha/generate-documentation)
- [Given preconditions](https://hitchdev.com/hitchstory/using/alpha/given)
- [Gradual typing of story steps](https://hitchdev.com/hitchstory/using/alpha/gradual-typing)
- [Inherit one story from another](https://hitchdev.com/hitchstory/using/alpha/inheritance)
- [Extra story metadata - e.g. adding JIRA ticket numbers to stories](https://hitchdev.com/hitchstory/using/alpha/metadata)
- [Story with parameters](https://hitchdev.com/hitchstory/using/alpha/parameterized-stories)
- [Play multiple stories in sequence](https://hitchdev.com/hitchstory/using/alpha/play-multiple-stories)
- [Story that rewrites itself](https://hitchdev.com/hitchstory/using/alpha/rewrite-story)
- [Running a single named story successfully](https://hitchdev.com/hitchstory/using/alpha/run-single-named-story)
- [Shortcut lookup for story names](https://hitchdev.com/hitchstory/using/alpha/shortcut-lookup)
- [Special exception named failure](https://hitchdev.com/hitchstory/using/alpha/special-failure-exception)
- [Arguments to steps](https://hitchdev.com/hitchstory/using/alpha/steps-and-step-arguments)
- [Strong typing](https://hitchdev.com/hitchstory/using/alpha/strong-typing)
- [Variations](https://hitchdev.com/hitchstory/using/alpha/variations)




## Approach to using HitchStory

Best practices, how the tool was meant to be used, etc.

- [What is the difference betweeen a test and a story?](https://hitchdev.com/hitchstory/approach/)
- [Recommended complementary tools](https://hitchdev.com/hitchstory/approach/)
- [Triality](https://hitchdev.com/hitchstory/approach/)
- [Tests are an investment](https://hitchdev.com/hitchstory/approach/)
- [Executable specifications](https://hitchdev.com/hitchstory/approach/)
- [Recommended Environment](https://hitchdev.com/hitchstory/approach/)
- [Can I do BDD with hitchstory? How do I do BDD with hitchstory?](https://hitchdev.com/hitchstory/approach/)
- [Does hitchstory let your BA or Product Manager write stories while you just write the code?](https://hitchdev.com/hitchstory/approach/)
- [What is a testing and living documentation framework?](https://hitchdev.com/hitchstory/approach/)
- [Flaky Tests](https://hitchdev.com/hitchstory/approach/)
- [The importance of test realism](https://hitchdev.com/hitchstory/approach/)
- [How can executable specifications and living documentation be used for stakeholder collaboration?](https://hitchdev.com/hitchstory/approach/)
- [Screenplay Principle](https://hitchdev.com/hitchstory/approach/)
- [Testing non-deterministic code](https://hitchdev.com/hitchstory/approach/)


## Design decisions and principles

Somewhat controversial design decisions are justified here.

- [Principles](https://hitchdev.com/hitchstory/why/)
- [Two Unit Tests, Zero Integration Tests](https://hitchdev.com/hitchstory/why/)
- [Declarative User Stories](https://hitchdev.com/hitchstory/why/)
- [Why is inheritance a feature of hitchstory stories?](https://hitchdev.com/hitchstory/why/)
- [Why does hitchstory not have an opinion on what counts as interesting to "the business"?](https://hitchdev.com/hitchstory/why/)
- [Why programatically rewrite stories?](https://hitchdev.com/hitchstory/why/)
- [Why does HitchStory use StrictYAML?](https://hitchdev.com/hitchstory/why/)
- [Why does hitchstory mandate the use of given but not when and then?](https://hitchdev.com/hitchstory/why/)
- [Why does hitchstory not have a command line interface?](https://hitchdev.com/hitchstory/why/)


## Why not X instead?

There are several tools you can use instead, this is why you should use this one instead:

- [Why not use the Robot Framework?](https://hitchdev.com/hitchstory/why-not/)
- [Why not use Behave, Lettuce or Cucumber (Gherkin)?](https://hitchdev.com/hitchstory/why-not/)
- [Why use hitchstory instead of a unit testing framework?](https://hitchdev.com/hitchstory/why-not/)


