-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
83 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,26 +7,74 @@ const nock = require('nock'); | |
const CustomerNote = ChartMogul.CustomerNote; | ||
|
||
describe('CustomerNote', () => { | ||
it('create a customer note', () => { | ||
const uuid = 'cus_00000000-0000-0000-0000-000000000000'; | ||
const postBody = { | ||
customer_uuid: uuid, | ||
type: 'note', | ||
text: 'This is a note' | ||
}; | ||
|
||
nock(config.API_BASE) | ||
.post('/v1/customer_notes', postBody) | ||
.reply(200, { | ||
uuid: 'note_00000000-0000-0000-0000-000000000000', | ||
customer_uuid: uuid, | ||
type: 'note', | ||
text: 'This is a note', | ||
created_at: '2021-10-20T14:00:00.000Z', | ||
updated_at: '2021-10-20T14:00:00.000Z', | ||
author: 'John Doe ([email protected])' | ||
}); | ||
|
||
CustomerNote.create(config, postBody) | ||
.then(res => { | ||
expect(res.customer_uuid).to.be.equal(uuid); | ||
expect(res.text).to.be.equal('This is a note'); | ||
}); | ||
}); | ||
|
||
it('lists all customer notes', () => { | ||
const uuid = 'cus_00000000-0000-0000-0000-000000000000'; | ||
|
||
nock(config.API_BASE) | ||
.get('/v1/customer_notes') | ||
.reply(200, { | ||
entries: [{ | ||
uuid: 'note_00000000-0000-0000-0000-000000000000', | ||
customer_uuid: 'cus_00000000-0000-0000-0000-000000000000', | ||
author: 'John Doe ([email protected])', | ||
text: 'This is a note', | ||
created_at: '2015-01-01T12:00:00-05:00', | ||
updated_at: '2015-01-01T12:00:00-05:00', | ||
type: 'note' | ||
}] | ||
}); | ||
|
||
CustomerNote.all(config, uuid) | ||
.then(res => { | ||
expect(res.entries).to.haveLength(1); | ||
}); | ||
}); | ||
|
||
it('retrieves a customer note', () => { | ||
const uuid = 'note_00000000-0000-0000-0000-000000000000'; | ||
|
||
nock(config.API_BASE) | ||
.get('/v1/customer_notes' + '/' + uuid) | ||
.reply(200, { | ||
/* eslint-disable camelcase */ | ||
uuid: uuid, | ||
uuid, | ||
customer_uuid: 'cus_00000000-0000-0000-0000-000000000000', | ||
type: 'note', | ||
text: 'This is a note', | ||
created_at: '2021-10-20T14:00:00.000Z', | ||
updated_at: '2021-10-20T14:00:00.000Z', | ||
author: 'John Doe ([email protected])' | ||
/* eslint-enable camelcase */ | ||
}); | ||
|
||
CustomerNote.retrieve(config, uuid).then(res => { | ||
expect(res).to.have.property('uuid'); | ||
}); | ||
CustomerNote.retrieve(config, uuid).then(res => { | ||
expect(res).to.have.property('uuid'); | ||
}); | ||
}); | ||
|
||
it('updates a customer note', () => { | ||
|
@@ -39,7 +87,7 @@ describe('CustomerNote', () => { | |
.patch('/v1/customer_notes' + '/' + uuid, postBody) | ||
.reply(200, { | ||
/* eslint-disable camelcase */ | ||
uuid: uuid, | ||
uuid, | ||
customer_uuid: 'cus_00000000-0000-0000-0000-000000000000', | ||
type: 'note', | ||
text: 'This is a note', | ||
|
@@ -49,10 +97,10 @@ describe('CustomerNote', () => { | |
/* eslint-enable camelcase */ | ||
}); | ||
|
||
CustomerNote.patch(config, uuid, postBody) | ||
.then(res => { | ||
expect(res['text']).to.be.equal('This is a note'); | ||
}); | ||
CustomerNote.patch(config, uuid, postBody) | ||
.then(res => { | ||
expect(res.text).to.be.equal('This is a note'); | ||
}); | ||
}); | ||
|
||
it('deletes a customer note', () => { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,23 +191,22 @@ describe('Customer', () => { | |
it('creates a new note from a customer', () => { | ||
const customerUuid = 'cus_00000000-0000-0000-0000-000000000000'; | ||
const postBody = { | ||
customer_uuid: customerUuid, | ||
type: 'note', | ||
author_email: '[email protected]', | ||
note: 'This is a note' | ||
}; | ||
|
||
nock(config.API_BASE) | ||
.post(`/v1/customers/${customerUuid}/notes`, postBody) | ||
.post('/v1/customer_notes', postBody) | ||
.reply(200, { | ||
/* eslint-disable camelcase */ | ||
uuid: 'note_00000000-0000-0000-0000-000000000000', | ||
customer_uuid: 'cus_00000000-0000-0000-0000-000000000000', | ||
author: 'John Doe ([email protected])', | ||
text: 'This is a note', | ||
created_at: '2015-01-01T12:00:00-05:00', | ||
updated_at: '2015-01-01T12:00:00-05:00', | ||
type: 'note' | ||
/* eslint-enable camelcase */ | ||
}); | ||
|
||
Customer.createrNote(config, customerUuid, postBody) | ||
|
@@ -220,9 +219,8 @@ describe('Customer', () => { | |
const customerUuid = 'cus_00000000-0000-0000-0000-000000000000'; | ||
|
||
nock(config.API_BASE) | ||
.get(`/v1/customers/${customerUuid}/notes`) | ||
.get(`/v1/customer_notes?customer_uuid=${customerUuid}`) | ||
.reply(200, { | ||
/* eslint-disable camelcase */ | ||
entries: [{ | ||
uuid: 'note_00000000-0000-0000-0000-000000000000', | ||
customer_uuid: 'cus_00000000-0000-0000-0000-000000000000', | ||
|
@@ -232,8 +230,7 @@ describe('Customer', () => { | |
updated_at: '2015-01-01T12:00:00-05:00', | ||
type: 'note' | ||
}] | ||
/* eslint-enable camelcase */ | ||
}); | ||
}); | ||
|
||
Customer.notes(config, customerUuid) | ||
.then(res => { | ||
|