202 lines
5.0 KiB
JavaScript
202 lines
5.0 KiB
JavaScript
"use strict";
|
|
|
|
var Cylon = source("cylon"),
|
|
Robot = source("robot");
|
|
|
|
var Logger = source("logger"),
|
|
Adaptor = source("adaptor"),
|
|
Driver = source("driver"),
|
|
Config = source("config");
|
|
|
|
describe("Cylon", function() {
|
|
describe("exports", function() {
|
|
it("sets Logger to the Logger module", function() {
|
|
expect(Cylon.Logger).to.be.eql(Logger);
|
|
});
|
|
|
|
it("sets Adaptor to the Adaptor module", function() {
|
|
expect(Cylon.Adaptor).to.be.eql(Adaptor);
|
|
});
|
|
|
|
it("sets Driver to the Driver module", function() {
|
|
expect(Cylon.Driver).to.be.eql(Driver);
|
|
});
|
|
|
|
it("sets @apiInstances to an empty array by default", function() {
|
|
expect(Cylon.apiInstances).to.be.eql([]);
|
|
});
|
|
|
|
it("sets @robots to an empty object by default", function() {
|
|
expect(Cylon.robots).to.be.eql({});
|
|
});
|
|
|
|
it("sets @robots to an empty object by default", function() {
|
|
expect(Cylon.commands).to.be.eql({});
|
|
});
|
|
});
|
|
|
|
describe("#robot", function() {
|
|
afterEach(function() {
|
|
Cylon.robots = {};
|
|
});
|
|
|
|
it("uses passed options to create a new Robot", function() {
|
|
var opts = { name: "Ultron" };
|
|
var robot = Cylon.robot(opts);
|
|
|
|
expect(robot.toString()).to.be.eql("[Robot name='Ultron']");
|
|
expect(Cylon.robots.Ultron).to.be.eql(robot);
|
|
});
|
|
|
|
it("avoids duplicating names", function() {
|
|
Cylon.robot({ name: "Ultron" });
|
|
Cylon.robot({ name: "Ultron" });
|
|
|
|
var bots = Object.keys(Cylon.robots);
|
|
expect(bots).to.be.eql(["Ultron", "Ultron-1"]);
|
|
});
|
|
});
|
|
|
|
describe("#api", function() {
|
|
afterEach(function() {
|
|
Cylon.apiInstances = [];
|
|
});
|
|
|
|
context("with a provided API server and opts", function() {
|
|
var API, opts, instance;
|
|
|
|
beforeEach(function() {
|
|
instance = { start: spy() };
|
|
opts = { https: false };
|
|
API = stub().returns(instance);
|
|
|
|
Cylon.api(API, opts);
|
|
});
|
|
|
|
it("creates an API instance", function() {
|
|
expect(API).to.be.calledWithNew;
|
|
expect(API).to.be.calledWith(opts);
|
|
});
|
|
|
|
it("passes Cylon through to the instance as opts.mcp", function() {
|
|
expect(opts.mcp).to.be.eql(Cylon);
|
|
});
|
|
|
|
it("stores the API instance in @apiInstances", function() {
|
|
expect(Cylon.apiInstances).to.be.eql([instance]);
|
|
});
|
|
|
|
it("tells the API instance to start", function() {
|
|
expect(instance.start).to.be.called;
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("#start", function() {
|
|
it("calls #start() on all robots", function() {
|
|
var bot1 = { start: spy() },
|
|
bot2 = { start: spy() };
|
|
|
|
Cylon.robots = {
|
|
bot1: bot1,
|
|
bot2: bot2
|
|
};
|
|
|
|
Cylon.start();
|
|
|
|
expect(bot1.start).to.be.called;
|
|
expect(bot2.start).to.be.called;
|
|
});
|
|
});
|
|
|
|
describe("#config", function() {
|
|
beforeEach(function() {
|
|
for (var c in Config) {
|
|
delete Config[c];
|
|
}
|
|
|
|
stub(Logger, "setup");
|
|
});
|
|
|
|
afterEach(function() {
|
|
Logger.setup.restore();
|
|
});
|
|
|
|
it("sets config variables", function() {
|
|
Cylon.config({ a: 1, b: 2 });
|
|
expect(Config.a).to.be.eql(1);
|
|
expect(Config.b).to.be.eql(2);
|
|
});
|
|
|
|
it("updates existing config", function() {
|
|
Cylon.config({ a: 1, b: 2 });
|
|
Cylon.config({ a: 3 });
|
|
expect(Config.a).to.be.eql(3);
|
|
expect(Config.b).to.be.eql(2);
|
|
});
|
|
|
|
it("returns updated config", function() {
|
|
var config = Cylon.config({ a: 1, b: 2 });
|
|
expect(Config).to.be.eql(config);
|
|
});
|
|
|
|
it("doesn't ignores non-object arguments", function() {
|
|
var config = Cylon.config({ a: 1, b: 2 });
|
|
Cylon.config(["a", 1, "b", 2]);
|
|
Cylon.config("hello world");
|
|
expect(Config).to.be.eql(config);
|
|
});
|
|
|
|
it("updates the Logger setup if that changed", function() {
|
|
Cylon.config({ a: 1 });
|
|
expect(Logger.setup).to.not.be.called;
|
|
|
|
Cylon.config({ a: 1, logging: { logger: false } });
|
|
expect(Logger.setup).to.be.called;
|
|
});
|
|
});
|
|
|
|
describe("#halt", function() {
|
|
it("calls #halt() on all robots", function() {
|
|
var bot1 = { halt: spy() },
|
|
bot2 = { halt: spy() };
|
|
|
|
Cylon.robots = {
|
|
bot1: bot1,
|
|
bot2: bot2
|
|
};
|
|
|
|
Cylon.halt();
|
|
|
|
expect(bot1.halt).to.be.called;
|
|
expect(bot2.halt).to.be.called;
|
|
});
|
|
});
|
|
|
|
describe("#toJSON", function() {
|
|
var json, bot1, bot2;
|
|
|
|
beforeEach(function() {
|
|
bot1 = new Robot();
|
|
bot2 = new Robot();
|
|
|
|
Cylon.robots = { bot1: bot1, bot2: bot2 };
|
|
Cylon.commands.echo = function(arg) { return arg; };
|
|
|
|
json = Cylon.toJSON();
|
|
});
|
|
|
|
it("contains all robots the MCP knows about", function() {
|
|
expect(json.robots).to.be.eql([bot1.toJSON(), bot2.toJSON()]);
|
|
});
|
|
|
|
it("contains an array of MCP commands", function() {
|
|
expect(json.commands).to.be.eql(["echo"]);
|
|
});
|
|
|
|
it("contains an array of MCP events", function() {
|
|
expect(json.events).to.be.eql(["robot_added", "robot_removed"]);
|
|
});
|
|
});
|
|
});
|