UNPKG

zoho

Version:

Node.js client library for Zoho

288 lines (247 loc) 9.76 kB
'use strict'; var assert = require('assert'), sinon = require('sinon'), faker = require('faker'), libxml = require('libxmljs'), config = require('../config'), Zoho = require('../../lib'); var zohoCRM = new Zoho.CRM(config.crm); var recordType = ['potentials']; // Zoho CRM describe('Zoho CRM', function () { it('zohoCRM should be an instance of Zoho.CRM', function () { assert(zohoCRM instanceof Zoho.CRM); }); it('zohoCRM should have this properties', function () { assert(zohoCRM.protocol); assert(zohoCRM.host); assert(zohoCRM.port); assert(zohoCRM.scope); assert(zohoCRM.authtoken); assert.equal(zohoCRM.scope, config.crm.scope); assert.equal(zohoCRM.authtoken, config.crm.authtoken); }); it('zohoCRM should have this public functions', function () { assert.equal(typeof zohoCRM.getRecords, 'function'); assert.equal(typeof zohoCRM.getRecordById, 'function'); assert.equal(typeof zohoCRM.createRecord, 'function'); assert.equal(typeof zohoCRM.updateRecord, 'function'); assert.equal(typeof zohoCRM.deleteRecord, 'function'); }); it('zohoCRM should have this private functions', function () { assert.equal(typeof zohoCRM._request, 'function'); assert.equal(typeof zohoCRM._build, 'function'); }); describe('Zoho Build Data', function () { beforeEach(function () { this.obj = { 'Potential Name': faker.name.firstName(), Description: 'Description & §¶e¢¥å1 ©Ã®â€£ër§' }; }); it('should build XML data from object with wrapper', function () { var xml = zohoCRM._build('Potentials', this.obj); xml = libxml.parseXml(xml); assert(xml.get('row').child(0).text(), this.obj['Potential Name']); }); }); // To assign created id; var created_id; describe('Zoho Requests', function () { beforeEach(function () { this.callback = sinon.spy(); }); it('should be able to make requests to Zoho server', function (done) { this.timeout(5000); zohoCRM._request('GET', 'fakeroute', {}, function (error, response) { assert.equal(response, null); assert.equal(typeof error, 'object'); assert.equal(error.code, 4600); assert(/Unable to process your request/.test(error.message)); done(); }); // setTimeout(function () { // }.bind(this.callback), 5000); }); }); describe('Create Zoho CRM records', function () { beforeEach(function () { this.params = { 'Potential Name': faker.name.firstName(), Company: faker.company.companyName() }; this.callback = sinon.spy(); }); it('should fail when trying to create a potential without params', function () { this.timeout(5000); zohoCRM.createRecord(recordType[0], undefined, this.callback); assert(this.callback.calledOnce); assert.notEqual(this.callback.args[0][0], null); zohoCRM.createRecord(recordType[0], {}, this.callback); assert(this.callback.calledTwice); assert.notEqual(this.callback.args[1][0], null); zohoCRM.createRecord(recordType[0], [], this.callback); assert(this.callback.calledThrice); assert.notEqual(this.callback.args[2][0], null); zohoCRM.createRecord(recordType[0], null, this.callback); assert.notEqual(this.callback.args[3][0], null); }); it('should create a potential', function (done) { this.timeout(5000); zohoCRM.createRecord(recordType[0], this.params, function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); created_id = response.data.FL[0].content; done(); }); }); it('should add a note to', function (done) { this.timeout(5000); zohoCRM.createNote(created_id, 'My first note', 'El contenido', function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); done(); }); }); it('should create multiple potentials', function (done) { this.timeout(5000); zohoCRM.createRecord(recordType[0], [{ 'Potential Name': faker.name.firstName(), Company: faker.company.companyName() }, { 'Potential Name': faker.name.firstName(), Company: faker.company.companyName() }], function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); response.data.forEach(function (record) { zohoCRM.deleteRecord(recordType[0], record.FL[0].content, function () {}); }); done(); }); }); }); describe('Get Zoho CRM records', function () { beforeEach(function () { this.callback = sinon.spy(); }); it('should get potentials with params argument', function (done) { this.timeout(5000); zohoCRM.getRecords(recordType[0], {}, function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); assert(Array.isArray(response.data.Potentials.row)); done(); }); }); it('should get potentials without params argument', function (done) { this.timeout(5000); zohoCRM.getRecords(recordType[0], function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); assert.equal(typeof response.data.Potentials.row, 'object'); done(); }); }); it('should fail when trying get a potential without id property', function () { this.timeout(5000); zohoCRM.getRecordById(recordType[0], { id: undefined }, this.callback); assert(this.callback.calledOnce); assert.notEqual(this.callback.args[0][0], null); zohoCRM.getRecordById(recordType[0], undefined, this.callback); assert(this.callback.calledTwice); assert.notEqual(this.callback.args[1][0], null); zohoCRM.getRecordById(recordType[0], {}, this.callback); assert(this.callback.calledThrice); assert.notEqual(this.callback.args[2][0], null); zohoCRM.getRecordById(recordType[0], null, this.callback); assert.notEqual(this.callback.args[3][0], null); }); it('should get a potential by id', function (done) { this.timeout(5000); zohoCRM.getRecordById(recordType[0], { id: created_id }, function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); assert(response.data.Potentials.row); done(); }); }); }); describe('Update Zoho CRM records', function () { beforeEach(function () { this.params = { 'Potential Name': faker.name.firstName(), Company: faker.company.companyName() }; this.callback = sinon.spy(); }); it('should fail when trying update a potential with id param missing', function () { this.timeout(5000); zohoCRM.updateRecord(recordType[0], undefined, this.params, this.callback); assert(this.callback.calledOnce); assert.notEqual(this.callback.args[0][0], null); zohoCRM.updateRecord(recordType[0], {}, this.params, this.callback); assert(this.callback.calledTwice); assert.notEqual(this.callback.args[1][0], null); zohoCRM.updateRecord(recordType[0], null, this.params, this.callback); assert(this.callback.calledThrice); assert.notEqual(this.callback.args[2][0], null); }); it('should fail when trying to update an account without params', function () { this.timeout(5000); zohoCRM.updateRecord(recordType[0], created_id, undefined, this.callback); assert(this.callback.calledOnce); assert.notEqual(this.callback.args[0][0], null); zohoCRM.updateRecord(recordType[0], created_id, {}, this.callback); assert(this.callback.calledTwice); assert.notEqual(this.callback.args[1][0], null); zohoCRM.updateRecord(recordType[0], created_id, null, this.callback); assert(this.callback.calledThrice); assert.notEqual(this.callback.args[2][0], null); }); it('should update a potential', function (done) { this.timeout(5000); zohoCRM.updateRecord(recordType[0], created_id, this.params, function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 0); done(); }); }); }); describe('Delete Zoho CRM records', function () { beforeEach(function () { this.callback = sinon.spy(); }); it('should fail when trying delete a potential with id param missing', function () { this.timeout(5000); zohoCRM.deleteRecord(recordType[0], undefined, this.callback); assert(this.callback.calledOnce); assert.notEqual(this.callback.args[0][0], null); zohoCRM.deleteRecord(recordType[0], {}, this.callback); assert(this.callback.calledTwice); assert.notEqual(this.callback.args[1][0], null); zohoCRM.deleteRecord(recordType[0], null, this.callback); assert(this.callback.calledThrice); assert.notEqual(this.callback.args[2][0], null); }); it('should delete a potential', function (done) { this.timeout(5000); zohoCRM.deleteRecord(recordType[0], created_id, function (error, response) { assert.equal(error, null); assert.equal(typeof response, 'object'); assert.equal(response.code, 5000); done(); }); }); }); });