Skip to content

Tests that can be run on a shelf instance that would functionally test it front to back

License

Notifications You must be signed in to change notification settings

connected-world-services/shelf-functional-tests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shelf Functional Tests

A suite of functional tests for things like infrastructure and concurrency.

Dependencies Dev Dependencies

Overview

Unit tests are great but they can't catch every problem. Most of the problems we have had (after deployment) have been due to certain infrastructure or concurrency problems. We also have to do a certain amount of manual testing per deployment which takes up additional time. These tests are aimed at alleviating those problems.

Installation

curl https://codeload.github.com/connected-world-services/shelf-functional-tests/tar.gz/master | tar -xzv
cd shelf-functional-tests-master
npm install

Configuration

Name Type Description Default
DEBUG bool Turns on debug logging for additional information. false
SHELF_CONCURRENT_REQUESTS int There are tests that make concurrent requests. When this happens it will use this value to figure out how many should be run at once. 10
SHELF_LARGE_FILE_SIZE int The number of MB that you would like the large file upload test to use. 1000
SHELF_AUTH_TOKEN string The token required in the Authorization header to Shelf. -
SHELF_URI string The full URI to where you would like the tests to upload to. This should include the protocol, host and path to the testing directory. For example https://api.shelf-qa.cwscloud.net/test-shelf/artifact/path/to/test/in -

Running the Tests

Important: Remember that once Shelf stores an artifact it cannot be deleted without administrative intervention. Make sure that the SHELF_URI is pointing to somewhere you don't mind filling up with a ton of artifacts.

There are two main scripts you can run.

npm run test

The above will run all tests.

npm run fast-test

The above will run all tests that are quick. This excludes the test that uploads a very large file.

Below are a few additional examples.

# Run the full suite of "CONCURRENCY" tests.
npm run test -- --filter="CONCURRENCY"

# run a specific test which happens to be part of the "CONCURRENCY" suite.
npm run test -- --filter="can be handled when making similar requests"

License

This software is distributed under a modified MIT license with clauses covering patents. Read full license terms.

About

Tests that can be run on a shelf instance that would functionally test it front to back

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published