diff --git a/test/plugins/inputs/indexTest.js b/test/plugins/inputs/indexTest.js index 75cef0ba..313bf7ca 100644 --- a/test/plugins/inputs/indexTest.js +++ b/test/plugins/inputs/indexTest.js @@ -4,16 +4,34 @@ const expect = require("chai").expect; const inputs = require("../../../src/plugins/inputs"); describe("inputs", function () { + const client = { + messageProvider: undefined, + }; + const clientWithProvider = { + ...client, + messageProvider: true, + }; + describe(".getCommands", function () { it("should return a non-empty array", function () { - expect(inputs.getCommands()).to.be.an("array").that.is.not.empty; + expect(inputs.getCommands(client)).to.be.an("array").that.is.not.empty; }); it("should only return strings with no whitespaces and starting with /", function () { - inputs.getCommands().forEach((command) => { + inputs.getCommands(client).forEach((command) => { expect(command).to.be.a("string").that.does.not.match(/\s/); expect(command[0]).to.equal("/"); }); }); + + it("should not include /search without a message provider", function () { + expect(inputs.getCommands(client)).to.be.an("array").that.does.not.contains("/search"); + }); + + it("should include /search with a message provider", function () { + expect(inputs.getCommands(clientWithProvider)) + .to.be.an("array") + .that.contains("/search"); + }); }); });