From: Johannes Zellner Date: Sun, 5 Jan 2020 22:55:09 +0000 (+0100) Subject: Add update tests X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FNodejs%2FSurfer.git;a=commitdiff_plain;h=a0ce51e752db8b10493a01055961299ebd283803 Add update tests --- diff --git a/test/test.js b/test/test.js index dd2d06f..8145f17 100644 --- a/test/test.js +++ b/test/test.js @@ -23,7 +23,7 @@ if (!process.env.USERNAME || !process.env.PASSWORD) { describe('Application life cycle test', function () { this.timeout(0); - const EXEC_OPTIONS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }; + const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }; const LOCATION = 'test'; const TEST_TIMEOUT = 10000; const TEST_FILE_NAME_0 = 'index.html'; @@ -40,6 +40,12 @@ describe('Application life cycle test', function () { browser.quit(); }); + function getAppInfo() { + var inspect = JSON.parse(execSync('cloudron inspect')); + app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0]; + expect(app).to.be.an('object'); + } + function waitForElement(elem) { return browser.wait(until.elementLocated(elem), TEST_TIMEOUT).then(function () { return browser.wait(until.elementIsVisible(browser.findElement(elem)), TEST_TIMEOUT); @@ -126,15 +132,11 @@ describe('Application life cycle test', function () { done(); } - xit('build app', function () { execSync('cloudron build', EXEC_OPTIONS); }); + xit('build app', function () { execSync('cloudron build', EXEC_ARGS); }); - it('install app', function () { execSync(`cloudron install --location ${LOCATION}`, EXEC_OPTIONS); }); + it('install app', function () { execSync(`cloudron install --location ${LOCATION}`, EXEC_ARGS); }); - 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 app information', getAppInfo); it('can login', login); it('can cli login', cliLogin); @@ -150,8 +152,8 @@ describe('Application life cycle test', function () { it('second file is gone', checkFileIsGone.bind(null, TEST_FILE_NAME_1)); it('can logout', logout); - it('backup app', function () { execSync(`cloudron backup create --app ${app.id}`, EXEC_OPTIONS); }); - it('restore app', function () { execSync(`cloudron restore --app ${app.id}`, EXEC_OPTIONS); }); + it('backup app', function () { execSync(`cloudron backup create --app ${app.id}`, EXEC_ARGS); }); + it('restore app', function () { execSync(`cloudron restore --app ${app.id}`, EXEC_ARGS); }); it('can login', login); it('file is listed', checkFileIsListed.bind(null, TEST_FILE_NAME_0)); @@ -165,16 +167,46 @@ describe('Application life cycle test', function () { // ensure we don't hit NXDOMAIN in the mean time browser.get('about:blank').then(function () { - execSync(`cloudron configure --location ${LOCATION}2 --app ${app.id}`, EXEC_OPTIONS); + execSync(`cloudron configure --location ${LOCATION}2 --app ${app.id}`, EXEC_ARGS); - 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'); + getAppInfo(); + + done(); + }); + }); + + it('can login', login); + it('file is listed', checkFileIsListed.bind(null, TEST_FILE_NAME_0)); + it('file is served up', checkFileIsPresent); + it('file is served up', checkIndexFileIsServedUp); + it('can logout', logout); + it('uninstall app', function (done) { + // ensure we don't hit NXDOMAIN in the mean time + browser.get('about:blank').then(function () { + execSync(`cloudron uninstall --app ${app.id}`, EXEC_ARGS); done(); }); }); + // test update + it('can install app', function () { + execSync(`cloudron install --appstore-id io.cloudron.surfer --location ${LOCATION}`, EXEC_ARGS); + }); + + it('can get app information', getAppInfo); + it('can login', login); + it('can cli login', cliLogin); + it('can upload file', uploadFile.bind(null, TEST_FILE_NAME_0)); + it('file is listed', checkFileIsListed.bind(null, TEST_FILE_NAME_0)); + it('file is served up', checkFileIsPresent); + it('file is served up', checkIndexFileIsServedUp); + it('can logout', logout); + + it('can update', function () { + execSync(`cloudron update --app ${LOCATION}`, EXEC_ARGS); + }); + it('can login', login); it('file is listed', checkFileIsListed.bind(null, TEST_FILE_NAME_0)); it('file is served up', checkFileIsPresent); @@ -184,7 +216,7 @@ describe('Application life cycle test', function () { it('uninstall app', function (done) { // ensure we don't hit NXDOMAIN in the mean time browser.get('about:blank').then(function () { - execSync(`cloudron uninstall --app ${app.id}`, EXEC_OPTIONS); + execSync(`cloudron uninstall --app ${app.id}`, EXEC_ARGS); done(); }); });