0.0.2 • Published 7 years ago

@iamsap/user-simulator v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

User Simulator

Simulates configurable user behavior.

Install via npm

npm install @iamsap\user-simulator

Import the simulator

var sim = require('@iamsap/user-simulator');

To have user-simulator create new users with @sillyname

var doThisRandomThing = function doThisRandomThing(user, cb) {
    // ... some action
    cb(null, user.name + ' didThisRandomThing ' + new Date());
}

var doAnotherRandomThing = function doAnotherRandomThing(user, cb) {
    // ... some action
    cb(null, user.name + ' didAnotherRandomThing ' + new Date());
}

var config = {
    actions: [doThisRandomThing, doAnotherRandomThing],
    userCount: 10,
    timeBetweenActions: [1000, 5000],
    actionsPerUser: [1, 5],
    debug: true
}

sim.simulate(config, function onComplete(err, results) {
    console.log('All done: ' + JSON.stringify(results));
});

Or to provide your own users

var myUserArr = [{name:'John'}, {name:'Paul'}, {name:'George'}, {name:'Ringo'}];

var config = {
    actions: [doThisRandomThing, doAnotherRandomThing],
    users: myUserArr,
    timeBetweenActions: [50, 500],
    actionsPerUser: [1, 5],
    debug: true
}

sim.simulate(config, function onComplete(err, results) {
    console.log('All done: ' + JSON.stringify(results));
});

Note: Actions do not run concurrently (yet).