Skip to main content

A super simple testing framework for javascript

Project description

https://badge.fury.io/py/purelyjs.png https://travis-ci.org/numerodix/purelyjs.png?branch=master https://pypip.in/license/purelyjs/badge.png
  • Command line test runner with minimal hassle (only needs a javascript shell like node.js/rhino/spidermonkey - no browser).

  • Small library of JUnit-style testing primitives.

Quickstart

$ pip install purelyjs
$ purelyjs

Theory

The composition of a typical Javascript application tends to be a mix of library/framework code (jQuery, Backbone, Angular.js etc) and application specific code. Frameworks provide many hooks that allow the programmer to customize their behavior, which is accomplished through callbacks.

This tight coupling between the application and the framework makes it hard to unit test the application logic (the framework is generally known to work well already, that’s typically why it was chosen). Worse still, the effects of the application are manifest through side effects: network calls are made, ui components are updated etc. Many heavy weight testing frameworks have sprung up to address this need, and they are centered around driving a browser and observing the effects (Selenium, phantomjs, etc).

Application
--------------------------------------------
|                                          |
|            Callback spaghetti            |
|         Land of the side effect          |
|                                          |
--------------------------------------------
|                                          |
|               Pure code                  |
|                                          |
--------------------------------------------

Still, almost every application needs to perform some tasks that have no dependencies on network or browsers. Things like manipulating strings, numbers, dates, arrays, custom data structures, parsing text streams etc. This code is very amenable to unit testing, because it tends to be side effect free (ie. pure).

Testing purely

The basic idea behind purely is that you split out your pure code from your side-effectful code and write tests against it using the primitives purely provides. Your stack will look like this:

Stack
--------------------------------------------
|                                          |
|                  Tests                   |
|                                          |
--------------------------------------------      -----
|                                          |        |
|                purely.js                 |        |
|    assertEqual, assertNotEqual etc...    |        |
|                                          |       test
--------------------------------------------   dependencies
|                                          |        |
|                Pure code                 |        |
|                                          |        |
--------------------------------------------      -----

Since none of this code needs a browser to run, purely can run it on a javascript engine on the command line. First it will scan your test code to find all the tests. For each test it will assemble a test module as shown below (a single file containing all the code, plus the invocation of that one test) and execute it.

Test module
--------------------------------------------      -----
|                                          |        |
|                Pure code                 |        |
|                                          |       test
--------------------------------------------      module
|                                          |        |
|                purely.js                 |        |
|    assertEqual, assertNotEqual etc...    |        V
|                                          |
--------------------------------------------
|                                          |
|                  Tests                   |
|        function testThis() {...}         |
|        function testThat() {...}         |
|                                          |
--------------------------------------------
|                                          |
|               testThis();                |
|                                          |
--------------------------------------------

Usage

Run purelyjs with command line arguments:

$ purelyjs --test test/test_asserts.js
Running 10 tests on /usr/bin/js
..........

----------------------------------------------------------------------
Ran 10 tests in 0.568s

You can also set up a purelyjs.ini file:

[purelyjs]

# will be tried in order, first to succeed will be used
interpreters =
    js
    rhino

libs =
    static/js/code.js

tests =
    static/js/test/tests.js

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

purelyjs-0.1.4.tar.gz (6.8 kB view details)

Uploaded Source

Built Distributions

purelyjs-0.1.4.linux-i686.tar.gz (10.3 kB view details)

Uploaded Source

purelyjs-0.1.4-py2.py3-none-any.whl (8.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file purelyjs-0.1.4.tar.gz.

File metadata

  • Download URL: purelyjs-0.1.4.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for purelyjs-0.1.4.tar.gz
Algorithm Hash digest
SHA256 4df65964218a91365c8b141c6954a6ff695f6661b5b151d7b62db525dcf5eba8
MD5 1de1d66f24075b53923e2a4d38692787
BLAKE2b-256 fe50a8fd02aa3cff531d9c80fab94cee67cd14e79186727e6bfef82e6a32a100

See more details on using hashes here.

File details

Details for the file purelyjs-0.1.4.linux-i686.tar.gz.

File metadata

File hashes

Hashes for purelyjs-0.1.4.linux-i686.tar.gz
Algorithm Hash digest
SHA256 fb2eacf17a9c821c7d825ee710f123c9373de2c507458c15b790988f3436cc12
MD5 34df5a2ebec01526cf0253a387f1f012
BLAKE2b-256 b4bfd63712b100bdfb26753290ea9c0119a6386d219e519ea060f22068065c2d

See more details on using hashes here.

File details

Details for the file purelyjs-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for purelyjs-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2f36832c9f5991feecd38a97d02c39b676bcc28027f916a03a5ed1bed3ebffa1
MD5 5631a234ec7c71f219edf51986d5ad1a
BLAKE2b-256 00cf0ec3a82e17c3dd68b75f5f23808bef801e2498923a43c26a0646a9e62328

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page