Tests for /register

This commit is contained in:
simojenki
2021-02-25 14:14:51 +11:00
parent c1e64dfc32
commit 6c5b78cd6e
7 changed files with 214 additions and 139 deletions

188
tests/server.test.ts Normal file
View File

@@ -0,0 +1,188 @@
import request from "supertest";
import makeServer from "../src/server";
import { SONOS_DISABLED, Sonos, Device } from "../src/sonos";
import { aDevice, aService } from "./builders";
import { InMemoryMusicService } from "./in_memory_music_service";
describe("server", () => {
beforeEach(() => {
jest.clearAllMocks();
});
describe("/", () => {
describe("when sonos integration is disabled", () => {
const server = makeServer(
SONOS_DISABLED,
aService(),
"http://localhost:1234",
new InMemoryMusicService()
);
describe("devices list", () => {
it("should be empty", async () => {
const res = await request(server).get("/").send();
expect(res.status).toEqual(200);
expect(res.text).not.toMatch(/class=device/);
});
});
});
describe("when there are 2 devices and bonob is not registered", () => {
const service1 = aService({
name: "s1",
sid: 1,
});
const service2 = aService({
name: "s2",
sid: 2,
});
const service3 = aService({
name: "s3",
sid: 3,
});
const service4 = aService({
name: "s4",
sid: 4,
});
const missingBonobService = aService({
name: "bonobMissing",
sid: 88,
});
const device1: Device = aDevice({
name: "device1",
ip: "172.0.0.1",
port: 4301,
});
const device2: Device = aDevice({
name: "device2",
ip: "172.0.0.2",
port: 4302,
});
const fakeSonos: Sonos = {
devices: () => Promise.resolve([device1, device2]),
services: () =>
Promise.resolve([service1, service2, service3, service4]),
register: () => Promise.resolve(false),
};
const server = makeServer(
fakeSonos,
missingBonobService,
"http://localhost:1234",
new InMemoryMusicService()
);
describe("devices list", () => {
it("should contain the devices returned from sonos", async () => {
const res = await request(server).get("/").send();
expect(res.status).toEqual(200);
expect(res.text).toMatch(/device1\s+\(172.0.0.1:4301\)/);
expect(res.text).toMatch(/device2\s+\(172.0.0.2:4302\)/);
});
});
describe("services", () => {
it("should contain a list of services returned from sonos", async () => {
const res = await request(server).get("/").send();
expect(res.status).toEqual(200);
expect(res.text).toMatch(/Services\s+4/);
expect(res.text).toMatch(/s1\s+\(1\)/);
expect(res.text).toMatch(/s2\s+\(2\)/);
expect(res.text).toMatch(/s3\s+\(3\)/);
expect(res.text).toMatch(/s4\s+\(4\)/);
});
});
describe("registration status", () => {
it("should be not-registered", async () => {
const res = await request(server).get("/").send();
expect(res.status).toEqual(200);
expect(res.text).toMatch(/No existing service registration/);
});
});
});
describe("when there are 2 devices and bonob is registered", () => {
const service1 = aService();
const service2 = aService();
const bonobService = aService({
name: "bonobNotMissing",
sid: 99,
});
const fakeSonos: Sonos = {
devices: () => Promise.resolve([]),
services: () => Promise.resolve([service1, service2, bonobService]),
register: () => Promise.resolve(false),
};
const server = makeServer(
fakeSonos,
bonobService,
"http://localhost:1234",
new InMemoryMusicService()
);
describe("registration status", () => {
it("should be registered", async () => {
const res = await request(server).get("/").send();
expect(res.status).toEqual(200);
expect(res.text).toMatch(/Existing service config/);
});
});
});
});
describe("/register", () => {
const sonos = {
register: jest.fn(),
};
const theService = aService({
name: "We can all live a life of service",
sid: 999,
});
const server = makeServer(
(sonos as unknown) as Sonos,
theService,
"http://localhost:1234",
new InMemoryMusicService()
);
describe("when is succesfull", () => {
it("should return a nice message", async () => {
sonos.register.mockResolvedValue(true);
const res = await request(server).post("/register").send();
expect(res.status).toEqual(200);
expect(res.text).toMatch("Successfully registered");
expect(sonos.register.mock.calls.length).toEqual(1);
expect(sonos.register.mock.calls[0][0]).toBe(theService);
});
});
describe("when is unsuccesfull", () => {
it("should return a failure message", async () => {
sonos.register.mockResolvedValue(false);
const res = await request(server).post("/register").send();
expect(res.status).toEqual(500);
expect(res.text).toMatch("Registration failed!");
expect(sonos.register.mock.calls.length).toEqual(1);
expect(sonos.register.mock.calls[0][0]).toBe(theService);
});
});
});
});