mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
27 lines
772 B
JavaScript
27 lines
772 B
JavaScript
const assert = require('assert')
|
|
const request = require('request')
|
|
const host = global.host || 'http://localhost:3000'
|
|
|
|
console.log('注意: 测试登录需在 test/login.test.js 中填写账号密码!!!');
|
|
const phone = ''
|
|
const password = ''
|
|
describe('测试登录是否正常', () => {
|
|
it('手机登录 code 应该等于200', done => {
|
|
const qs = {
|
|
phone: process.env.NCM_API_TEST_LOGIN_PHONE || phone || '',
|
|
password: process.env.NCM_API_TEST_LOGIN_PASSWORD || password || ''
|
|
}
|
|
|
|
request.get({url: `${host}/login/cellphone`, qs: qs}, (err, res, body) => {
|
|
if (!err && res.statusCode == 200) {
|
|
body = JSON.parse(body)
|
|
assert(body.code === 200)
|
|
done()
|
|
}
|
|
else{
|
|
done(err)
|
|
}
|
|
})
|
|
})
|
|
})
|