blob: 666cea9b4ef929fac913c6c86b8e42aed703ac88 [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.
module.exports = {
'Creates a document without id' : function (client) {
/*jshint multistr: true */
var waitTime = client.globals.maxWaitTime,
newDatabaseName = client.globals.testDatabaseName,
baseUrl = client.options.launch_url;
client
.createDatabase(newDatabaseName)
.loginToGUI()
.url(baseUrl + '/#/database/' + newDatabaseName + '/_all_docs')
.clickWhenVisible('#new-all-docs-button a')
.clickWhenVisible('#new-all-docs-button a[href="#/database/' + newDatabaseName + '/_new"]')
.waitForElementPresent('#editor-container', waitTime, false)
.verify.urlEquals(baseUrl + '/#/database/' + newDatabaseName + '/_new')
.waitForElementPresent('.ace_gutter-active-line', waitTime, false)
// confirm the header elements are showing up
.waitForElementVisible('.faux-header__breadcrumbs', waitTime, true)
.waitForElementVisible('.faux__jsonlink-link', waitTime, true)
.execute('\
var editor = ace.edit("doc-editor");\
editor.gotoLine(2,1);\
editor.removeLines();\
editor.insert(\'"foo": "bar"\');\
')
.checkForStringPresent(newDatabaseName + '/_all_docs', '"total_rows":0')
.clickWhenVisible('#doc-editor-actions-panel .save-doc')
.checkForStringPresent(newDatabaseName + '/_all_docs', '"total_rows":1')
.end();
}
};