blob: a52c8daa1c511b1e56ec17c50b612babc3a21d42 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
var helpers = require('../../../../../test/nightwatch_tests/helpers/helpers.js');
module.exports = {
before: function (client, done) {
var nano = helpers.getNanoInstance(client.options.db_url);
nano.db.create('_replicator', function () {
done();
});
},
after: function (client, done) {
var nano = helpers.getNanoInstance(client.options.db_url);
nano.db.destroy('_replicator', function () {
done();
});
},
'Shows a warning for system databases (prefixed with _)': function (client) {
var waitTime = client.globals.maxWaitTime,
baseUrl = client.options.launch_url;
client
.loginToGUI()
.url(baseUrl + '/#/database/_replicator/_all_docs')
.clickWhenVisible('.faux-header__doc-header-dropdown-toggle')
.clickWhenVisible('.faux-header__doc-header-dropdown-itemwrapper .fonticon-trash')
.waitForElementVisible('.delete-db-modal', waitTime, false)
.waitForElementVisible('.delete-db-modal input[type="text"]', waitTime, false)
.assert.elementPresent('.warning')
.end();
},
'Shows no warning for non system databases': function (client) {
var waitTime = client.globals.maxWaitTime,
newDatabaseName = client.globals.testDatabaseName,
baseUrl = client.options.launch_url;
client
.loginToGUI()
.url(baseUrl + '/#/database/' + newDatabaseName + '/_all_docs')
.clickWhenVisible('.faux-header__doc-header-dropdown-toggle')
.clickWhenVisible('.faux-header__doc-header-dropdown-itemwrapper .fonticon-trash')
.waitForElementVisible('.delete-db-modal', waitTime, false)
.waitForElementVisible('.delete-db-modal input[type="text"]', waitTime, false)
.assert.not.elementPresent('.warning')
.end();
}
};