mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Specify, we no longer require a prefix. Also improves the clarity of the examples in the documentation. Fixes: #2696.
		
			
				
	
	
		
			620 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			620 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var common = require('../casper_lib/common.js').common;
 | 
						|
var stream_name = "Scotland";
 | 
						|
 | 
						|
common.start_and_log_in();
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    var menu_selector = '#settings-dropdown';
 | 
						|
    casper.waitUntilVisible(menu_selector, function () {
 | 
						|
        casper.click(menu_selector);
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.test.info('Administration page');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitForSelector('#administration.tab-pane.active', function () {
 | 
						|
    casper.test.info('Administration page is active');
 | 
						|
    casper.test.assertUrlMatch(/^http:\/\/[^/]+\/#administration/, 'URL suggests we are on administration page');
 | 
						|
});
 | 
						|
 | 
						|
// Test only admins may create streams Setting
 | 
						|
casper.waitForSelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]', function () {
 | 
						|
    casper.click('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]');
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Test setting was activated
 | 
						|
    casper.waitUntilVisible('#admin-realm-create-stream-by-admins-only-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-create-stream-by-admins-only-status', 'Only Admins may now create new streams!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked;
 | 
						|
        }, 'Only admins may create streams Setting activated');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Leave the page and return
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#subscriptions"]');
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitForSelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]', function () {
 | 
						|
    // Test Setting was saved
 | 
						|
    casper.test.assertEval(function () {
 | 
						|
        return document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked;
 | 
						|
    }, 'Only admins may create streams Setting saved');
 | 
						|
 | 
						|
    // Deactivate setting
 | 
						|
    casper.click('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]');
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-create-stream-by-admins-only-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-create-stream-by-admins-only-status', 'Any user may now create new streams!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked);
 | 
						|
        }, 'Only admins may create streams Setting deactivated');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// Test user deactivation and reactivation
 | 
						|
casper.waitForSelector('.user_row[id="user_cordelia@zulip.com"]', function () {
 | 
						|
    casper.test.assertSelectorHasText('.user_row[id="user_cordelia@zulip.com"]', 'Deactivate');
 | 
						|
    casper.click('.user_row[id="user_cordelia@zulip.com"] .deactivate');
 | 
						|
    casper.test.assertTextExists('Deactivate cordelia@zulip.com', 'Deactivate modal has right user');
 | 
						|
    casper.test.assertTextExists('Deactivate now', 'Deactivate now button available');
 | 
						|
    casper.click('#do_deactivate_user_button');
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.user_row[id="user_cordelia@zulip.com"].deactivated_user', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_cordelia@zulip.com"]', 'Reactivate');
 | 
						|
        casper.click('.user_row[id="user_cordelia@zulip.com"] .reactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.user_row[id="user_cordelia@zulip.com"]:not(.deactivated_user)', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_cordelia@zulip.com"]', 'Deactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Test Deactivated users section of admin page
 | 
						|
    casper.waitForSelector('.user_row[id="user_cordelia@zulip.com"]', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_cordelia@zulip.com"]', 'Deactivate');
 | 
						|
        casper.click('.user_row[id="user_cordelia@zulip.com"] .deactivate');
 | 
						|
        casper.test.assertTextExists('Deactivate cordelia@zulip.com', 'Deactivate modal has right user');
 | 
						|
        casper.test.assertTextExists('Deactivate now', 'Deactivate now button available');
 | 
						|
        casper.click('#do_deactivate_user_button');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Leave the page and return
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#"]');
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
 | 
						|
    casper.test.assertSelectorHasText("#administration a[aria-controls='deactivated-users']", "Deactivated Users");
 | 
						|
    casper.click("#administration a[aria-controls='deactivated-users']");
 | 
						|
 | 
						|
 | 
						|
    casper.waitForSelector('#admin_deactivated_users_table .user_row[id="user_cordelia@zulip.com"] .reactivate', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin_deactivated_users_table .user_row[id="user_cordelia@zulip.com"]', 'Reactivate');
 | 
						|
        casper.click('#admin_deactivated_users_table .user_row[id="user_cordelia@zulip.com"] .reactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('#admin_deactivated_users_table .user_row[id="user_cordelia@zulip.com"] button:not(.reactivate)', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin_deactivated_users_table .user_row[id="user_cordelia@zulip.com"]', 'Deactivate');
 | 
						|
    });
 | 
						|
 | 
						|
    casper.test.assertSelectorHasText("#administration a[aria-controls='organization']", "Organization");
 | 
						|
    casper.click("#administration a[aria-controls='organization']");
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Test bot deactivation and reactivation
 | 
						|
    casper.waitForSelector('.user_row[id="user_new-user-bot@zulip.com"]', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_new-user-bot@zulip.com"]', 'Deactivate');
 | 
						|
        casper.click('.user_row[id="user_new-user-bot@zulip.com"] .deactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.user_row[id="user_new-user-bot@zulip.com"].deactivated_user', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_new-user-bot@zulip.com"]', 'Reactivate');
 | 
						|
        casper.click('.user_row[id="user_new-user-bot@zulip.com"] .reactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.user_row[id="user_new-user-bot@zulip.com"]:not(.deactivated_user)', function () {
 | 
						|
        casper.test.assertSelectorHasText('.user_row[id="user_new-user-bot@zulip.com"]', 'Deactivate');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Test custom realm emoji
 | 
						|
    casper.waitForSelector('.admin-emoji-form', function () {
 | 
						|
        casper.fill('form.admin-emoji-form', {
 | 
						|
            name: 'MouseFace',
 | 
						|
            url: 'http://zulipdev.com:9991/static/images/integrations/logos/jenkins.png'
 | 
						|
        });
 | 
						|
        casper.click('form.admin-emoji-form input.button');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('div#admin-emoji-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('div#admin-emoji-status', 'Custom emoji added!');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.emoji_row', function () {
 | 
						|
        casper.test.assertSelectorHasText('.emoji_row .emoji_name', 'MouseFace');
 | 
						|
        casper.test.assertExists('.emoji_row img[src="http://zulipdev.com:9991/static/images/integrations/logos/jenkins.png"]');
 | 
						|
        casper.click('.emoji_row button.delete');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitWhileSelector('.emoji_row', function () {
 | 
						|
        casper.test.assertDoesntExist('.emoji_row');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// Test custom realm filters
 | 
						|
casper.waitForSelector('.admin-filter-form', function () {
 | 
						|
    casper.fill('form.admin-filter-form', {
 | 
						|
        pattern: '#(?P<id>[0-9]+)',
 | 
						|
        url_format_string: 'https://trac.example.com/ticket/%(id)s'
 | 
						|
    });
 | 
						|
    casper.click('form.admin-filter-form input.btn');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('div#admin-filter-status', function () {
 | 
						|
    casper.test.assertSelectorHasText('div#admin-filter-status', 'Custom filter added!');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitForSelector('.filter_row', function () {
 | 
						|
    casper.test.assertSelectorHasText('.filter_row span.filter_pattern', '#(?P<id>[0-9]+)');
 | 
						|
    casper.test.assertSelectorHasText('.filter_row span.filter_url_format_string', 'https://trac.example.com/ticket/%(id)s');
 | 
						|
    casper.click('.filter_row button');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitWhileSelector('.filter_row', function () {
 | 
						|
    casper.test.assertDoesntExist('.filter_row');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitForSelector('.admin-filter-form', function () {
 | 
						|
    casper.fill('form.admin-filter-form', {
 | 
						|
        pattern: 'a$',
 | 
						|
        url_format_string: 'https://trac.example.com/ticket/%(id)s'
 | 
						|
    });
 | 
						|
    casper.click('form.admin-filter-form input.btn');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('div#admin-filter-pattern-status', function () {
 | 
						|
    casper.test.assertSelectorHasText('div#admin-filter-pattern-status', 'Failed: Invalid filter pattern, you must use the following format OPTIONAL_PREFIX(?P<id>.+)');
 | 
						|
});
 | 
						|
 | 
						|
function get_suggestions(str) {
 | 
						|
    casper.then(function () {
 | 
						|
        casper.evaluate(function (str) {
 | 
						|
            $('.create_default_stream')
 | 
						|
            .focus()
 | 
						|
            .val(str)
 | 
						|
            .trigger($.Event('keyup', { which: 0 }));
 | 
						|
        }, str);
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
function select_from_suggestions(item) {
 | 
						|
    casper.then(function () {
 | 
						|
        casper.evaluate(function (item) {
 | 
						|
            var tah = $('.create_default_stream').data().typeahead;
 | 
						|
            tah.mouseenter({
 | 
						|
                currentTarget: $('.typeahead:visible li:contains("'+item+'")')[0]
 | 
						|
            });
 | 
						|
            tah.select();
 | 
						|
        }, {item: item});
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
// Test default stream creation and addition
 | 
						|
casper.then(function () {
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#subscriptions"]');
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
    // It matches with all the stream names which has 'O' as a substring (Rome, Scotland, Verona
 | 
						|
    // etc). 'O' is used to make sure that it works even if there are multiple suggestions.
 | 
						|
    // Uppercase 'O' is used instead of the lowercase version to make sure that the suggestions
 | 
						|
    // are case insensitive.
 | 
						|
    get_suggestions("O");
 | 
						|
    select_from_suggestions(stream_name);
 | 
						|
    casper.waitForSelector('.default_stream_row[id='+stream_name+']', function () {
 | 
						|
        casper.test.assertSelectorHasText('.default_stream_row[id='+stream_name+'] .default_stream_name', stream_name);
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.default_stream_row[id='+stream_name+']', function () {
 | 
						|
        casper.test.assertSelectorHasText('.default_stream_row[id='+stream_name+'] .default_stream_name', stream_name);
 | 
						|
        casper.click('.default_stream_row[id='+stream_name+'] button.remove-default-stream');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitWhileSelector('.default_stream_row[id='+stream_name+']', function () {
 | 
						|
        casper.test.assertDoesntExist('.default_stream_row[id='+stream_name+']');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// TODO: Test stream deletion
 | 
						|
 | 
						|
// Test turning message editing off and on
 | 
						|
// go to home page
 | 
						|
casper.then(function () {
 | 
						|
    casper.click('.global-filter[data-name="home"]');
 | 
						|
});
 | 
						|
 | 
						|
// For clarity these should be different than what 08-edit uses, until
 | 
						|
// we find a more robust way to manage DB state between tests.
 | 
						|
var content1 = 'admin: edit test message 1';
 | 
						|
var content2 = 'admin: edit test message 2';
 | 
						|
 | 
						|
// send two messages
 | 
						|
common.then_send_message('stream', {
 | 
						|
    stream:  'Verona',
 | 
						|
    subject: 'edits',
 | 
						|
    content: content1
 | 
						|
});
 | 
						|
common.then_send_message('stream', {
 | 
						|
    stream:  'Verona',
 | 
						|
    subject: 'edits',
 | 
						|
    content: content2
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForText(content1);
 | 
						|
    casper.waitForText(content2);
 | 
						|
});
 | 
						|
 | 
						|
// wait for message to be sent
 | 
						|
casper.waitFor(function () {
 | 
						|
    return casper.evaluate(function () {
 | 
						|
        return current_msg_list.last().local_id === undefined;
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// edit the last message just sent
 | 
						|
casper.then(function () {
 | 
						|
    casper.evaluate(function () {
 | 
						|
        var msg = $('#zhome .message_row:last');
 | 
						|
        msg.find('.info').click();
 | 
						|
        $('.popover_edit_message').click();
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
var edited_value = 'admin tests: test edit';
 | 
						|
 | 
						|
casper.waitForSelector(".message_edit_content", function () {
 | 
						|
    casper.evaluate(function (edited_value) {
 | 
						|
        var msg = $('#zhome .message_row:last');
 | 
						|
        msg.find('.message_edit_content').val(edited_value);
 | 
						|
        msg.find('.message_edit_save').click();
 | 
						|
    }, edited_value);
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // check that the message was indeed edited
 | 
						|
    casper.waitWhileVisible("textarea.message_edit_content", function () {
 | 
						|
        casper.test.assertSelectorHasText(".last_message .message_content", edited_value);
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// Commented out due to Issue #1243
 | 
						|
// // edit the same message, but don't hit save this time
 | 
						|
// casper.then(function () {
 | 
						|
//     casper.evaluate(function () {
 | 
						|
//         var msg = $('#zhome .message_row:last');
 | 
						|
//         msg.find('.info').click();
 | 
						|
//         $('.popover_edit_message').click();
 | 
						|
//     });
 | 
						|
// });
 | 
						|
// casper.waitForSelector(".message_edit_content", function () {
 | 
						|
//     casper.evaluate(function () {
 | 
						|
//         var msg = $('#zhome .message_row:last');
 | 
						|
//         msg.find('.message_edit_content').val("test RE-edited");
 | 
						|
//     });
 | 
						|
// });
 | 
						|
 | 
						|
// go to admin page
 | 
						|
casper.then(function () {
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
});
 | 
						|
 | 
						|
// deactivate "allow message editing"
 | 
						|
casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
    casper.click('input[type="checkbox"][id="id_realm_allow_message_editing"]');
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can no longer edit their past messages!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked);
 | 
						|
        }, 'Allow message editing Setting de-activated');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// go back to home page
 | 
						|
casper.then(function () {
 | 
						|
    casper.click('.global-filter[data-name="home"]');
 | 
						|
});
 | 
						|
 | 
						|
// Commented out due to Issue #1243
 | 
						|
// // try to save the half-finished edit
 | 
						|
// casper.waitForSelector('.message_table', function () {
 | 
						|
//     casper.then(function () {
 | 
						|
//         casper.evaluate(function () {
 | 
						|
//             var msg = $('#zhome .message_row:last');
 | 
						|
//             msg.find('.message_edit_save').click();
 | 
						|
//         });
 | 
						|
//     });
 | 
						|
// });
 | 
						|
 | 
						|
// // make sure we get the right error message, and that the message hasn't actually changed
 | 
						|
// casper.waitForSelector("div.edit_error", function () {
 | 
						|
//     casper.test.assertSelectorHasText(
 | 
						|
//         'div.edit_error',
 | 
						|
//         'Error saving edit: Your organization has turned off message editing.');
 | 
						|
//     casper.test.assertSelectorHasText(".last_message .message_content", "test edited");
 | 
						|
// });
 | 
						|
 | 
						|
// Check that edit link has changed to "View Source" in the popover menu
 | 
						|
// TODO: also check that the edit icon no longer appears next to the message
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitForSelector('.message_row');
 | 
						|
    // Note that this could have a false positive, e.g. if all the messages aren't
 | 
						|
    // loaded yet. See Issue #1243
 | 
						|
    casper.evaluate(function () {
 | 
						|
        var msg = $('#zhome .message_row:last');
 | 
						|
        msg.find('.info').click();
 | 
						|
    });
 | 
						|
    casper.waitUntilVisible('.popover_edit_message', function () {
 | 
						|
        casper.test.assertSelectorHasText('.popover_edit_message', 'View Source');
 | 
						|
    });
 | 
						|
    casper.evaluate(function () {
 | 
						|
        var msg = $('#zhome .message_row:last');
 | 
						|
        msg.find('.info').click();
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// go back to admin page, and reactivate "allow message editing"
 | 
						|
casper.then(function () {
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
});
 | 
						|
casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
    casper.click('input[type="checkbox"][id="id_realm_allow_message_editing"]');
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can now edit topics for all their messages, and the content of messages which are less than 10 minutes old.');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked;
 | 
						|
        }, 'Allow message editing Setting re-activated');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// Commented out due to Issue #1243
 | 
						|
// go back home
 | 
						|
// casper.then(function () {
 | 
						|
//     casper.click('.global-filter[data-name="home"]');
 | 
						|
// });
 | 
						|
 | 
						|
// // save our edit
 | 
						|
// casper.waitForSelector('.message_table', function () {
 | 
						|
//     casper.then(function () {
 | 
						|
//         casper.evaluate(function () {
 | 
						|
//             var msg = $('#zhome .message_row:last');
 | 
						|
//             msg.find('.message_edit_save').click();
 | 
						|
//         });
 | 
						|
//     });
 | 
						|
// });
 | 
						|
 | 
						|
// // check that edit went through
 | 
						|
// casper.waitWhileVisible("textarea.message_edit_content", function () {
 | 
						|
//     casper.test.assertSelectorHasText(".last_message .message_content", "test RE-edited");
 | 
						|
// });
 | 
						|
 | 
						|
// check that the edit link reappears in popover menu
 | 
						|
// TODO check for edit icon next to message on hover
 | 
						|
// casper.then(function () {
 | 
						|
//     casper.evaluate(function () {
 | 
						|
//         var msg = $('#zhome .message_row:last');
 | 
						|
//         msg.find('.info').click();
 | 
						|
//     });
 | 
						|
//     casper.test.assertExists('.popover_edit_message');
 | 
						|
//     casper.evaluate(function () {
 | 
						|
//         var msg = $('#zhome .message_row:last');
 | 
						|
//         msg.find('.info').click();
 | 
						|
//     });
 | 
						|
// });
 | 
						|
 | 
						|
// go to admin page
 | 
						|
casper.then(function () {
 | 
						|
    casper.test.info('Administration page');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
    casper.test.assertUrlMatch(/^http:\/\/[^/]+\/#administration/, 'URL suggests we are on administration page');
 | 
						|
    casper.test.assertExists('#administration.tab-pane.active', 'Administration page is active');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitForSelector('form.admin-realm-form input.button');
 | 
						|
 | 
						|
// deactivate message editing
 | 
						|
casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
    casper.evaluate(function () {
 | 
						|
        $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val('4');
 | 
						|
    });
 | 
						|
    casper.click('input[type="checkbox"][id="id_realm_allow_message_editing"]');
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can no longer edit their past messages!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked);
 | 
						|
        }, 'Allow message editing Setting de-activated');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val() === '4';
 | 
						|
        }, 'Message content edit limit now 4');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // allow message editing again, and check that the old edit limit is still there
 | 
						|
    casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
        casper.click('input[type="checkbox"][id="id_realm_allow_message_editing"]');
 | 
						|
        casper.click('form.admin-realm-form input.button');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can now edit topics for all their messages, and the content of messages which are less than 4 minutes old.');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked;
 | 
						|
        }, 'Allow message editing Setting activated');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val() === '4';
 | 
						|
        }, 'Message content edit limit still 4');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // allow arbitrary message editing
 | 
						|
    casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
        casper.evaluate(function () {
 | 
						|
            $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val('0');
 | 
						|
        });
 | 
						|
        casper.click('form.admin-realm-form input.button');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can now edit the content and topics of all their past messages!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked;
 | 
						|
        }, 'Allow message editing Setting still activated');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val() === '0';
 | 
						|
        }, 'Message content edit limit is 0');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // disallow message editing, with illegal edit limit value. should be fixed by admin.js
 | 
						|
    casper.waitForSelector('input[type="checkbox"][id="id_realm_allow_message_editing"]', function () {
 | 
						|
        casper.evaluate(function () {
 | 
						|
            $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val('moo');
 | 
						|
        });
 | 
						|
        casper.click('input[type="checkbox"][id="id_realm_allow_message_editing"]');
 | 
						|
        casper.click('form.admin-realm-form input.button');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.waitUntilVisible('#admin-realm-message-editing-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-message-editing-status', 'Users can no longer edit their past messages!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector('input[type="checkbox"][id="id_realm_allow_message_editing"]').checked);
 | 
						|
        }, 'Allow message editing Setting de-activated');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return $('input[type="text"][id="id_realm_message_content_edit_limit_minutes"]').val() === '10';
 | 
						|
        }, 'Message content edit limit has been reset to its default');
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.test.info("Changing realm default language");
 | 
						|
    casper.evaluate(function () {
 | 
						|
        $('#id_realm_default_language').val('de').change();
 | 
						|
    });
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('#admin-realm-default-language-status', function () {
 | 
						|
    casper.test.assertSelectorHasText('#admin-realm-default-language-status', 'Default language changed!');
 | 
						|
});
 | 
						|
 | 
						|
// Test authentication methods setting
 | 
						|
casper.waitForSelector('input[type="checkbox"]', function () {
 | 
						|
    casper.click(".method_row[data-method='Email'] input[type='checkbox']");
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
});
 | 
						|
 | 
						|
// Test setting was activated--default is checked
 | 
						|
casper.then(function () {
 | 
						|
    // Scroll to bottom so that casper snapshots show the auth methods table
 | 
						|
    this.scrollToBottom();
 | 
						|
    // Test setting was activated
 | 
						|
    casper.waitUntilVisible('#admin-realm-authentication-methods-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-authentication-methods-status', 'Authentication methods saved!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector(".method_row[data-method='Email'] input[type='checkbox']").checked);
 | 
						|
        });
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    // Leave the page and return
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#subscriptions"]');
 | 
						|
    casper.click('#settings-dropdown');
 | 
						|
    casper.click('a[href^="#administration"]');
 | 
						|
 | 
						|
    casper.waitForSelector(".method_row[data-method='Email'] input[type='checkbox']", function () {
 | 
						|
        // Test Setting was saved
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return !(document.querySelector(".method_row[data-method='Email'] input[type='checkbox']").checked);
 | 
						|
        });
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
// Deactivate setting--default is checked
 | 
						|
casper.then(function () {
 | 
						|
    casper.click(".method_row[data-method='Email'] input[type='checkbox']");
 | 
						|
    casper.click('form.admin-realm-form input.button');
 | 
						|
    casper.waitUntilVisible('#admin-realm-authentication-methods-status', function () {
 | 
						|
        casper.test.assertSelectorHasText('#admin-realm-authentication-methods-status', 'Authentication methods saved!');
 | 
						|
        casper.test.assertEval(function () {
 | 
						|
            return document.querySelector(".method_row[data-method='Email'] input[type='checkbox']").checked;
 | 
						|
        });
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
common.then_log_out();
 | 
						|
 | 
						|
casper.run(function () {
 | 
						|
    casper.test.done();
 | 
						|
});
 |