gitlab-org--gitlab-foss/spec/frontend/api_spec.js

574 lines
16 KiB
JavaScript
Raw Normal View History

2018-01-25 16:40:31 +00:00
import MockAdapter from 'axios-mock-adapter';
import axios from '~/lib/utils/axios_utils';
import Api from '~/api';
describe('Api', () => {
const dummyApiVersion = 'v3000';
const dummyUrlRoot = '/gitlab';
const dummyGon = {
api_version: dummyApiVersion,
relative_url_root: dummyUrlRoot,
};
let originalGon;
2018-01-25 16:40:31 +00:00
let mock;
beforeEach(() => {
2018-01-25 16:40:31 +00:00
mock = new MockAdapter(axios);
originalGon = window.gon;
window.gon = Object.assign({}, dummyGon);
});
afterEach(() => {
2018-01-25 16:40:31 +00:00
mock.restore();
window.gon = originalGon;
});
describe('buildUrl', () => {
it('adds URL root and fills in API version', () => {
const input = '/api/:version/foo/bar';
const expectedOutput = `${dummyUrlRoot}/api/${dummyApiVersion}/foo/bar`;
const builtUrl = Api.buildUrl(input);
expect(builtUrl).toEqual(expectedOutput);
});
[null, '', '/'].forEach(root => {
it(`works when relative_url_root is ${root}`, () => {
window.gon.relative_url_root = root;
const input = '/api/:version/foo/bar';
const expectedOutput = `/api/${dummyApiVersion}/foo/bar`;
const builtUrl = Api.buildUrl(input);
expect(builtUrl).toEqual(expectedOutput);
});
});
});
describe('group', () => {
2018-03-26 12:18:24 +00:00
it('fetches a group', done => {
const groupId = '123456';
2018-01-30 10:52:38 +00:00
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/groups/${groupId}`;
2018-01-25 16:40:31 +00:00
mock.onGet(expectedUrl).reply(200, {
name: 'test',
});
2018-03-26 12:18:24 +00:00
Api.group(groupId, response => {
2018-01-25 16:40:31 +00:00
expect(response.name).toBe('test');
done();
});
});
});
2019-01-16 21:57:50 +00:00
describe('groupMembers', () => {
it('fetches group members', done => {
const groupId = '54321';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/groups/${groupId}/members`;
const expectedData = [{ id: 7 }];
mock.onGet(expectedUrl).reply(200, expectedData);
Api.groupMembers(groupId)
.then(({ data }) => {
expect(data).toEqual(expectedData);
})
.then(done)
.catch(done.fail);
});
});
describe('groups', () => {
2018-03-26 12:18:24 +00:00
it('fetches groups', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/groups.json`;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
2018-03-26 12:18:24 +00:00
Api.groups(query, options, response => {
2018-01-25 16:40:31 +00:00
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
});
describe('namespaces', () => {
2018-03-26 12:18:24 +00:00
it('fetches namespaces', done => {
const query = 'dummy query';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/namespaces.json`;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
2018-03-26 12:18:24 +00:00
Api.namespaces(query, response => {
2018-01-25 16:40:31 +00:00
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
});
describe('projects', () => {
2018-03-26 12:18:24 +00:00
it('fetches projects with membership when logged in', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects.json`;
window.gon.current_user_id = 1;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
2018-03-26 12:18:24 +00:00
Api.projects(query, options, response => {
2018-01-25 16:40:31 +00:00
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
2018-03-26 12:18:24 +00:00
it('fetches projects without membership when not logged in', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects.json`;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
2018-03-26 12:18:24 +00:00
Api.projects(query, options, response => {
2018-01-25 16:40:31 +00:00
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
});
describe('updateProject', () => {
it('update a project with the given payload', done => {
const projectPath = 'foo';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}`;
mock.onPut(expectedUrl).reply(200, { foo: 'bar' });
Api.updateProject(projectPath, { foo: 'bar' })
.then(({ data }) => {
expect(data.foo).toBe('bar');
done();
})
.catch(done.fail);
});
});
describe('projectUsers', () => {
it('fetches all users of a particular project', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const projectPath = 'gitlab-org%2Fgitlab-ce';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/users`;
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
Api.projectUsers('gitlab-org/gitlab-ce', query, options)
.then(response => {
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
})
.then(done)
.catch(done.fail);
});
});
describe('projectMergeRequests', () => {
const projectPath = 'abc';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/merge_requests`;
it('fetches all merge requests for a project', done => {
const mockData = [{ source_branch: 'foo' }, { source_branch: 'bar' }];
mock.onGet(expectedUrl).reply(200, mockData);
Api.projectMergeRequests(projectPath)
.then(({ data }) => {
expect(data.length).toEqual(2);
expect(data[0].source_branch).toBe('foo');
expect(data[1].source_branch).toBe('bar');
})
.then(done)
.catch(done.fail);
});
it('fetches merge requests filtered with passed params', done => {
const params = {
source_branch: 'bar',
};
const mockData = [{ source_branch: 'bar' }];
mock.onGet(expectedUrl, { params }).reply(200, mockData);
Api.projectMergeRequests(projectPath, params)
.then(({ data }) => {
expect(data.length).toEqual(1);
expect(data[0].source_branch).toBe('bar');
})
.then(done)
.catch(done.fail);
});
});
describe('projectMergeRequest', () => {
2018-03-26 12:18:24 +00:00
it('fetches a merge request', done => {
const projectPath = 'abc';
const mergeRequestId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/merge_requests/${mergeRequestId}`;
mock.onGet(expectedUrl).reply(200, {
title: 'test',
});
Api.projectMergeRequest(projectPath, mergeRequestId)
2018-03-26 12:18:24 +00:00
.then(({ data }) => {
expect(data.title).toBe('test');
})
.then(done)
.catch(done.fail);
});
});
describe('projectMergeRequestChanges', () => {
2018-03-26 12:18:24 +00:00
it('fetches the changes of a merge request', done => {
const projectPath = 'abc';
const mergeRequestId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/merge_requests/${mergeRequestId}/changes`;
mock.onGet(expectedUrl).reply(200, {
title: 'test',
});
Api.projectMergeRequestChanges(projectPath, mergeRequestId)
2018-03-26 12:18:24 +00:00
.then(({ data }) => {
expect(data.title).toBe('test');
})
.then(done)
.catch(done.fail);
});
});
describe('projectMergeRequestVersions', () => {
2018-03-26 12:18:24 +00:00
it('fetches the versions of a merge request', done => {
const projectPath = 'abc';
const mergeRequestId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/merge_requests/${mergeRequestId}/versions`;
mock.onGet(expectedUrl).reply(200, [
{
id: 123,
},
]);
Api.projectMergeRequestVersions(projectPath, mergeRequestId)
2018-03-26 12:18:24 +00:00
.then(({ data }) => {
expect(data.length).toBe(1);
expect(data[0].id).toBe(123);
})
.then(done)
.catch(done.fail);
});
});
describe('projectRunners', () => {
it('fetches the runners of a project', done => {
const projectPath = 7;
const params = { scope: 'active' };
const mockData = [{ id: 4 }];
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${projectPath}/runners`;
mock.onGet(expectedUrl, { params }).reply(200, mockData);
Api.projectRunners(projectPath, { params })
.then(({ data }) => {
expect(data).toEqual(mockData);
})
.then(done)
.catch(done.fail);
});
});
describe('newLabel', () => {
2018-03-26 12:18:24 +00:00
it('creates a new label', done => {
const namespace = 'some namespace';
const project = 'some project';
const labelData = { some: 'data' };
const expectedUrl = `${dummyUrlRoot}/${namespace}/${project}/-/labels`;
const expectedData = {
label: labelData,
};
2018-03-26 12:18:24 +00:00
mock.onPost(expectedUrl).reply(config => {
2018-01-25 16:40:31 +00:00
expect(config.data).toBe(JSON.stringify(expectedData));
2018-03-26 12:18:24 +00:00
return [
200,
{
name: 'test',
},
];
});
2018-03-26 12:18:24 +00:00
Api.newLabel(namespace, project, labelData, response => {
2018-01-25 16:40:31 +00:00
expect(response.name).toBe('test');
done();
});
});
2018-02-19 19:06:16 +00:00
2018-03-26 12:18:24 +00:00
it('creates a group label', done => {
2018-02-19 19:06:16 +00:00
const namespace = 'group/subgroup';
const labelData = { some: 'data' };
const expectedUrl = Api.buildUrl(Api.groupLabelsPath).replace(':namespace_path', namespace);
2018-02-19 19:06:16 +00:00
const expectedData = {
label: labelData,
};
2018-03-26 12:18:24 +00:00
mock.onPost(expectedUrl).reply(config => {
2018-02-19 19:06:16 +00:00
expect(config.data).toBe(JSON.stringify(expectedData));
2018-03-26 12:18:24 +00:00
return [
200,
{
name: 'test',
},
];
2018-02-19 19:06:16 +00:00
});
2018-03-26 12:18:24 +00:00
Api.newLabel(namespace, undefined, labelData, response => {
2018-02-19 19:06:16 +00:00
expect(response.name).toBe('test');
done();
});
});
});
describe('groupProjects', () => {
2018-03-26 12:18:24 +00:00
it('fetches group projects', done => {
const groupId = '123456';
const query = 'dummy query';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/groups/${groupId}/projects.json`;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
Api.groupProjects(groupId, query, {}, response => {
2018-01-25 16:40:31 +00:00
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
});
2018-10-02 23:00:38 +00:00
describe('issueTemplate', () => {
it('fetches an issue template', done => {
const namespace = 'some namespace';
const project = 'some project';
const templateKey = ' template #%?.key ';
const templateType = 'template type';
const expectedUrl = `${dummyUrlRoot}/${namespace}/${project}/templates/${templateType}/${encodeURIComponent(
templateKey,
)}`;
2018-01-25 16:40:31 +00:00
mock.onGet(expectedUrl).reply(200, 'test');
2018-10-02 23:00:38 +00:00
Api.issueTemplate(namespace, project, templateKey, templateType, (error, response) => {
2018-01-25 16:40:31 +00:00
expect(response).toBe('test');
done();
});
});
});
2018-10-02 23:00:38 +00:00
describe('projectTemplates', () => {
it('fetches a list of templates', done => {
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/gitlab-org%2Fgitlab-ce/templates/licenses`;
2018-01-25 16:40:31 +00:00
mock.onGet(expectedUrl).reply(200, 'test');
2018-10-02 23:00:38 +00:00
Api.projectTemplates('gitlab-org/gitlab-ce', 'licenses', {}, response => {
2018-01-25 16:40:31 +00:00
expect(response).toBe('test');
done();
});
});
});
2018-10-02 23:00:38 +00:00
describe('projectTemplate', () => {
it('fetches a single template', done => {
const data = { unused: 'option' };
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/gitlab-org%2Fgitlab-ce/templates/licenses/test%20license`;
2018-01-25 16:40:31 +00:00
mock.onGet(expectedUrl).reply(200, 'test');
2018-10-02 23:00:38 +00:00
Api.projectTemplate('gitlab-org/gitlab-ce', 'licenses', 'test license', data, response => {
2018-01-25 16:40:31 +00:00
expect(response).toBe('test');
done();
});
});
});
describe('users', () => {
2018-03-26 12:18:24 +00:00
it('fetches users', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/users.json`;
2018-03-26 12:18:24 +00:00
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
Api.users(query, options)
2018-01-25 16:40:31 +00:00
.then(({ data }) => {
expect(data.length).toBe(1);
expect(data[0].name).toBe('test');
})
.then(done)
.catch(done.fail);
});
});
describe('user', () => {
it('fetches single user', done => {
const userId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/users/${userId}`;
mock.onGet(expectedUrl).reply(200, {
name: 'testuser',
});
Api.user(userId)
.then(({ data }) => {
expect(data.name).toBe('testuser');
})
.then(done)
.catch(done.fail);
});
});
describe('user counts', () => {
it('fetches single user counts', done => {
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/user_counts`;
mock.onGet(expectedUrl).reply(200, {
merge_requests: 4,
});
Api.userCounts()
.then(({ data }) => {
expect(data.merge_requests).toBe(4);
})
.then(done)
.catch(done.fail);
});
});
describe('user status', () => {
it('fetches single user status', done => {
const userId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/users/${userId}/status`;
mock.onGet(expectedUrl).reply(200, {
message: 'testmessage',
});
Api.userStatus(userId)
.then(({ data }) => {
expect(data.message).toBe('testmessage');
})
.then(done)
.catch(done.fail);
});
});
describe('user projects', () => {
it('fetches all projects that belong to a particular user', done => {
const query = 'dummy query';
const options = { unused: 'option' };
const userId = '123456';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/users/${userId}/projects`;
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
Api.userProjects(userId, query, options, response => {
expect(response.length).toBe(1);
expect(response[0].name).toBe('test');
done();
});
});
});
describe('commitPipelines', () => {
it('fetches pipelines for a given commit', done => {
const projectId = 'example/foobar';
const commitSha = 'abc123def';
const expectedUrl = `${dummyUrlRoot}/${projectId}/commit/${commitSha}/pipelines`;
mock.onGet(expectedUrl).reply(200, [
{
name: 'test',
},
]);
Api.commitPipelines(projectId, commitSha)
.then(({ data }) => {
expect(data.length).toBe(1);
expect(data[0].name).toBe('test');
})
.then(done)
.catch(done.fail);
});
});
2018-06-27 09:43:26 +00:00
describe('createBranch', () => {
it('creates new branch', done => {
const ref = 'master';
const branch = 'new-branch-name';
const dummyProjectPath = 'gitlab-org/gitlab-ce';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${encodeURIComponent(
dummyProjectPath,
)}/repository/branches`;
2019-05-24 18:12:03 +00:00
jest.spyOn(axios, 'post');
2018-06-27 09:43:26 +00:00
mock.onPost(expectedUrl).replyOnce(200, {
name: branch,
});
Api.createBranch(dummyProjectPath, { ref, branch })
.then(({ data }) => {
expect(data.name).toBe(branch);
expect(axios.post).toHaveBeenCalledWith(expectedUrl, { ref, branch });
})
.then(done)
.catch(done.fail);
});
});
describe('projectForks', () => {
it('gets forked projects', done => {
const dummyProjectPath = 'gitlab-org/gitlab-ce';
const expectedUrl = `${dummyUrlRoot}/api/${dummyApiVersion}/projects/${encodeURIComponent(
dummyProjectPath,
)}/forks`;
jest.spyOn(axios, 'get');
mock.onGet(expectedUrl).replyOnce(200, ['fork']);
Api.projectForks(dummyProjectPath, { visibility: 'private' })
.then(({ data }) => {
expect(data).toEqual(['fork']);
expect(axios.get).toHaveBeenCalledWith(expectedUrl, {
params: { visibility: 'private' },
});
})
.then(done)
.catch(done.fail);
});
});
});