Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repository.js « routes « mock_server « test_helpers « frontend_integration « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5e91c9e87ec32091df406523967be1e3a24752f (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
38
import { createNewCommit, createCommitIdGenerator } from 'test_helpers/factories';

export default server => {
  const commitIdGenerator = createCommitIdGenerator();

  server.get('/api/v4/projects/:id/repository/branches', schema => {
    return schema.db.branches;
  });

  server.get('/api/v4/projects/:id/repository/branches/:name', (schema, request) => {
    const { name } = request.params;

    const branch = schema.branches.findBy({ name });

    return branch.attrs;
  });

  server.get('*/-/files/:id', schema => {
    return schema.db.files.map(({ path }) => path);
  });

  server.post('/api/v4/projects/:id/repository/commits', (schema, request) => {
    const { branch: branchName, commit_message: message, actions } = JSON.parse(
      request.requestBody,
    );

    const branch = schema.branches.findBy({ name: branchName });

    const commit = {
      ...createNewCommit({ id: commitIdGenerator.next(), message }, branch.attrs.commit),
      __actions: actions,
    };

    branch.update({ commit });

    return commit;
  });
};