369 lines
15 KiB
JavaScript
369 lines
15 KiB
JavaScript
/* jshint -W097 */// jshint strict:false
|
|
/*jslint node: true */
|
|
/*jshint expr: true*/
|
|
var expect = require('chai').expect;
|
|
var setup = require(__dirname + '/lib/setup');
|
|
|
|
var objects = null;
|
|
var states = null;
|
|
var onStateChanged = null;
|
|
var onObjectChanged = null;
|
|
var sendToID = 1;
|
|
|
|
var adapterShortName = setup.adapterName.substring(setup.adapterName.indexOf('.')+1);
|
|
|
|
var now = new Date().getTime();
|
|
var now2;
|
|
if (!now2) now2 = new Date().getTime();
|
|
|
|
function checkConnectionOfAdapter(cb, counter) {
|
|
counter = counter || 0;
|
|
if (counter > 20) {
|
|
cb && cb('Cannot check connection');
|
|
return;
|
|
}
|
|
|
|
states.getState('system.adapter.' + adapterShortName + '.0.alive', function (err, state) {
|
|
if (err) console.error('MySQL: ' + err);
|
|
if (state && state.val) {
|
|
cb && cb();
|
|
} else {
|
|
setTimeout(function () {
|
|
checkConnectionOfAdapter(cb, counter + 1);
|
|
}, 1000);
|
|
}
|
|
});
|
|
}
|
|
|
|
function checkValueOfState(id, value, cb, counter) {
|
|
counter = counter || 0;
|
|
if (counter > 20) {
|
|
cb && cb('Cannot check value Of State ' + id);
|
|
return;
|
|
}
|
|
|
|
states.getState(id, function (err, state) {
|
|
if (err) console.error('MySQL: ' + err);
|
|
if (value === null && !state) {
|
|
cb && cb();
|
|
} else
|
|
if (state && (value === undefined || state.val === value)) {
|
|
cb && cb();
|
|
} else {
|
|
setTimeout(function () {
|
|
checkValueOfState(id, value, cb, counter + 1);
|
|
}, 500);
|
|
}
|
|
});
|
|
}
|
|
|
|
function sendTo(target, command, message, callback) {
|
|
onStateChanged = function (id, state) {
|
|
if (id === 'messagebox.system.adapter.test.0') {
|
|
callback(state.message);
|
|
}
|
|
};
|
|
|
|
states.pushMessage('system.adapter.' + target, {
|
|
command: command,
|
|
message: message,
|
|
from: 'system.adapter.test.0',
|
|
callback: {
|
|
message: message,
|
|
id: sendToID++,
|
|
ack: false,
|
|
time: (new Date()).getTime()
|
|
}
|
|
});
|
|
}
|
|
|
|
describe('Test MySQL Existing', function() {
|
|
before('Test MySQL Existing: Start js-controller', function (_done) {
|
|
this.timeout(600000); // because of first install from npm
|
|
setup.adapterStarted = false;
|
|
|
|
setup.setupController(function () {
|
|
var config = setup.getAdapterConfig();
|
|
// enable adapter
|
|
config.common.enabled = true;
|
|
config.common.loglevel = 'debug';
|
|
|
|
config.native.dbtype = 'mysql';
|
|
config.native.user = 'root';
|
|
if (process.env.APPVEYOR && process.env.APPVEYOR==='True') {
|
|
config.native.password = 'Password12!';
|
|
}
|
|
|
|
setup.setAdapterConfig(config.common, config.native);
|
|
|
|
setup.startController(true, function(id, obj) {}, function (id, state) {
|
|
if (onStateChanged) onStateChanged(id, state);
|
|
},
|
|
function (_objects, _states) {
|
|
objects = _objects;
|
|
states = _states;
|
|
_done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('Test MySQL Existing: Check if adapter started', function (done) {
|
|
this.timeout(60000);
|
|
checkConnectionOfAdapter(function () {
|
|
now = new Date().getTime();
|
|
objects.setObject('system.adapter.test.0', {
|
|
common: {
|
|
|
|
},
|
|
type: 'instance'
|
|
},
|
|
function () {
|
|
states.subscribeMessage('system.adapter.test.0');
|
|
setTimeout(function() {
|
|
sendTo('sql.0', 'enableHistory', {
|
|
id: 'sql.0.memRss',
|
|
options: {
|
|
changesOnly: true,
|
|
debounce: 0,
|
|
retention: 31536000,
|
|
changesMinDelta: 0.5,
|
|
storageType: false
|
|
}
|
|
}, function (result) {
|
|
expect(result.error).to.be.undefined;
|
|
expect(result.success).to.be.true;
|
|
sendTo('sql.0', 'enableHistory', {
|
|
id: 'system.adapter.sql.0.memHeapTotal',
|
|
options: {
|
|
changesOnly: false,
|
|
debounce: 0,
|
|
retention: 31536000,
|
|
storageType: 'Number'
|
|
}
|
|
}, function (result) {
|
|
expect(result.error).to.be.undefined;
|
|
expect(result.success).to.be.true;
|
|
sendTo('sql.0', 'enableHistory', {
|
|
id: 'system.adapter.sql.0.alive',
|
|
options: {
|
|
changesOnly: false,
|
|
debounce: 0,
|
|
retention: 31536000,
|
|
storageType: false
|
|
}
|
|
}, function (result) {
|
|
expect(result.error).to.be.undefined;
|
|
expect(result.success).to.be.true;
|
|
sendTo('sql.0', 'enableHistory', {
|
|
id: 'system.adapter.sql.0.uptime',
|
|
options: {
|
|
changesOnly: false,
|
|
debounce: 0,
|
|
retention: 31536000,
|
|
storageType: false
|
|
}
|
|
}, function (result) {
|
|
expect(result.error).to.be.undefined;
|
|
expect(result.success).to.be.true;
|
|
// wait till adapter receives the new settings
|
|
setTimeout(function () {
|
|
done();
|
|
}, 20000);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}, 10000);
|
|
});
|
|
});
|
|
});
|
|
it('Test ' + adapterShortName + ': Check Enabled Points after Enable', function (done) {
|
|
this.timeout(20000);
|
|
|
|
sendTo('sql.0', 'getEnabledDPs', {}, function (result) {
|
|
console.log(JSON.stringify(result));
|
|
expect(Object.keys(result).length).to.be.equal(4);
|
|
expect(result['sql.0.memRss'].enabled).to.be.true;
|
|
setTimeout(function () {
|
|
done();
|
|
}, 15000);
|
|
});
|
|
});
|
|
it('Test MySQL Existing: Write values into DB', function (done) {
|
|
this.timeout(10000);
|
|
|
|
states.setState('sql.0.memRss', {val: 2, ts: now - 20000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: true, ts: now - 10000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: 2, ts: now - 5000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: 2.2, ts: now - 4000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: 2.3, ts: now - 3500}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: '2.5', ts: now - 3000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: 3, ts: now - 1000}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(function () {
|
|
states.setState('sql.0.memRss', {val: 'Test', ts: now - 500}, function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
setTimeout(done, 5000);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
}, 100);
|
|
});
|
|
});
|
|
it('Test MySQL Existing: Read values from DB using query', function (done) {
|
|
this.timeout(10000);
|
|
|
|
sendTo('sql.0', 'query', 'SELECT id FROM yunkong2.datapoints WHERE name="sql.0.memRss"', function (result) {
|
|
console.log('MySQL: ' + JSON.stringify(result.result, null, 2));
|
|
sendTo('sql.0', 'query', 'SELECT * FROM yunkong2.ts_number WHERE id=' + result.result[0].id, function (result) {
|
|
console.log('MySQL: ' + JSON.stringify(result.result, null, 2));
|
|
expect(result.result.length).to.be.at.least(5);
|
|
var found = 0;
|
|
var found22 = false;
|
|
var found23 = false;
|
|
for (var i = 0; i < result.result.length; i++) {
|
|
if (result.result[i].val >= 1 && result.result[i].val <= 3) found ++;
|
|
if (result.result[i].val === 2.2) found22 = true;
|
|
if (result.result[i].val === 2.3) found23 = true;
|
|
}
|
|
expect(found).to.be.equal(12);
|
|
expect(found22).to.be.false;
|
|
expect(found23).to.be.true;
|
|
|
|
setTimeout(function () {
|
|
done();
|
|
}, 3000);
|
|
});
|
|
});
|
|
});
|
|
it('Test MySQL Existing: Read values from DB using GetHistory', function (done) {
|
|
this.timeout(10000);
|
|
|
|
sendTo('sql.0', 'getHistory', {
|
|
id: 'sql.0.memRss',
|
|
options: {
|
|
start: now2 - 30000,
|
|
limit: 50,
|
|
count: 50,
|
|
aggregate: 'none'
|
|
}
|
|
}, function (result) {
|
|
console.log('MySQL: ' + JSON.stringify(result.result, null, 2));
|
|
expect(result.result.length).to.be.at.least(5);
|
|
var found = 0;
|
|
for (var i = 0; i < result.result.length; i++) {
|
|
if (result.result[i].val >= 1 && result.result[i].val <= 3) found ++;
|
|
}
|
|
expect(found).to.be.equal(12);
|
|
|
|
sendTo('sql.0', 'getHistory', {
|
|
id: 'sql.0.memRss',
|
|
options: {
|
|
start: now2 - 15000,
|
|
end: now,
|
|
limit: 2,
|
|
count: 2,
|
|
aggregate: 'none'
|
|
}
|
|
}, function (result) {
|
|
console.log('MySQL: ' + JSON.stringify(result.result, null, 2));
|
|
expect(result.result.length).to.be.equal(2);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
it('Test ' + adapterShortName + ': Check Datapoint Types', function (done) {
|
|
this.timeout(5000);
|
|
|
|
sendTo('sql.0', 'query', "SELECT name, type FROM yunkong2.datapoints", function (result) {
|
|
console.log('MySQL: ' + JSON.stringify(result.result, null, 2));
|
|
expect(result.result.length).to.least(3);
|
|
for (var i = 0; i < result.result.length; i++) {
|
|
if (result.result[i].name === 'sql.0.memRss') {
|
|
expect(result.result[i].type).to.be.equal(0);
|
|
}
|
|
else if (result.result[i].name === 'system.adapter.sql.0.memHeapTotal') {
|
|
expect(result.result[i].type).to.be.equal(0);
|
|
}
|
|
else if (result.result[i].name === 'system.adapter.sql.0.alive') {
|
|
expect(result.result[i].type).to.be.equal(2);
|
|
}
|
|
else if (result.result[i].name === 'system.adapter.sql.0.uptime') {
|
|
expect(result.result[i].type).to.be.equal(0);
|
|
}
|
|
}
|
|
|
|
setTimeout(function () {
|
|
done();
|
|
}, 3000);
|
|
});
|
|
});
|
|
it('Test ' + adapterShortName + ': Disable Datapoint again', function (done) {
|
|
this.timeout(5000);
|
|
|
|
sendTo('sql.0', 'disableHistory', {
|
|
id: 'sql.0.memRss',
|
|
}, function (result) {
|
|
expect(result.error).to.be.undefined;
|
|
expect(result.success).to.be.true;
|
|
setTimeout(done, 2000);
|
|
});
|
|
});
|
|
it('Test ' + adapterShortName + ': Check Enabled Points after Disable', function (done) {
|
|
this.timeout(5000);
|
|
|
|
sendTo('sql.0', 'getEnabledDPs', {}, function (result) {
|
|
console.log(JSON.stringify(result));
|
|
expect(Object.keys(result).length).to.be.equal(3);
|
|
done();
|
|
});
|
|
});
|
|
|
|
after('Test MySQL Existing: Stop js-controller', function (done) {
|
|
this.timeout(6000);
|
|
|
|
setup.stopController(function (normalTerminated) {
|
|
console.log('MySQL: Adapter normal terminated: ' + normalTerminated);
|
|
done();
|
|
});
|
|
});
|
|
});
|