diff --git a/test/app-flow-test.js b/test/app-flow-test.js index b41bd66..7f0676f 100644 --- a/test/app-flow-test.js +++ b/test/app-flow-test.js @@ -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 () { diff --git a/test/cloudron-update-test.js b/test/cloudron-update-test.js index 881df95..0267181 100644 --- a/test/cloudron-update-test.js +++ b/test/cloudron-update-test.js @@ -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 () {