UNPKG

serverless-offline-msk

Version:

A serverless offline plugin that enables AWS MSK events

253 lines (249 loc) 6.73 kB
"use strict"; var deferred = require("../../../deferred") , reject = deferred.reject; module.exports = function (t) { var x = {}, y = {}, z = {}, e = new Error("Error"), e2 = new Error("Error2"); return { Empty: { "No initial": function (a) { a.throws(function () { t.call([]); }); a.throws(function () { t.call([], function () { return x; }); }); }, "Initial": { "": function (a, d) { t.call([], null, x)(function (res) { a(res, x); }, a.never).done(d, d); }, "Undefined": function (a, d) { t.call([], null, undefined)(function (res) { a(res, undefined); }, a.never).done(d, d); }, "Callback": function (a, d) { t.call([], a.never, x)(function (res) { a(res, x); }, a.never).done(d, d); }, "Promise": function (a, d) { t.call([], a.never, deferred(y))(function (res) { a(res, y); }, a.never).done( d, d ); }, "Error": function (a, d) { t.call([], a.never, reject(e))(a.never, function (res) { a(res, e); }).done( d, d ); } } }, One: { "No initial": { Regular: { "": function (a, d) { t.call([x])(function (res) { a(res, x); }, a.never).done(d, d); }, "Callback": { "": function (a, d) { var list = [x]; t.call(list, a.never)(function (res) { a(res, x); }, a.never).done( d, d ); }, "Promise": function (a, d) { t.call([x], a.never)(function (res) { a(res, x); }, a.never).done(d, d); }, "Throw Error": function (a, d) { t.call([x], function () { throw e; }, null)(a.never, function (res) { a(res, e); }).done(d, d); }, "Return Error": function (a, d) { t.call([deferred(e)], function () { return e; }, null)( a.never, function (res) { a(res, e); } ).done(d, d); } } }, Promise: { "": function (a, d) { t.call([deferred(x)])(function (res) { a(res, x); }, a.never).done(d, d); }, "Callback": function (a, d) { t.call( [deferred(x)], function (acc, arg) { a(acc, null, "Accumulator"); a(arg, x, "Argument"); return y; }, null )(function (res) { a(res, y); }, a.never).done(d, d); } }, Undefined: function (a, d) { t.call([undefined])(function (res) { a(res, undefined); }, a.never).done(d, d); }, Error: { "": function (a, d) { t.call([reject(e)])(a.never, function (res) { a(res, e); }, a.never).done( d, d ); }, "Promise": function (a, d) { t.call([deferred(e)])(a.never, function (res) { a(res, e); }, a.never).done( d, d ); }, "Callback": { "": function (a, d) { t.call( [e], function (acc, arg) { a(acc, null, "Accumulator"); a(arg, e, "Argument"); return y; }, null )(function (res) { a(res, y); }, a.never).done(d, d); }, "Promise": function (a, d) { t.call([deferred(e)], a.never)(a.never, function (res) { a(res, e); }).done(d, d); }, "Throw Error": function (a, d) { var e2 = new Error("Error"); t.call( [e], function (acc, arg) { a(arg, e, "Argument"); throw e2; }, null )(a.never, function (res) { a(res, e2); }).done(d, d); }, "Return Error": function (a, d) { var e2 = new Error("Error"); t.call( [e], function (acc, arg) { a(arg, e, "Argument"); return e2; }, null )(function (res) { a(res, e2); }, a.never).done(d, d); } } } }, "Initial": { Regular: { "": function (a, d) { t.call([x], null, y)(function (res) { a(res, x); }, a.never).done(d, d); }, "Initial Error": function (a, d) { t.call( [x], function (err) { a(err, e, "Call"); throw e; }, e )(a.never, function (res) { a(res, e); }).done(d, d); }, "Callback": { "": function (a, d) { t.call( [x], function (acc, arg) { a(acc, z, "Accumulator"); a(arg, x, "Argument"); return y; }, z )(function (res) { a(res, y); }, a.never).done(d, d); } } }, Promise: { "": function (a, d) { t.call([deferred(x)], null, deferred(y))(function (res) { a(res, x); }, a.never).done(d, d); }, "Callback": function (a, d) { t.call( [deferred(x)], function (acc, arg) { a(acc, z, "Accumulator"); a(arg, x, "Argument"); return deferred(y); }, deferred(z) )(function (res) { a(res, y); }, a.never).done(d, d); } }, Undefined: function (a, d) { t.call([undefined], null, z)(function (res) { a(res, undefined); }, a.never).done(d, d); } } }, Many: { "Initial error": function (a, d) { var list = [x, y, z]; t.call( list, function (a1, a2, a3, a4) { a.deep([a1, a2, a3, a4], [e, x, 0, list]); return e; }, reject(e) )(a.never, function (res) { a(res, e); }).done(d, d); }, "No callback": { "Error": function (a, d) { t.call([x, reject(e), e2])(a.never, function (res) { a(res, e); }).done(d, d); }, "Error promise": function (a, d) { t.call([x, deferred(e), e2])(a.never, function (res) { a(res, e); }).done(d, d); }, "Values": function (a, d) { t.call([x, y, z])(function (res) { a(res, z); }, a.never).done(d, d); }, "Values & Promises": function (a, d) { t.call([x, deferred(y), z])(function (res) { a(res, z); }, a.never).done(d, d); }, "Values & Promises & Initial": function (a, d) { t.call([x, deferred(y), z], null, {})(function (res) { a(res, z); }, a.never).done(d, d); } }, "Callback": { "Error": function (a, d) { t.call([x, e, e2], function () { return z; })(function (res) { a(res, z); }, a.never).done(d, d); }, "Error promise": function (a, d) { t.call([x, deferred(e), e2], function () { return z; })(a.never, function ( res ) { a(res, e); }).done(d, d); }, "Values": function (a, d) { t.call([1, 2, 3], function (acc, res) { return acc * res; }, 1)(function (res) { a(res, 6); }, a.never).done(d, d); }, "Values & Promises": function (a, d) { t.call( [1, deferred(2), 3], function (acc, res) { return deferred(acc * res); }, deferred(1) )(function (res) { a(res, 6); }, a.never).done(d, d); } } } }; };