123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- #!/usr/bin/env node
- '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 = 'gogstest';
- var repodir = '/tmp/testrepo';
- var app, reponame = 'testrepo';
- 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();
- rimraf.sync(repodir);
- done();
- });
- xit('build app', function () {
- execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- it('install app', function () {
- execSync('cloudron install --new --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();
- });
- });
- it('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 add public key', function (done) {
- browser.get('https://' + app.fqdn + '/user/settings/ssh');
- var publicKey = fs.readFileSync(__dirname + '/id_rsa.pub', 'utf8');
- browser.findElement(by.xpath('//div[text()="Add Key"]')).click();
- browser.findElement(by.id('title')).sendKeys('testkey');
- browser.findElement(by.id('content')).sendKeys(publicKey);
- browser.findElement(by.xpath('//button[contains(text(), "Add Key")]')).click();
- browser.wait(until.elementLocated(by.xpath('//p[contains(text(), "added successfully!")]')), 4000).then(function () { done(); });
- });
- it('can create repo', function (done) {
- browser.get('https://' + app.fqdn);
- browser.findElement(by.linkText('New Repository')).click();
- browser.wait(until.elementLocated(by.xpath('//*[contains(text(), "New Repository")]')), 4000);
- browser.findElement(by.id('repo_name')).sendKeys(reponame);
- browser.findElement(by.id('auto-init')).click();
- browser.findElement(by.xpath('//button[contains(text(), "Create Repository")]')).click();
- browser.wait(function () {
- return browser.getCurrentUrl().then(function (url) {
- return url === 'https://' + app.fqdn + '/' + username + '/' + reponame;
- });
- }, 4000).then(function () { done(); });
- });
- it('displays correct clone url', function (done) {
- browser.get('https://' + app.fqdn + '/' + username + '/' + reponame);
- browser.findElement(by.id('repo-clone-url')).getAttribute('value').then(function (cloneUrl) {
- expect(cloneUrl).to.be('ssh://cloudron@' + app.fqdn + ':29418/' + username + '/' + reponame + '.git');
- done();
- });
- });
- it('can clone the url', function (done) {
- var env = Object.create(process.env);
- env.GIT_SSH = __dirname + '/git_ssh_wrapper.sh';
- execSync('git clone ssh://cloudron@' + app.fqdn + ':29418/' + username + '/' + reponame + '.git ' + repodir, { env: env });
- done();
- });
- it('can add and push a file', function (done) {
- var env = Object.create(process.env);
- env.GIT_SSH = __dirname + '/git_ssh_wrapper.sh';
- execSync('touch newfile && git add newfile && git commit -a -mx && git push ssh://cloudron@' + app.fqdn + ':29418/' + username + '/' + reponame + ' master',
- { env: env, cwd: repodir });
- rimraf.sync('/tmp/testrepo');
- 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('can clone the url', function (done) {
- var env = Object.create(process.env);
- env.GIT_SSH = __dirname + '/git_ssh_wrapper.sh';
- execSync('git clone ssh://cloudron@' + app.fqdn + ':29418/' + username + '/' + reponame + '.git ' + repodir, { env: env });
- expect(fs.existsSync(repodir + '/newfile')).to.be(true);
- rimraf.sync(repodir);
- done();
- });
- it('uninstall app', function () {
- execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
- });
- });
|