Guillermo - add TESTS log [skip ci]

This commit is contained in:
AntonyAntonio 2016-12-29 17:25:45 -03:00
parent cab43cf5e0
commit 93fbd1cbf0
25 changed files with 108 additions and 57 deletions

View File

@ -43,6 +43,9 @@ class ChangeDepartmentController extends Controller {
$ticket->department = $department;
$ticket->unread = true;
$ticket->store();
Log::createLog('CHANGE_DEPARTMENT', $department);
Response::respondSuccess();
}
}

View File

@ -37,6 +37,8 @@ class ChangePriorityController extends Controller {
));
$ticket->addEvent($event);
$ticket->store();
Log::createLog('CHANGE_PRIORITY', $priority);
Response::respondSuccess();
} else {
Response::respondError(ERRORS::NO_PERMISSION);

View File

@ -32,6 +32,9 @@ class CloseController extends Controller {
$this->ticket->closed = true;
$this->ticket->store();
Log::createLog('CLOSE_TICKET', $this->ticket);
Response::respondSuccess();
}

View File

@ -30,6 +30,9 @@ class CommentController extends Controller {
if ($session->isLoggedWithId($this->ticket->author->id) || Controller::isStaffLogged()) {
$this->storeComment();
Log::createLog('COMMENT_TICKET', $this->ticket);
Response::respondSuccess();
} else {
Response::respondError(ERRORS::NO_PERMISSION);

View File

@ -43,6 +43,7 @@ class CreateController extends Controller {
$this->storeTicket();
Log::createLog('CREATE_TICKET', $this->title);
Response::respondSuccess([
'ticketNumber' => $this->ticketNumber
]);

View File

@ -34,6 +34,7 @@ class EditCustomResponseController extends Controller {
$customResponse->store();
Log::createLog('EDIT_CUSTOM_RESPONSE', null);
Response::respondSuccess();
}
}

View File

@ -31,6 +31,9 @@ class ReOpenController extends Controller {
$this->ticket->closed = false;
$this->ticket->store();
Log::createLog('RE_OPEN_TICKET', $this->ticket);
Response::respondSuccess();
}

View File

@ -27,6 +27,9 @@ describe 'Article path' do
(article['content']).should.equal('This is an article about server management.')
(article['topic_id']).should.equal(@topic_id.to_s)
(article['position']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('ADD_ARTICLE')
end
it 'should edit article' do
@ -43,6 +46,9 @@ describe 'Article path' do
(article['content']).should.equal('This is an article about server management2.')
(article['topic_id']).should.equal(@topic_id.to_s)
(article['position']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('EDIT_ARTICLE')
end
it 'should edit article topic' do
@ -76,6 +82,9 @@ describe 'Article path' do
csrf_token: $csrf_token
})
(result['status']).should.equal('success')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('DELETE_ARTICLE')
end
it 'should retrieve all articles' do
@ -103,5 +112,6 @@ describe 'Article path' do
(result['data'][0]['articles'][0]['title']).should.equal('Some article')
(result['data'][0]['articles'][0]['content']).should.equal('This is an article about server management.')
(result['data'][0]['articles'][0]['position']).should.equal('1')
end
end
end

View File

@ -17,6 +17,9 @@ describe 'Topic paths' do
(topic['name']).should.equal('Server management')
(topic['icon_color']).should.equal('red')
(topic['icon']).should.equal('cogs')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('ADD_TOPIC')
end
it 'should edit topic correctly' do
@ -44,6 +47,9 @@ describe 'Topic paths' do
})
(result['status']).should.equal('success')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('DELETE_TOPIC')
end
it 'should deny permission if it is not logged as staff' do
@ -78,4 +84,4 @@ describe 'Topic paths' do
(result['status']).should.equal('fail')
(result['message']).should.equal('NO_PERMISSION')
end
end
end

View File

@ -23,6 +23,12 @@ class Database
return queryResponse.fetch_hash
end
def getLastRow(table)
queryResponse = @connection.query("select * from #{table} order by id desc limit 1")
return queryResponse.fetch_hash
end
end
$database = Database.new

View File

@ -26,6 +26,9 @@ describe'/staff/add' do
row = $database.getRow('department', 1, 'id')
(row['owners']).should.equal('2')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('ADD_STAFF')
end
it 'should fail if staff member is alrady a staff' do
result= request('/staff/add', {

View File

@ -14,5 +14,8 @@ describe'system/add-department' do
row = $database.getRow('department', 4, 'id')
(row['name']).should.equal('new department')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('ADD_DEPARTMENT')
end
end
end

View File

@ -81,5 +81,8 @@ describe 'system/delete-department' do
(ticket3['department_id']).should.equal('2')
(ticket3['owner_id']).should.equal($csrf_userid)
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('DELETE_DEPARTMENT')
end
end
end

View File

@ -15,5 +15,8 @@ describe'system/edit-department' do
row = $database.getRow('department', 4, 'id')
(row['name']).should.equal('second name')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('EDIT_DEPARTMENT')
end
end
end

View File

@ -52,6 +52,9 @@ describe'system/edit-settings' do
(row['value']).should.equal('pass1234')
request('/user/logout')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('EDIT_SETTINGS')
end
it 'should change allowed and supported languages' do
request('/user/logout')
@ -93,49 +96,9 @@ describe'system/edit-settings' do
row = $database.getRow('language', 'de', 'code')
(row['allowed']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('EDIT_SETTINGS')
request('/user/logout')
end
it 'should change allowed and supported languages' do
request('/user/logout')
Scripts.login($staff[:email], $staff[:password], true)
result= request('/system/edit-settings', {
"csrf_userid" => $csrf_userid,
"csrf_token" => $csrf_token,
"supportedLanguages" => '["en", "pr", "jp", "ru"]',
"allowedLanguages" => '["en","pr", "jp", "ru", "de"]'
})
(result['status']).should.equal('success')
row = $database.getRow('language', 'en', 'code')
(row['supported']).should.equal('1')
row = $database.getRow('language', 'pr', 'code')
(row['supported']).should.equal('1')
row = $database.getRow('language', 'jp', 'code')
(row['supported']).should.equal('1')
row = $database.getRow('language', 'ru', 'code')
(row['supported']).should.equal('1')
row = $database.getRow('language', 'en', 'code')
(row['allowed']).should.equal('1')
row = $database.getRow('language', 'pr', 'code')
(row['allowed']).should.equal('1')
row = $database.getRow('language', 'jp', 'code')
(row['allowed']).should.equal('1')
row = $database.getRow('language', 'ru', 'code')
(row['allowed']).should.equal('1')
row = $database.getRow('language', 'de', 'code')
(row['allowed']).should.equal('1')
request('/user/logout')
end
end
end

View File

@ -19,5 +19,8 @@ describe '/ticket/change-department' do
ticket = $database.getRow('ticket', 1 , 'id')
(ticket['unread']).should.equal('1')
(ticket['department_id']).should.equal('2')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CHANGE_DEPARTMENT')
end
end
end

View File

@ -19,6 +19,9 @@ describe '/ticket/change-priority' do
ticket = $database.getRow('ticket', 1 , 'id')
(ticket['priority']).should.equal('high')
(ticket['unread']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CHANGE_PRIORITY')
end
it 'should change priority to medium if everything is okey' do
@ -36,6 +39,9 @@ describe '/ticket/change-priority' do
ticket = $database.getRow('ticket', 1 , 'id')
(ticket['priority']).should.equal('medium')
(ticket['unread']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CHANGE_PRIORITY')
end
it 'should change priority to low if everything is okey' do
@ -53,6 +59,9 @@ describe '/ticket/change-priority' do
ticket = $database.getRow('ticket', 1 , 'id')
(ticket['priority']).should.equal('low')
(ticket['unread']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CHANGE_PRIORITY')
end
end
end

View File

@ -19,5 +19,7 @@ describe '/ticket/close' do
(ticket['closed']).should.equal('1')
(ticket['unread']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CLOSE_TICKET')
end
end
end

View File

@ -73,6 +73,9 @@ describe '/ticket/comment/' do
(comment['type']).should.equal('COMMENT')
(comment['author_user_id']).should.equal($csrf_userid)
(ticket['unread_staff']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('COMMENT_TICKET')
end
it 'should fail if user is not the author nor owner' do

View File

@ -116,6 +116,9 @@ describe '/ticket/create' do
ticket_user_relation = $database.getRow('ticket_user', ticket['id'],'ticket_id')
(ticket_user_relation['user_id']).should.equal($csrf_userid)
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('CREATE_TICKET')
end
it 'should set correct ticket number' do

View File

@ -18,6 +18,9 @@ describe 'CustomResponses' do
(customResponse['name']).should.equal('Some common problem')
(customResponse['content']).should.equal('this is the content of a custom response for a common problem')
(customResponse['language']).should.equal('en')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('ADD_CUSTOM_RESPONSE')
end
end
@ -36,6 +39,9 @@ describe 'CustomResponses' do
(customResponse['name']).should.equal('Some common problem')
(customResponse['content']).should.equal('this is the content of a custom response for a common problem 2')
(customResponse['language']).should.equal('en')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('EDIT_CUSTOM_RESPONSE')
end
end
@ -65,6 +71,9 @@ describe 'CustomResponses' do
(result['status']).should.equal('success')
customResponse = $database.getRow('customresponse', 1)
(customResponse).should.equal(nil)
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('DELETE_CUSTOM_RESPONSE')
end
end
end
end

View File

@ -19,5 +19,7 @@ describe '/ticket/re-open' do
(ticket['closed']).should.equal('0')
(ticket['unread']).should.equal('1')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('RE_OPEN_TICKET')
end
end
end

View File

@ -22,6 +22,8 @@ describe '/user/ban' do
user = $database.getRow('ban', 1 , 'id')
(user['email']).should.equal('nothing@hotmail.com')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('BAN_USER')
end
it 'should get ban list' do
@ -58,6 +60,8 @@ describe '/user/ban' do
user = $database.getRow('ban', 1 , 'id')
(user).should.equal(nil)
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('UN_BAN_USER')
end
it 'should not un-ban user if it is not banned' do
@ -72,4 +76,4 @@ describe '/user/ban' do
end
end
end

View File

@ -22,7 +22,7 @@ describe '/user/delete' do
user = $database.getRow('user', 4 , 'id')
(user).should.equal(nil)
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('DELETE_USER')
end
end

View File

@ -10,6 +10,9 @@ describe '/user/signup' do
(userRow['email']).should.equal('steve@jobs.com')
(userRow['name']).should.equal('Steve Jobs')
lastLog = $database.getLastRow('log')
(lastLog['type']).should.equal('SIGNUP')
end
it 'should fail if name is invalid' do