mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 00:15:40 +00:00
Compare commits
34 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1f76bbfd77 | ||
|
f7c784c228 | ||
|
ee7795df9a | ||
|
6dd64a829c | ||
|
75e7154353 | ||
|
3b8576093e | ||
|
5dd4f2d8e3 | ||
|
00a2c3569b | ||
|
cc7890f71d | ||
|
f156ab5168 | ||
|
0b2d206655 | ||
|
4c01df72b5 | ||
|
ada7671d81 | ||
|
5a0ec69dfd | ||
|
bf4f230766 | ||
|
49b6a854f9 | ||
|
5f72ec0c47 | ||
|
fc2a5016eb | ||
|
52d85d06a8 | ||
|
2e87474fc0 | ||
|
252ffc4128 | ||
|
a591960982 | ||
|
371db41bac | ||
|
ea4c66ea9e | ||
|
34e7ea8a94 | ||
|
1bf20110ce | ||
|
d58be51a79 | ||
|
0e8e1525d0 | ||
|
f362df6f92 | ||
|
c0da9e678b | ||
|
3780f971e3 | ||
|
0e26a175fb | ||
|
474243b6a0 | ||
|
41b7a699ec |
45
CHANGELOG
45
CHANGELOG
@@ -357,3 +357,48 @@
|
||||
[1.72.0]
|
||||
* Update minio to 2019-07-24T02-02-23Z
|
||||
|
||||
[1.73.0]
|
||||
* Update minio to 2019-08-01T22-18-54Z
|
||||
|
||||
[1.74.0]
|
||||
* Update minio to 2019-08-07T01-59-21Z
|
||||
|
||||
[1.75.0]
|
||||
* Update minio to 2019-08-14T20-37-41Z
|
||||
|
||||
[1.76.0]
|
||||
* Update minio to 2019-08-21T19-40-07Z
|
||||
|
||||
[1.77.0]
|
||||
* Update minio to 2019-08-29T00-25-01Z
|
||||
|
||||
[1.78.0]
|
||||
* Update minio to 2019-09-05T23-24-38Z
|
||||
|
||||
[1.79.0]
|
||||
* Update minio to 2019-09-11T19-53-16Z
|
||||
|
||||
[1.80.0]
|
||||
* Update minio to 2019-09-18T21-55-05Z
|
||||
|
||||
[1.81.0]
|
||||
* Update minio to 2019-09-25T18-25-51Z
|
||||
|
||||
[1.82.0]
|
||||
* Update minio to 2019-09-26T19-42-35Z
|
||||
|
||||
[1.83.0]
|
||||
* Update minio to 2019-10-02T21-19-38Z
|
||||
|
||||
[1.84.0]
|
||||
* Update minio to 2019-10-11T00-38-09Z
|
||||
|
||||
[1.85.0]
|
||||
* Update minio to 2019-10-12T01-39-57Z
|
||||
|
||||
[1.86.0]
|
||||
* Update minio to 2019-12-19T22-52-26Z
|
||||
|
||||
[1.87.0]
|
||||
* Update minio to 2019-12-30T05-45-39Z
|
||||
|
||||
|
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "1.72.0",
|
||||
"version": "1.87.0",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"httpPort": 8000,
|
||||
"addons": {
|
||||
|
@@ -1,4 +1,4 @@
|
||||
This app packages Minio <upstream>2019-07-24T02-02-23Z</upstream>.
|
||||
This app packages Minio <upstream>2019-12-30T05-45-39Z</upstream>.
|
||||
|
||||
Minio is a distributed object storage server built for cloud applications and devops.
|
||||
|
||||
|
@@ -1,6 +1,7 @@
|
||||
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
||||
|
||||
ARG VERSION=RELEASE.2019-07-24T02-02-23Z
|
||||
ARG VERSION=RELEASE.2019-12-30T05-45-39Z
|
||||
|
||||
RUN mkdir -p /app/code \
|
||||
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \
|
||||
&& chmod +x /app/code/minio
|
||||
|
675
test/package-lock.json
generated
675
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,14 +9,14 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^74.0.0",
|
||||
"ejs": "^2.6.1",
|
||||
"chromedriver": "^79.0.0",
|
||||
"ejs": "^3.0.1",
|
||||
"expect.js": "^0.3.1",
|
||||
"mkdirp": "^0.5.1",
|
||||
"mocha": "^6.1.4",
|
||||
"rimraf": "^2.6.3",
|
||||
"selenium-server-standalone-jar": "^3.141.5",
|
||||
"mocha": "^6.2.2",
|
||||
"rimraf": "^3.0.0",
|
||||
"selenium-server-standalone-jar": "^3.141.59",
|
||||
"selenium-webdriver": "^3.6.0",
|
||||
"superagent": "^5.0.5"
|
||||
"superagent": "^5.1.3"
|
||||
}
|
||||
}
|
||||
|
20
test/test.js
20
test/test.js
@@ -96,13 +96,15 @@ describe('Application life cycle test', function () {
|
||||
browser.get('https://' + app.fqdn);
|
||||
|
||||
pageLoaded().then(function () {
|
||||
return visible(by.className('fa fa-plus'));
|
||||
return visible(by.className('fa-plus'));
|
||||
}).then(function () {
|
||||
return browser.findElement(by.className('fa fa-plus')).click();
|
||||
return browser.findElement(by.className('fa-plus')).click();
|
||||
}).then(function () {
|
||||
return visible(by.className('fa fa-hdd-o'));
|
||||
const c = 'fa-hdd';
|
||||
return visible(by.className(c));
|
||||
}).then(function () {
|
||||
return browser.findElement(by.className('fa fa-hdd-o')).click();
|
||||
const c = 'fa-hdd';
|
||||
return browser.findElement(by.className(c)).click();
|
||||
}).then(function () {
|
||||
return visible(by.xpath('//*[@class="modal-body"]/form/div/input'));
|
||||
}).then(function () {
|
||||
@@ -149,7 +151,7 @@ describe('Application life cycle test', function () {
|
||||
});
|
||||
|
||||
it('install app', function () {
|
||||
execSync('cloudron install --new --wait --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
execSync('cloudron install --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
});
|
||||
|
||||
it('can get app information', function () {
|
||||
@@ -166,7 +168,7 @@ describe('Application life cycle test', function () {
|
||||
it('can logout', logout);
|
||||
|
||||
it('can restart app', function (done) {
|
||||
execSync('cloudron restart --wait');
|
||||
execSync('cloudron restart');
|
||||
done();
|
||||
});
|
||||
|
||||
@@ -189,7 +191,7 @@ describe('Application life cycle test', function () {
|
||||
|
||||
it('move to different location', function () {
|
||||
browser.manage().deleteAllCookies();
|
||||
execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
execSync('cloudron configure --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');
|
||||
@@ -205,7 +207,7 @@ describe('Application life cycle test', function () {
|
||||
|
||||
// test update
|
||||
it('can install app', function () {
|
||||
execSync('cloudron install --new --wait --appstore-id io.minio.cloudronapp --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
execSync('cloudron install --appstore-id io.minio.cloudronapp --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
var inspect = JSON.parse(execSync('cloudron inspect'));
|
||||
app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0];
|
||||
expect(app).to.be.an('object');
|
||||
@@ -215,7 +217,7 @@ describe('Application life cycle test', function () {
|
||||
it('can add buckets', addBucket);
|
||||
it('can logout', logout);
|
||||
it('can update', function () {
|
||||
execSync('cloudron install --wait --app ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
execSync('cloudron update --app ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
});
|
||||
it('can login', login);
|
||||
it('has bucket', checkBucket);
|
||||
|
Reference in New Issue
Block a user