Justin Dalrymple d9cd4c9a91 refactor: 💡 Migrated to a monorepo structure
Gitbeaker has been split up into 5 subpackages: gitbeaker-core, gitbeaker-node, gitbeaker-cli, gitbeaker-browser and gitbeaker-requester-utils.

gitbeaker-[node,cli,browser] are enviroment
specific sub packages. For example, if you want to use gitbeaker in a NodeJS environment, use gitbeaker-node. gitbeaker-core is where all the
base logic exists, and gitbeaker-requester-utils is a collection of utility functions for making custom requester libraries.

BREAKING CHANGE: 🧨 This migration requires users to import specific subpackages. For NodeJS
usage, that would be @gitbeaker/node.
2020-02-02 16:53:54 +01:00

98 lines
2.6 KiB
TypeScript

import { Projects } from '../../../src';
import { RequestHelper } from '../../../src/infrastructure';
jest.mock('../../../src/infrastructure/RequestHelper');
let service: Projects;
beforeEach(() => {
const requester = {
get: jest.fn(() => []),
post: jest.fn(() => ({})),
put: jest.fn(() => ({})),
};
service = new Projects({
requester,
token: 'abcdefg',
requestTimeout: 3000,
});
});
describe('Instantiating Projects service', () => {
it('should create a valid service object', async () => {
expect(service).toBeInstanceOf(Projects);
expect(service.url).toBeDefined();
expect(service.rejectUnauthorized).toBeTruthy();
expect(service.headers).toMatchObject({ 'private-token': 'abcdefg' });
});
});
describe('Projects.all', () => {
it('should request GET /projects', async () => {
await service.all();
expect(RequestHelper.get).toHaveBeenCalledWith(service, 'projects', undefined);
});
});
describe('Projects.archive', () => {
it('should request POST /projects/:id/archive', async () => {
await service.archive(12);
expect(RequestHelper.post).toHaveBeenCalledWith(service, 'projects/12/archive', undefined);
});
it('should request POST /projects/:id/archive with sudo', async () => {
await service.archive(12, { sudo: 2 });
expect(RequestHelper.post).toHaveBeenCalledWith(service, 'projects/12/archive', {
sudo: 2,
});
});
});
describe('Projects.create', () => {
it('should request POST /projects when userId undefined', async () => {
await service.create({ title: 'test proj' });
expect(RequestHelper.post).toHaveBeenCalledWith(service, 'projects', {
title: 'test proj',
});
});
it('should request POST /projects/user/:id when userId defined', async () => {
await service.create({ userId: 2, title: 'test proj' });
expect(RequestHelper.post).toHaveBeenCalledWith(service, 'projects/user/2', {
title: 'test proj',
});
});
});
describe('Projects.edit', () => {
it('should request PUT /projects', async () => {
await service.edit(12, { title: 'test proj 2' });
expect(RequestHelper.put).toHaveBeenCalledWith(service, 'projects/12', {
title: 'test proj 2',
});
});
});
describe('Projects.events', () => {
it('should request GET /projects/:id/events', async () => {
await service.events(12);
expect(RequestHelper.get).toHaveBeenCalledWith(service, 'projects/12/events', undefined);
});
});
describe('Projects.fork', () => {
it('should request POST /projects/:id/fork', async () => {
await service.fork(12);
expect(RequestHelper.post).toHaveBeenCalledWith(service, 'projects/12/fork', {});
});
});