Skip to content

Commit

Permalink
converted organization_fields
Browse files Browse the repository at this point in the history
  • Loading branch information
androozka committed Dec 23, 2019
1 parent 840e6e6 commit 16c5480
Show file tree
Hide file tree
Showing 4 changed files with 270 additions and 114 deletions.
135 changes: 135 additions & 0 deletions src/api/support/organization_fields.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
const Joi = require('@hapi/joi');
const { validate, prepare } = require('../../utils/options');

// Validation
const _id = Joi.number().min(1);
const _data = Joi.object();

// Initialize Endpoint
module.exports = (options = {}) => {
const { error } = validate(options);
if (error) throw new Error(error.details[0].message);

const { url, headers } = prepare(options);

return {
/**
* List Organization Fields
*
* GET /api/v2/organization_fields.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#list-organization-fields
*/
list: () => {
// Ignore any options
return {
method: 'GET',
url: `${url}/api/v2/organization_fields.json`,
headers
};
},

/**
* Show Organization Field
*
* GET /api/v2/organization_fields/{id}.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#show-organization-field
*/
show: (options = {}) => {
const { error } = Joi.object({
id: _id.required()
}).validate(options);
if (error) throw new Error(error.details[0].message);

const { id } = options;
return {
method: 'GET',
url: `${url}/api/v2/organization_fields/${id}.json`,
headers
};
},

/**
* Create Organization Fields
*
* POST /api/v2/organization_fields.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#create-organization-fields
*/
create: (options = {}) => {
const { error } = Joi.object({
data: _data.required()
}).validate(options);
if (error) throw new Error(error.details[0].message);

const { data } = options;
return {
method: 'POST',
url: `${url}/api/v2/organization_fields.json`,
headers,
data
};
},

/**
* Update Organization Fields
*
* PUT /api/v2/organization_fields/{id}.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#update-organization-fields
*/
update: (options = {}) => {
const { error } = Joi.object({
id: _id.required(),
data: _data.required()
}).validate(options);
if (error) throw new Error(error.details[0].message);

const { id, data } = options;
return {
method: 'PUT',
url: `${url}/api/v2/organization_fields/${id}.json`,
headers,
data
};
},

/**
* Delete Organization Field
*
* DELETE /api/v2/organization_fields/{id}.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#delete-organization-field
*/
delete: (options = {}) => {
const { error } = Joi.object({
id: _id.required()
}).validate(options);
if (error) throw new Error(error.details[0].message);

const { id } = options;
return {
method: 'DELETE',
url: `${url}/api/v2/organization_fields/${id}.json`,
headers
};
},

/**
* Reorder Organization Field
*
* PUT /api/v2/organization_fields/reorder.json
* https://developer.zendesk.com/rest_api/docs/support/organization_fields#reorder-organization-field
*/
reorder: (options = {}) => {
const { error } = Joi.object({
data: _data.required()
}).validate(options);
if (error) throw new Error(error.details[0].message);

const { data } = options;
return {
method: 'PUT',
url: `${url}/api/v2/organization_fields/reorder.json`,
headers,
data
};
}
};
};
80 changes: 0 additions & 80 deletions src/api/support/organization_fields/index.js

This file was deleted.

34 changes: 0 additions & 34 deletions src/api/support/organization_fields/validate.js

This file was deleted.

135 changes: 135 additions & 0 deletions tests/api/support/organization_fields.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
const endpoint = require('../../../src/api/support/organization_fields');
const { prepare } = require('../../../src/utils/options');

describe('organizations', () => {
let endPoint, options, url, headers;

beforeEach(() => {
options = {
instance: 'instance',
email: 'user@email.com',
token: 'token'
};
endPoint = endpoint(options);
({ url, headers } = prepare(options));
});

afterEach(() => {
options = null;
endPoint = null;
url = null;
headers = null;
});

describe('init', () => {
it('should setup endpoint object', () => {
const ep = endpoint(options);
expect(ep).toBeTruthy();
});

it('should fail with invalid input', () => {
expect(() => endpoint()).toThrowError();
expect(() => endpoint({})).toThrowError();
});
});

describe('list organization fields', () => {
it('should process without input', () => {
expect(endPoint.list()).toEqual({
method: 'GET',
url: `${url}/api/v2/organization_fields.json`,
headers
});
});
});

describe('show organization field', () => {
it('should process w/ valid input', () => {
expect(endPoint.show({ id: 123 })).toEqual({
method: 'GET',
url: `${url}/api/v2/organization_fields/123.json`,
headers
});
});

it('should throw error w/ invalid input', () => {
expect(() => endPoint.show()).toThrowError();
expect(() => endPoint.show({})).toThrowError();
expect(() => endPoint.show('invalid')).toThrowError();
expect(() => endPoint.show({ id: 0 })).toThrowError();
expect(() => endPoint.show({ id: 'invalid' })).toThrowError();
});
});

describe('create organization fields', () => {
it('should process w/ valid input', () => {
expect(endPoint.create({ data: {} })).toEqual({
method: 'POST',
url: `${url}/api/v2/organization_fields.json`,
headers,
data: {}
});
});

it('should throw error w/ invalid input', () => {
expect(() => endPoint.create()).toThrowError();
expect(() => endPoint.create({})).toThrowError();
expect(() => endPoint.create('invalid')).toThrowError();
expect(() => endPoint.create({ ids: 'invalid' })).toThrowError();
});
});

describe('update organization fields', () => {
it('should process w/ valid input', () => {
expect(endPoint.update({ id: 123, data: {} })).toEqual({
method: 'PUT',
url: `${url}/api/v2/organization_fields/123.json`,
headers,
data: {}
});
});

it('should throw error w/ invalid input', () => {
expect(() => endPoint.update()).toThrowError();
expect(() => endPoint.update({})).toThrowError();
expect(() => endPoint.update('invalid')).toThrowError();
expect(() => endPoint.update({ data: 'invalid' })).toThrowError();
});
});

describe('delete organization fields', () => {
it('should process w/ valid input', () => {
expect(endPoint.delete({ id: 123 })).toEqual({
method: 'DELETE',
url: `${url}/api/v2/organization_fields/123.json`,
headers
});
});

it('should throw error w/ invalid input', () => {
expect(() => endPoint.delete()).toThrowError();
expect(() => endPoint.delete({})).toThrowError();
expect(() => endPoint.delete('invalid')).toThrowError();
expect(() => endPoint.delete({ id: 0 })).toThrowError();
expect(() => endPoint.delete({ id: 'invalid' })).toThrowError();
});
});

describe('reorder organization field', () => {
it('should process w/ valid input', () => {
expect(endPoint.reorder({ data: {} })).toEqual({
method: 'PUT',
url: `${url}/api/v2/organization_fields/reorder.json`,
headers,
data: {}
});
});

it('should throw error w/ invalid input', () => {
expect(() => endPoint.reorder()).toThrowError();
expect(() => endPoint.reorder({})).toThrowError();
expect(() => endPoint.reorder('invalid')).toThrowError();
expect(() => endPoint.reorder({ data: 'invalid' })).toThrowError();
});
});
});

0 comments on commit 16c5480

Please sign in to comment.