44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
describe'/system/disable-registration' do
|
|
request('/user/logout')
|
|
Scripts.login($staff[:email], $staff[:password], true)
|
|
|
|
it 'should not disable registration if password is not correct' do
|
|
result= request('/system/disable-registration', {
|
|
csrf_userid: $csrf_userid,
|
|
csrf_token: $csrf_token,
|
|
password: 'hello'
|
|
})
|
|
|
|
(result['status']).should.equal('fail')
|
|
|
|
row = $database.getRow('setting', 'registration', 'name')
|
|
|
|
(row['value']).should.equal('1')
|
|
end
|
|
|
|
it 'should disable registration' do
|
|
result= request('/system/disable-registration', {
|
|
csrf_userid: $csrf_userid,
|
|
csrf_token: $csrf_token,
|
|
password: $staff[:password]
|
|
})
|
|
|
|
(result['status']).should.equal('success')
|
|
|
|
row = $database.getRow('setting', 'registration', 'name')
|
|
|
|
(row['value']).should.equal('0')
|
|
end
|
|
|
|
it 'should not create user in database if registration is false' do
|
|
response = request('/user/signup', {
|
|
:name => 'ponzio',
|
|
:email => 'jc@ponziolandia.com',
|
|
:password => 'tequila'
|
|
})
|
|
|
|
(response['status']).should.equal('fail')
|
|
|
|
end
|
|
end
|