Skip to content

nuprl/PromiseKeeper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PromiseKeeper

Finding Broken Promises in Asynchronous JavaScript Programs, OOPSLA'18

Recently, promises were added to ECMAScript 6, the JavaScript standard, in order to provide better support for the asynchrony that arises in user interfaces, network communication, and non-blocking I/O. Using promises, programmers can avoid common pitfalls of event-driven programming such as event races and the deeply nested counterintuitive control flow referred to as “callback hell”. Unfortunately, promises have complex semantics and the intricate control– and data-flow present in promise-based code hinders program comprehension and can easily lead to bugs. The promise graph was proposed as a graphical aid for understanding and debugging promise-based code. PromiseKeeper is an open-source tool which performs a dynamic analysis to create promise graphs and infer common promise anti-patterns. The results of applying PromiseKeeper to 12 open source promise-based Node.js applications suggest that the constructed promise graphs can provide developers with valuable information about occurrences of common anti-patterns in their promise-based code, and that promise graphs can be constructed with acceptable run-time overhead.

sample promise graph

Installing the project

The instructions are for installation on Ubuntu.

Prerequisites

  1. Install Node and npm
$ sudo apt-get update
$ sudo apt-get install nodejs
$ sudo apt-get install npm
  1. Install Git:
$ sudo apt install git-all
  1. Install pip
$ sudo apt install python-pip
  1. Install Graphviz
$ npm install graphviz
  • Download and install Graphviz
  • If location of Graphviz is not on your path, you need to set it in src/graph/vis/graphVis.js: E.g., vGraph.setGraphVizPath("/usr/local/bin");
  1. Clone PromiseKeeper
 $ git clone https://github.com/nuprl/PromiseKeeper.git
  1. Download and install Jalangi
$git clone https://github.com/Samsung/jalangi2

$sudo apt-get update
$sudo apt-get install python-software-properties python g++ make
$sudo apt-get install chromium-browser
  1. Set the following environment variable to locations of PromiseKeeper and Jalangi, respectively
$PROMISES_HOME
$JALANGI_HOME
  1. Swich to the project directory and install PromiseKeeper
$npm install

Running the unit tests

You can run the Mocha unit tests from the command line. First, switch to the project directory (PromiseKeeper). Then, execute the following command:

$npm test

You can also run the unit tests within an IDE that is bundled with Node and Mocha plugins, by running the test/unit-tests.js as a Mocha test file.

Expected output:

  • Raw traces: tests-unit/output-actual/ This folder contains the raw traces of promise-related operations in JavaScript code. Each file contains the trace of an input file (with the same name) in a human-readable format.
  • JSON traces: tests-unit/output-actual/json-logs/ This folder contains the raw traces, but in JSON format. Each JSON log file attributes to an input JavaScript file with the same name.
  • Inferred graphs in JSON format: tests-unit/output-actual/graphs/ This folder contains the graphs inferred from the traces in JSON format.
  • Visualized graphs and textual reports: tests-unit/output-actual/graph-vis/ This forlder contains the visual representation of each graph, overlaid with information about inferred anti-patterns. A textual report accompanies each graph to provide an overview of discovered anti-patterns.

About

Finding Broken Promises in Asynchronous JavaScript Programs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published