check ldap and sendmail extensions

This commit is contained in:
Girish Ramakrishnan 2015-10-10 12:14:49 -07:00
parent 25abfc1695
commit 4fd16af3c2
2 changed files with 10 additions and 0 deletions

View File

@ -81,6 +81,8 @@ 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.ldap, 'OK');
assert.strictEqual(res.body.sendmail, 'OK');
});
it('can configure app', function () {
@ -95,6 +97,8 @@ 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.ldap, 'OK');
assert.strictEqual(res.body.sendmail, 'OK');
});
it('can reboot the cloudron', function () {
@ -108,6 +112,8 @@ 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.ldap, 'OK');
assert.strictEqual(res.body.sendmail, 'OK');
});
it('can uninstall app', function () {

View File

@ -83,6 +83,8 @@ describe('Cloudron backup testing', function () {
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');
});
it('can backup the box', function () {
@ -121,6 +123,8 @@ describe('Cloudron backup testing', function () {
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');
});
it('can uninstall app', function () {