SuitestAutomation/suitest-js-api

View on GitHub
lib/chains/clearAppDataChain.js

Summary

Maintainability
A
2 hrs
Test Coverage
A
100%
// Import utils

const makeChain = require('../utils/makeChain');
const {
    makeThenComposer,
    makeToStringComposer,
    abandonComposer,
    cloneComposer,
    gettersComposer,
    assertComposer,
    makeToJSONComposer,
} = require('../composers');

const clearAppDataFactory = (classInstance) => {
    const toJSON = () => ({
        type: 'eval',
        request: {
            type: 'clearAppData',
        },
    });

    const toStringComposer = makeToStringComposer(toJSON);
    const thenComposer = makeThenComposer(toJSON);
    const toJSONComposer = makeToJSONComposer({toJSON});

    /**
     * Function accepts data object of future chain as input
     * and returns a list of composers that should build the chain
     * @param data
     * @returns {*[]}
     */
    const getComposers = data => {
        const output = [
            toStringComposer,
            thenComposer,
            cloneComposer,
            gettersComposer,
            toJSONComposer,
        ];

        if (!data.isAssert) {
            output.push(assertComposer);
        }

        if (!data.isAbandoned) {
            output.push(abandonComposer);
        }

        return output;
    };

    const clearAppDataChain = () => makeChain(classInstance, getComposers, {type: 'clearAppData'});

    return {
        clearAppData: clearAppDataChain,
        clearAppDataAssert: () => clearAppDataChain().toAssert(),

        // For Unit tests
        getComposers,
        toString,
        toJSON,
    };
};

module.exports = clearAppDataFactory;