123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #!/usr/bin/env node
- /* jslint node:true */
- /* global it:false */
- /* global xit:false */
- /* global describe:false */
- /* global before:false */
- /* global after:false */
- 'use strict';
- var execSync = require('child_process').execSync,
- ejs = require('ejs'),
- expect = require('expect.js'),
- fs = require('fs'),
- mkdirp = require('mkdirp'),
- path = require('path'),
- rimraf = require('rimraf'),
- superagent = require('superagent'),
- webdriver = require('selenium-webdriver');
- var by = require('selenium-webdriver').By,
- until = require('selenium-webdriver').until;
- process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
- describe('Application life cycle test', function () {
- this.timeout(0);
- var firefox = require('selenium-webdriver/firefox');
- var server, browser = new firefox.Driver();
- var LOCATION = 'wptest';
- var app;
- var username = process.env.USERNAME;
- var password = process.env.PASSWORD;
- before(function (done) {
- if (!process.env.USERNAME) return done(new Error('USERNAME env var not set'));
- if (!process.env.PASSWORD) return done(new Error('PASSWORD env var not set'));
- var seleniumJar= require('selenium-server-standalone-jar');
- var SeleniumServer = require('selenium-webdriver/remote').SeleniumServer;
- server = new SeleniumServer(seleniumJar.path, { port: 4444 });
- server.start();
- done();
- });
- after(function (done) {
- browser.quit();
- server.stop();
- done();
- });
- xit('build app', function () {
- execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- it('install app', function () {
- execSync('cloudron install --new --wait --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- it('can get app information', function () {
- var inspect = JSON.parse(execSync('cloudron inspect'));
- app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0];
- expect(app).to.be.an('object');
- });
- it('can get the main page', function (done) {
- superagent.get('https://' + app.fqdn).end(function (error, result) {
- expect(error).to.be(null);
- expect(result.status).to.eql(200);
- done();
- });
- });
- xit('can login', function (done) {
- browser.get('https://' + app.fqdn + '/user/login');
- browser.findElement(by.id('user_name')).sendKeys(username);
- browser.findElement(by.id('password')).sendKeys(password);
- browser.findElement(by.tagName('form')).submit();
- browser.wait(until.elementLocated(by.linkText('Dashboard')), 4000).then(function () { done(); });
- });
- it('can restart app', function (done) {
- execSync('cloudron restart');
- done();
- });
- it('backup app', function () {
- execSync('cloudron backup --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- it('restore app', function () {
- execSync('cloudron restore --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- it('move to different location', function () {
- browser.manage().deleteAllCookies();
- execSync('cloudron install --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- var inspect = JSON.parse(execSync('cloudron inspect'));
- app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
- expect(app).to.be.an('object');
- });
- xit('can login', function (done) {
- browser.get('https://' + app.fqdn + '/user/login');
- browser.findElement(by.id('user_name')).sendKeys(username);
- browser.findElement(by.id('password')).sendKeys(password);
- browser.findElement(by.tagName('form')).submit();
- browser.wait(until.elementLocated(by.linkText('Dashboard')), 4000).then(function () { done(); });
- });
- it('uninstall app', function () {
- execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- });
|