Files
cgm-remote-monitor/tests/api3.read.test.js
T
ac1a7d1bd8 Api3 remove auth token (#6863)
* APIv3: removing authorization by accessToken from codebase and adjusting tests

* APIv3: updating docs

---------

Co-authored-by: Petr Ondrůšek <petr.ondrusek@okin.eu>
Co-authored-by: Sulka Haro <sulka@sulka.net>
2023-02-18 16:12:47 +02:00

225 lines
6.3 KiB
JavaScript

/* eslint require-atomic-updates: 0 */
/* global should */
'use strict';
require('should');
describe('API3 READ', function () {
const self = this
, testConst = require('./fixtures/api3/const.json')
, instance = require('./fixtures/api3/instance')
, authSubject = require('./fixtures/api3/authSubject')
, opTools = require('../lib/api3/shared/operationTools')
;
self.validDoc = {
date: (new Date()).getTime(),
app: testConst.TEST_APP,
device: testConst.TEST_DEVICE + ' API3 READ',
uploaderBattery: 58
};
self.validDoc.identifier = opTools.calculateIdentifier(self.validDoc);
self.timeout(15000);
before(async () => {
self.instance = await instance.create({});
self.app = self.instance.app;
self.env = self.instance.env;
self.col = 'devicestatus';
self.url = `/api/v3/${self.col}`;
let authResult = await authSubject(self.instance.ctx.authorization.storage, [
'create',
'read',
'delete'
], self.instance.app);
self.subject = authResult.subject;
self.jwt = authResult.jwt;
self.cache = self.instance.cacheMonitor;
});
after(() => {
self.instance.ctx.bus.teardown();
});
beforeEach(() => {
self.cache.clear();
});
afterEach(() => {
self.cache.shouldBeEmpty();
});
it('should require authentication', async () => {
let res = await self.instance.get(`${self.url}/FAKE_IDENTIFIER`)
.expect(401);
res.body.status.should.equal(401);
res.body.message.should.equal('Missing or bad access token or JWT');
});
it('should not found not existing collection', async () => {
let res = await self.instance.get(`/api/v3/NOT_EXIST/NOT_EXIST`, self.jwt.read)
.send(self.validDoc)
.expect(404);
res.body.status.should.equal(404);
should.not.exist(res.body.result);
self.cache.shouldBeEmpty()
});
it('should not found not existing document', async () => {
let res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.expect(404);
res.body.status.should.equal(404);
should.not.exist(res.body.result);
self.cache.shouldBeEmpty()
});
it('should read just created document', async () => {
let res = await self.instance.post(`${self.url}`, self.jwt.create)
.send(self.validDoc)
.expect(201);
res.body.status.should.equal(201);
res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.expect(200);
res.body.status.should.equal(200);
const result = res.body.result;
result.should.containEql(self.validDoc);
result.should.have.property('srvCreated').which.is.a.Number();
result.should.have.property('srvModified').which.is.a.Number();
result.should.have.property('subject');
self.validDoc.subject = result.subject; // let's store subject for later tests
self.cache.nextShouldEql(self.col, self.validDoc)
});
it('should contain only selected fields', async () => {
let res = await self.instance.get(`${self.url}/${self.validDoc.identifier}?fields=date,device,subject`, self.jwt.read)
.expect(200);
res.body.status.should.equal(200);
const correct = {
date: self.validDoc.date,
device: self.validDoc.device,
subject: self.validDoc.subject
};
res.body.result.should.eql(correct);
});
it('should contain all fields', async () => {
let res = await self.instance.get(`${self.url}/${self.validDoc.identifier}?fields=_all`, self.jwt.read)
.expect(200);
res.body.status.should.equal(200);
for (let fieldName of ['app', 'date', 'device', 'identifier', 'srvModified', 'uploaderBattery', 'subject']) {
res.body.result.should.have.property(fieldName);
}
});
it('should not send unmodified document since', async () => {
let res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.set('If-Modified-Since', new Date(new Date().getTime() + 1000).toUTCString())
.expect(304);
res.body.should.be.empty();
});
it('should send modified document since', async () => {
let res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.set('If-Modified-Since', new Date(new Date(self.validDoc.date).getTime() - 1000).toUTCString())
.expect(200);
res.body.status.should.equal(200);
res.body.result.should.containEql(self.validDoc);
});
it('should recognize softly deleted document', async () => {
let res = await self.instance.delete(`${self.url}/${self.validDoc.identifier}`, self.jwt.delete)
.expect(200);
res.body.status.should.equal(200);
self.cache.nextShouldDeleteLast(self.col)
res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.expect(410);
res.body.status.should.equal(410);
should.not.exist(res.body.result);
});
it('should not find permanently deleted document', async () => {
let res = await self.instance.delete(`${self.url}/${self.validDoc.identifier}?permanent=true`, self.jwt.delete)
.expect(200);
res.body.status.should.equal(200);
self.cache.nextShouldDeleteLast(self.col)
res = await self.instance.get(`${self.url}/${self.validDoc.identifier}`, self.jwt.read)
.expect(404);
res.body.status.should.equal(404);
should.not.exist(res.body.result);
});
it('should find document created by APIv1', async () => {
const doc = Object.assign({}, self.validDoc, {
created_at: new Date(self.validDoc.date).toISOString()
});
delete doc.identifier;
await new Promise((resolve, reject) => {
self.instance.ctx.devicestatus.create([doc], async (err) => { // let's insert the document in APIv1's way
should.not.exist(err);
doc._id = doc._id.toString();
self.cache.nextShouldEql(self.col, doc)
err ? reject(err) : resolve(doc);
});
});
const identifier = doc._id.toString();
delete doc._id;
let res = await self.instance.get(`${self.url}/${identifier}`, self.jwt.read)
.expect(200);
res.body.status.should.equal(200);
res.body.result.should.containEql(doc);
res = await self.instance.delete(`${self.url}/${identifier}?permanent=true`, self.jwt.delete)
.expect(200);
res.body.status.should.equal(200);
self.cache.nextShouldDeleteLast(self.col)
});
})
;