rustypaste/fixtures
Orhun Parmaksız 4d16e65edb
test(fixtures): add a test framework along with test fixtures
2022-05-21 15:27:38 +03:00
..
test-duplicate-file-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-expiring-file-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-file-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-oneshot-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-path-traversal test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-remote-file-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-server-auth test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-server-payload-limit test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-url-upload test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
.env test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
README.md test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00
test-fixtures.sh test(fixtures): add a test framework along with test fixtures 2022-05-21 15:27:38 +03:00

README.md

Fixtures

This directory contains the test fixtures and a simple testing framework for rustypaste.

Running fixtures

  1. Build the project in debug mode: cargo build
  2. Execute the runner script in this directory: ./test-fixtures.sh

Adding new fixtures

Create an appropriately named directory for the test fixture you want to add. e.g. test-file-upload

Each fixture directory should contain the following files:

test-file-upload/
├── config.toml
└── test.sh
  • config.toml: Contains the rustypaste configuration. See the default configuration.
  • test.sh: Contains the helper functions for testing. The file format is the following:
#!/usr/bin/env bash

setup() {
  # preparation
}

run_test() {
  # assertions
}

teardown() {
  # cleanup
}

These functions are executed in the order defined above.

See the test-file-upload fixture for an example.

Debugging

Set the DEBUG environment variable to true while executing the runner script:

$ DEBUG=true ./test-fixtures.sh