Coder Social home page Coder Social logo

stressoor.js's Introduction

stressoor.js

npm install @latticexyz/stressoor

Stressoor.js makes it simple to write complete, rigorous blockchain stress-tests.

We implemented fundamental stressing, measuring, and reporting primitives so you don't have to code them up from scratch.

Stressoor.js is made to build on top of. If you just want to stress-test a chain or see an example of this library in use, check out chain-stress-tests.

Stressoor 101 [WIP]

The Stressoor object initializes a set number of deterministically generated wallets. We call, Stressoor.stress(stressFunc, nCalls, ...) to cyclically iterate through them until the desired number of calls have been made.

The stressoor will call a stressFunc with each of those wallets.

You will generally be abstracted away from this by the runStressTest() function. It takes some functions and configurations objects as parameters and creates a StressFunc that looks something like this:

async function stress(wallet, callIdx, walletIdx) => {
    // create the call context
    const callContext = { wallet, callIdx, walletIdx };
    // generate call parameters, paramsFunc can return any value
    const params = await paramsFunc(callContext, testContext);
    // call metricsFunc
    // among other things, meticsFunc will call callFunc with
    // (params, callContext, testContext)
    const metrics = await metricsFunc(callFunc, params, callContext, testContext);
    // pass the new data to every report object
    for (let ii = 0; ii < reports.length; ii++) {
      reports[ii].newMetric(params, metrics, callContext, testContext);
    }
  };

See the actual code for runStressTest here.

The wallets the stressoor initializes are instances of an ethers.js Wallet wrapped to optionally keep track of its nonce internally (so they can send multiple transactions in the same block).

stressoor.js's People

Contributors

therealbytes avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.