summaryrefslogtreecommitdiff
path: root/spec/frontend/api/tags_api_spec.js
blob: a7436bf6a50290d80dc9b119af2f78a258bc227a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import MockAdapter from 'axios-mock-adapter';
import * as tagsApi from '~/api/tags_api';
import axios from '~/lib/utils/axios_utils';
import httpStatus from '~/lib/utils/http_status';

describe('~/api/tags_api.js', () => {
  let mock;
  let originalGon;

  const projectId = 1;

  beforeEach(() => {
    mock = new MockAdapter(axios);

    originalGon = window.gon;
    window.gon = { api_version: 'v7' };
  });

  afterEach(() => {
    mock.restore();
    window.gon = originalGon;
  });

  describe('getTag', () => {
    it('fetches a tag of a given tag name of a particular project', () => {
      const tagName = 'tag-name';
      const expectedUrl = `/api/v7/projects/${projectId}/repository/tags/${tagName}`;
      mock.onGet(expectedUrl).reply(httpStatus.OK, {
        name: tagName,
      });

      return tagsApi.getTag(projectId, tagName).then(({ data }) => {
        expect(data.name).toBe(tagName);
      });
    });
  });
});