open-nomad/ui/tests/unit/utils/log-test.js

156 lines
4.2 KiB
JavaScript
Raw Normal View History

import EmberObject from '@ember/object';
import RSVP from 'rsvp';
import { run } from '@ember/runloop';
2017-11-21 19:22:17 +00:00
import sinon from 'sinon';
2019-03-13 00:04:16 +00:00
import { module, test } from 'qunit';
2017-11-21 19:22:17 +00:00
import _Log from 'nomad-ui/utils/classes/log';
2019-03-13 00:04:16 +00:00
import { settled } from '@ember/test-helpers';
2017-11-21 19:22:17 +00:00
let startSpy, stopSpy, initSpy, fetchSpy;
const MockStreamer = EmberObject.extend({
poll: {
isRunning: false,
},
init() {
initSpy(...arguments);
},
start() {
this.get('poll').isRunning = true;
startSpy(...arguments);
},
stop() {
this.get('poll').isRunning = true;
stopSpy(...arguments);
},
step(chunk) {
if (this.get('poll').isRunning) {
this.get('write')(chunk);
}
},
});
const Log = _Log.extend({
init() {
this._super();
const props = this.get('logStreamer').getProperties('url', 'params', 'logFetch', 'write');
this.set('logStreamer', MockStreamer.create(props));
},
});
2019-03-13 00:04:16 +00:00
module('Unit | Util | Log', function(hooks) {
hooks.beforeEach(function() {
2017-11-21 19:22:17 +00:00
initSpy = sinon.spy();
startSpy = sinon.spy();
stopSpy = sinon.spy();
fetchSpy = sinon.spy();
2019-03-13 00:04:16 +00:00
});
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
const makeMocks = output => ({
url: '/test-url/',
params: {
a: 'param',
another: 'one',
},
logFetch: function() {
fetchSpy(...arguments);
return RSVP.Promise.resolve({
text() {
return output;
},
});
},
});
2017-11-21 19:22:17 +00:00
test('logStreamer is created on init', async function(assert) {
2019-03-13 00:04:16 +00:00
const log = Log.create(makeMocks(''));
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
assert.ok(log.get('logStreamer'), 'logStreamer property is defined');
assert.ok(initSpy.calledOnce, 'logStreamer init was called');
});
2017-11-21 19:22:17 +00:00
test('gotoHead builds the correct URL', async function(assert) {
2019-03-13 00:04:16 +00:00
const mocks = makeMocks('');
const expectedUrl = `${mocks.url}?a=param&another=one&offset=0&origin=start&plain=true`;
const log = Log.create(mocks);
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
run(() => {
log.get('gotoHead').perform();
assert.ok(fetchSpy.calledWith(expectedUrl), `gotoHead URL was ${expectedUrl}`);
});
2017-11-21 19:22:17 +00:00
});
test('When gotoHead returns too large of a log, the log is truncated', async function(assert) {
2019-03-13 00:04:16 +00:00
const longLog = Array(50001)
.fill('a')
.join('');
const truncationMessage =
'\n\n---------- TRUNCATED: Click "tail" to view the bottom of the log ----------';
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
const mocks = makeMocks(longLog);
const log = Log.create(mocks);
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
run(() => {
log.get('gotoHead').perform();
});
2017-11-21 19:22:17 +00:00
await settled();
assert.ok(log.get('output').toString().endsWith(truncationMessage), 'Truncation message is shown');
assert.equal(
log.get('output').toString().length,
50000 + truncationMessage.length,
'Output is truncated the appropriate amount'
);
2017-11-21 19:22:17 +00:00
});
test('gotoTail builds the correct URL', async function(assert) {
2019-03-13 00:04:16 +00:00
const mocks = makeMocks('');
const expectedUrl = `${mocks.url}?a=param&another=one&offset=50000&origin=end&plain=true`;
const log = Log.create(mocks);
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
run(() => {
log.get('gotoTail').perform();
assert.ok(fetchSpy.calledWith(expectedUrl), `gotoTail URL was ${expectedUrl}`);
});
2017-11-21 19:22:17 +00:00
});
test('startStreaming starts the log streamer', async function(assert) {
2019-03-13 00:04:16 +00:00
const log = Log.create(makeMocks(''));
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.startStreaming();
assert.ok(startSpy.calledOnce, 'Streaming started');
assert.equal(log.get('logPointer'), 'tail', 'Streaming points the log to the tail');
});
2017-11-21 19:22:17 +00:00
test('When the log streamer calls `write`, the output is appended', async function(assert) {
2019-03-13 00:04:16 +00:00
const log = Log.create(makeMocks(''));
const chunk1 = 'Hello';
const chunk2 = ' World';
const chunk3 = '\n\nEOF';
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.startStreaming();
assert.equal(log.get('output'), '', 'No output yet');
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.get('logStreamer').step(chunk1);
assert.equal(log.get('output'), chunk1, 'First chunk written');
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.get('logStreamer').step(chunk2);
assert.equal(log.get('output'), chunk1 + chunk2, 'Second chunk written');
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.get('logStreamer').step(chunk3);
assert.equal(log.get('output'), chunk1 + chunk2 + chunk3, 'Third chunk written');
});
2017-11-21 19:22:17 +00:00
test('stop stops the log streamer', async function(assert) {
2019-03-13 00:04:16 +00:00
const log = Log.create(makeMocks(''));
2017-11-21 19:22:17 +00:00
2019-03-13 00:04:16 +00:00
log.stop();
assert.ok(stopSpy.calledOnce, 'Streaming stopped');
});
2017-11-21 19:22:17 +00:00
});