README.md

Sat, 08 May 2021 13:21:56 +0200

author
Jonas Sch?fer <jonas@wielicki.name>
date
Sat, 08 May 2021 13:21:56 +0200
changeset 169
ecae87f5aaba
parent 167
8b322a7eca1e
permissions
-rw-r--r--

Makefile: make scansion executable for the poor owner, too

# Scansion - XMPP testing tool

Scansion executes simple scripts containing XMPP stanzas. It sends stanzas
in the script, and awaits the response, and verifies it matches what the
script expects.

You can find some example scripts in the `scripts/` directory.

Scansion is used by the Prosody XMPP server project to provide integration tests, and
has a large number of [Scansion scripts](https://hg.prosody.im/trunk/file/tip/spec/scansion).
While many of the scripts there may test for Prosody-specific behaviour, Scansion itself can
be used with any XMPP server.

## Links

- Documentation can be found at https://matthewwild.co.uk/projects/scansion
- Source code at https://code.matthewwild.co.uk/scansion

## Setup

### Requirements

Scansion requires:

- Lua 5.2
- Verse
- LuaExpat
- LuaCJSON
- LuaSec
- LuaSocket
- LuaFileSystem (optional)

If these are present, a simple 'make' and 'sudo make install' should suffice to install scansion to `/usr/local/bin/`.

### Docker

A Dockerfile is also provided, to allow you to build and run scansion inside a clean environment with all dependencies
installed already.

First, build the image:

```
docker build -t scansion .
```

To run it with a directory of test scripts in ./spec/scansion:

```
docker run -v$PWD/spec/scansion:/scripts scansion
```

To run it as a web server:

```
docker run -p 8007:8007 -v$PWD/spec/scansion:/scripts scansion --serve

```

mercurial