check redis
This commit is contained in:
parent
8e4b186b3d
commit
b3a348cfa6
@ -72,6 +72,7 @@ describe('Application flow test', function () {
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
@ -83,6 +84,7 @@ describe('Application flow test', function () {
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can configure app', function () {
|
||||
@ -99,6 +101,7 @@ describe('Application flow test', function () {
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can reboot the cloudron', function () {
|
||||
@ -114,6 +117,7 @@ describe('Application flow test', function () {
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can uninstall app', function () {
|
||||
|
@ -87,6 +87,8 @@ describe('Cloudron update testing', function () {
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
@ -95,6 +97,10 @@ describe('Cloudron update testing', function () {
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can update the box', function () {
|
||||
@ -111,6 +117,10 @@ describe('Cloudron update testing', function () {
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can update to new version', function () {
|
||||
@ -129,6 +139,10 @@ describe('Cloudron update testing', function () {
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.ldap, 'OK');
|
||||
assert.strictEqual(res.body.sendmail, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
});
|
||||
|
||||
it('can uninstall app', function () {
|
||||
|
Loading…
Reference in New Issue
Block a user