Add API to get subscription

This commit is contained in:
Girish Ramakrishnan
2019-05-03 20:17:40 -07:00
parent f6e82e93e4
commit ccb2fcf39b
4 changed files with 35 additions and 17 deletions

View File

@@ -70,7 +70,7 @@ describe('Subscription API', function () {
var scope2 = nock(config.apiServerOrigin())
.post('/api/v1/register_cloudron?accessToken=SECRET_TOKEN', (body) => !!body.domain)
.reply(201, { cloudronId: 'cid', cloudronToken: 'token', licenseKey: 'lkey' });
.reply(201, { cloudronId: 'cid', cloudronToken: 'CLOUDRON_TOKEN', licenseKey: 'lkey' });
superagent.post(SERVER_URL + '/api/v1/subscription')
.send({ email: 'test@cloudron.io', password: 'secret', signup: false })
@@ -82,4 +82,20 @@ describe('Subscription API', function () {
done();
});
});
it('can get subscription', function (done) {
var scope1 = nock(config.apiServerOrigin())
.get('/api/v1/subscription?accessToken=CLOUDRON_TOKEN', () => true)
.reply(200, { subscription: { plan: { id: 'free' } }, email: 'test@cloudron.io' });
superagent.get(SERVER_URL + '/api/v1/subscription')
.query({ access_token: token })
.end(function (error, result) {
expect(result.statusCode).to.equal(200);
expect(result.body.email).to.be('test@cloudron.io');
expect(result.body.subscription).to.be.an('object');
expect(scope1.isDone()).to.be.ok();
done();
});
});
});