mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	The tests run as iago, who is now an administrator and therefore has control over many more bots. Be specific about which bot to operate on. (imported from commit 7a9d3e12da905338624747dd402702bb66907cfd)
		
			
				
	
	
		
			112 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var common = require('../common.js').common;
 | 
						|
var test_credentials = require('../test_credentials.js').test_credentials;
 | 
						|
 | 
						|
common.start_and_log_in();
 | 
						|
 | 
						|
var form_sel = 'form[action^="/json/settings/change"]';
 | 
						|
 | 
						|
casper.then(function () {
 | 
						|
    casper.test.info('Settings page');
 | 
						|
    casper.click('a[href^="#settings"]');
 | 
						|
    casper.test.assertUrlMatch(/^http:\/\/[^\/]+\/#settings/, 'URL suggests we are on settings page');
 | 
						|
    casper.test.assertExists('#settings.tab-pane.active', 'Settings page is active');
 | 
						|
 | 
						|
    casper.test.assertNotVisible("#old_password");
 | 
						|
 | 
						|
    casper.click(".change_password_button");
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible("#old_password", function () {
 | 
						|
    casper.test.assertVisible("#old_password");
 | 
						|
    casper.test.assertVisible("#new_password");
 | 
						|
    casper.test.assertVisible("#confirm_password");
 | 
						|
 | 
						|
    casper.test.assertEqual(casper.getFormValues(form_sel).full_name, "Iago");
 | 
						|
 | 
						|
    casper.fill(form_sel, {
 | 
						|
        "full_name": "IagoNew",
 | 
						|
        "old_password": test_credentials.default_user.password,
 | 
						|
        "new_password": "qwertyuiop",
 | 
						|
        "confirm_password": "qwertyuiop"
 | 
						|
    });
 | 
						|
    casper.click('input[name="change_settings"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('#settings-status', function () {
 | 
						|
    casper.test.assertSelectorHasText('#settings-status', 'Updated settings!');
 | 
						|
 | 
						|
    casper.click('#api_key_button');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('#get_api_key_password', function () {
 | 
						|
    casper.fill('form[action^="/json/fetch_api_key"]', {'password':'qwertyuiop'});
 | 
						|
    casper.click('input[name="view_api_key"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('#api_key_value', function () {
 | 
						|
    casper.test.assertMatch(casper.fetchText('#api_key_value'), /[a-zA-Z0-9]{32}/, "Looks like an API key");
 | 
						|
 | 
						|
    // Change it all back so the next test can still log in
 | 
						|
    casper.fill(form_sel, {
 | 
						|
        "full_name": "Iago",
 | 
						|
        "old_password": "qwertyuiop",
 | 
						|
        "new_password": test_credentials.default_user.password,
 | 
						|
        "confirm_password": test_credentials.default_user.password
 | 
						|
    });
 | 
						|
    casper.click('input[name="change_settings"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('#settings-status', function () {
 | 
						|
    casper.test.assertSelectorHasText('#settings-status', 'Updated settings!');
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
casper.then(function create_bot() {
 | 
						|
    casper.test.info('Filling out the create bot form');
 | 
						|
 | 
						|
    casper.fill('#create_bot_form',{
 | 
						|
        bot_name: 'Bot 1',
 | 
						|
        bot_short_name: '1',
 | 
						|
        bot_default_sending_stream: 'Denmark',
 | 
						|
        bot_default_events_register_stream: 'Rome'
 | 
						|
    });
 | 
						|
 | 
						|
    casper.test.info('Submiting the create bot form');
 | 
						|
    casper.click('#create_bot_button');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('.open_edit_bot_form[data-email="1-bot@zulip.com"]', function open_edit_bot_form() {
 | 
						|
    casper.test.info('Opening edit bot form');
 | 
						|
    casper.click('.open_edit_bot_form[data-email="1-bot@zulip.com"]');
 | 
						|
});
 | 
						|
 | 
						|
casper.waitUntilVisible('.edit_bot_form[data-email="1-bot@zulip.com"]', function test_edit_bot_form_values() {
 | 
						|
    var form_sel = '.edit_bot_form[data-email="1-bot@zulip.com"]';
 | 
						|
    casper.test.info('Testing edit bot form values');
 | 
						|
 | 
						|
//     casper.test.assertEqual(
 | 
						|
//         common.get_form_field_value(form_sel + ' [name=bot_name]'),
 | 
						|
//         'Bot 1'
 | 
						|
//     );
 | 
						|
//     casper.test.assertEqual(
 | 
						|
//         common.get_form_field_value(form_sel + ' [name=bot_default_sending_stream]'),
 | 
						|
//         'Denmark'
 | 
						|
//     );
 | 
						|
//     casper.test.assertEqual(
 | 
						|
//         common.get_form_field_value(form_sel + ' [name=bot_default_events_register_stream]'),
 | 
						|
//         'Rome'
 | 
						|
//     );
 | 
						|
    casper.test.assertEqual(
 | 
						|
	common.get_form_field_value(form_sel + ' [name=bot_name]'),
 | 
						|
	'Bot 1'
 | 
						|
    );
 | 
						|
});
 | 
						|
 | 
						|
// TODO: test the "Declare Zulip Bankruptcy option"
 | 
						|
 | 
						|
common.then_log_out();
 | 
						|
 | 
						|
casper.run(function () {
 | 
						|
    casper.test.done();
 | 
						|
});
 |