aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/test/js/process.js
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-03-24 09:50:04 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-03-24 09:50:04 +0100
commit631cea2c6bf952460e5239c2862c43d22edf529b (patch)
treef74df39de2c9e3c2bbe728d8d75f29ddf2890400 /server/sonar-web/src/test/js/process.js
parent209fe2e257ed43735fbbf14c49a2f9d2848eed19 (diff)
downloadsonarqube-631cea2c6bf952460e5239c2862c43d22edf529b.tar.gz
sonarqube-631cea2c6bf952460e5239c2862c43d22edf529b.zip
update process spinners
Diffstat (limited to 'server/sonar-web/src/test/js/process.js')
-rw-r--r--server/sonar-web/src/test/js/process.js167
1 files changed, 167 insertions, 0 deletions
diff --git a/server/sonar-web/src/test/js/process.js b/server/sonar-web/src/test/js/process.js
new file mode 100644
index 00000000000..61c6edf2404
--- /dev/null
+++ b/server/sonar-web/src/test/js/process.js
@@ -0,0 +1,167 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+/* globals casper: false */
+
+var lib = require('../lib'),
+ testName = lib.testName('Process');
+
+
+lib.initMessages();
+lib.configureCasper();
+
+
+casper.test.begin(testName('One Timeout'), function (test) {
+ casper
+ .start(lib.buildUrl('nav'), function () {
+ lib.setDefaultViewport();
+ })
+
+ .then(function () {
+ casper.evaluate(function () {
+ jQuery.get(baseUrl + '/api/generic/long');
+ });
+ })
+
+ .then(function () {
+ casper.waitForSelector('.process-spinner.shown');
+ })
+
+ .then(function () {
+ casper.waitWhileSelector('.process-spinner.shown');
+ })
+
+ .then(function () {
+ test.assert(true, 'All process spinners disappeared');
+ })
+
+ .then(function () {
+ lib.sendCoverage();
+ })
+
+ .run(function () {
+ test.done();
+ });
+});
+
+
+casper.test.begin(testName('Several Timeouts'), 1, function (test) {
+ casper
+ .start(lib.buildUrl('nav'), function () {
+ lib.setDefaultViewport();
+ })
+
+ .then(function () {
+ casper.evaluate(function () {
+ setTimeout(function() { jQuery.get(baseUrl + '/api/generic/long'); }, 0);
+ setTimeout(function() { jQuery.get(baseUrl + '/api/generic/long'); }, 500);
+ setTimeout(function() { jQuery.get(baseUrl + '/api/generic/long'); }, 1000);
+ });
+ })
+
+ .then(function () {
+ casper.waitForSelector('.process-spinner.shown');
+ })
+
+ .then(function () {
+ lib.waitWhileElementCount('.process-spinner.shown', 1);
+ })
+
+ .then(function () {
+ test.assertDoesntExist('.process-spinner.shown', 'All process spinners disappeared');
+ })
+
+ .then(function () {
+ lib.sendCoverage();
+ })
+
+ .run(function () {
+ test.done();
+ });
+});
+
+
+casper.test.begin(testName('Failed'), 1, function (test) {
+ casper
+ .start(lib.buildUrl('nav'), function () {
+ lib.setDefaultViewport();
+ })
+
+ .then(function () {
+ casper.evaluate(function () {
+ setTimeout(function() { jQuery.get(baseUrl + '/api/generic/long'); }, 0);
+ setTimeout(function() { jQuery.get(baseUrl + '/api/generic/failed'); }, 0);
+ });
+ })
+
+ .then(function () {
+ casper.waitForSelector('.process-spinner.process-spinner-failed');
+ })
+
+ .then(function () {
+ lib.waitWhileElementCount('.process-spinner.shown', 1);
+ })
+
+ .then(function () {
+ test.assertDoesntExist('.process-spinner.shown', 'All process spinners disappeared');
+ })
+
+ .then(function () {
+ lib.sendCoverage();
+ })
+
+ .run(function () {
+ test.done();
+ });
+});
+
+
+casper.test.begin(testName('Close Failed'), 2, function (test) {
+ casper
+ .start(lib.buildUrl('nav'), function () {
+ lib.setDefaultViewport();
+ })
+
+ .then(function () {
+ casper.evaluate(function () {
+ jQuery.get(baseUrl + '/api/generic/failed');
+ });
+ })
+
+ .then(function () {
+ casper.waitForSelector('.process-spinner.process-spinner-failed');
+ })
+
+ .then(function () {
+ test.assertExists('.process-spinner-close');
+ casper.click('.process-spinner-close');
+ })
+
+ .then(function () {
+ test.assertDoesntExist('.process-spinner.shown', 'All process spinners disappeared');
+ })
+
+ .then(function () {
+ lib.sendCoverage();
+ })
+
+ .run(function () {
+ test.done();
+ });
+});