You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
var request = require('supertest'); |
|
request = request('http://127.0.0.1:8080'); |
|
|
|
const defaultAdminPassword = 'abc123'; |
|
|
|
async function getAdminConfig(adminPassword = defaultAdminPassword) { |
|
const res = request |
|
.get('/api/admin/serverconfig') |
|
.auth('admin', adminPassword) |
|
.expect(200); |
|
|
|
return res; |
|
} |
|
|
|
async function getAdminStatus(adminPassword = defaultAdminPassword) { |
|
const res = request |
|
.get('/api/admin/status') |
|
.auth('admin', adminPassword) |
|
.expect(200); |
|
|
|
return res; |
|
} |
|
|
|
async function sendConfigChangeRequest( |
|
endpoint, |
|
value, |
|
adminPassword = defaultAdminPassword |
|
) { |
|
const url = '/api/admin/config/' + endpoint; |
|
const res = await request |
|
.post(url) |
|
.auth('admin', adminPassword) |
|
.send({ value: value }) |
|
.expect(200); |
|
|
|
expect(res.body.success).toBe(true); |
|
return res; |
|
} |
|
|
|
async function sendConfigChangePayload( |
|
endpoint, |
|
payload, |
|
adminPassword = defaultAdminPassword |
|
) { |
|
const url = '/api/admin/config/' + endpoint; |
|
const res = await request |
|
.post(url) |
|
.auth('admin', adminPassword) |
|
.send(payload) |
|
.expect(200); |
|
|
|
expect(res.body.success).toBe(true); |
|
|
|
return res; |
|
} |
|
|
|
module.exports.getAdminConfig = getAdminConfig; |
|
module.exports.getAdminStatus = getAdminStatus; |
|
module.exports.sendConfigChangeRequest = sendConfigChangeRequest; |
|
module.exports.sendConfigChangePayload = sendConfigChangePayload;
|
|
|