MXS-1929: Update unit tests with monitor changes

The user is a mandatory parameter and needs to be passed when a monitor is
created.
This commit is contained in:
Markus Mäkelä 2018-08-22 23:29:25 +03:00
parent 1f8ed106b3
commit 8cfc966561
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19
3 changed files with 29 additions and 10 deletions

View File

@ -179,7 +179,7 @@ describe('Cluster Sync', function() {
})
it('sync after monitor creation', function() {
return doCommand('create monitor my-monitor-2 mysqlmon --hosts ' + secondary_host)
return doCommand('create monitor my-monitor-2 mysqlmon user=maxuser password=maxpwd --hosts ' + secondary_host)
.then(() => verifyCommand('cluster sync ' + secondary_host + ' --hosts ' + primary_host,
'monitors/my-monitor-2'))
})

View File

@ -7,7 +7,7 @@ describe("Create/Destroy Commands", function() {
before(startMaxScale)
it('create monitor', function() {
return verifyCommand('create monitor my-monitor mysqlmon', 'monitors/my-monitor')
return verifyCommand('create monitor my-monitor mysqlmon user=maxuser password=maxpwd', 'monitors/my-monitor')
.should.be.fulfilled
})

View File

@ -1,16 +1,21 @@
require("../utils.js")()
var monitor = {
data: {
id: "test-monitor",
type: "monitors",
attributes: {
module: "mysqlmon"
describe("Monitor", function() {
var monitor = {
data: {
id: "test-monitor",
type: "monitors",
attributes: {
module: "mysqlmon",
parameters: {
user: "maxuser",
password: "maxpwd"
}
}
}
}
}
describe("Monitor", function() {
before(startMaxScale)
it("create new monitor", function() {
@ -42,6 +47,20 @@ describe("Monitor", function() {
describe("Monitor Relationships", function() {
before(startMaxScale)
var monitor = {
data: {
id: "test-monitor",
type: "monitors",
attributes: {
module: "mysqlmon",
parameters: {
user: "maxuser",
password: "maxpwd"
}
}
}
}
it("create new monitor", function() {
return request.post(base_url + "/monitors/", {json: monitor})
.should.be.fulfilled