Updated to new upstream version

This commit is contained in:
Dennis Schwerdel 2017-02-16 07:23:47 +01:00
parent d770b101b0
commit 17c84f8a1e
4 changed files with 24 additions and 2 deletions

View File

@ -6,3 +6,7 @@
[0.2.0]
* Updated to 2017-01-25T03-14-52Z
[0.2.1]
* Updated to 2017-02-16T01-47-30Z
* This version fixes the settings bug

View File

@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "0.2.0",
"version": "0.2.1",
"healthCheckPath": "/minio/login",
"httpPort": 8000,
"addons": {

View File

@ -3,7 +3,7 @@ MAINTAINER Minio Developers <support@cloudron.io>
EXPOSE 8000
ENV VERSION 2017-01-25T03-14-52Z
ENV VERSION 2017-02-16T01-47-30Z
RUN mkdir -p /app/code \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.${VERSION} -O /app/code/minio \

View File

@ -108,6 +108,21 @@ describe('Application life cycle test', function () {
});
}
function openSettings(callback) {
browser.get('https://' + app.fqdn);
pageLoaded(function () {
visible(by.id('top-right-menu'), function () {
browser.findElement(by.id('top-right-menu')).click();
visible(by.xpath('//*[text()="Settings "]'), function () {
browser.findElement(by.xpath('//*[text()="Settings "]')).click();
browser.wait(until.elementLocated(by.xpath('//*[text()="Generate"]')), TEST_TIMEOUT).then(function () { callback(); });
});
});
});
}
xit('build app', function () {
execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
@ -126,6 +141,7 @@ describe('Application life cycle test', function () {
it('can login', login);
it('can add buckets', addBucket);
it('can open settings', openSettings);
it('can logout', logout);
it('backup app', function () {
@ -138,6 +154,7 @@ describe('Application life cycle test', function () {
it('can login', login);
it('can add buckets', addBucket);
it('can open settings', openSettings);
it('can logout', logout);
it('move to different location', function () {
@ -150,6 +167,7 @@ describe('Application life cycle test', function () {
it('can login', login);
it('can add buckets', addBucket);
it('can open settings', openSettings);
it('can logout', logout);
it('uninstall app', function () {