summaryrefslogtreecommitdiff
path: root/spec/javascripts/groups/mock_data.js
blob: fea0216cb3dbde5297647861c6b81de329876c7e (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
const group1 = {
  id: 12,
  name: 'level1',
  path: 'level1',
  description: 'foo',
  visibility: 'public',
  avatar_url: null,
  web_url: 'http://localhost:3000/groups/level1',
  group_path: '/level1',
  full_name: 'level1',
  full_path: 'level1',
  parent_id: null,
  created_at: '2017-05-15T19:01:23.670Z',
  updated_at: '2017-05-15T19:01:23.670Z',
  number_projects_with_delimiter: '1',
  number_users_with_delimiter: '1',
  subgroup_count: 1,
  permissions: {
    human_group_access: 'Master',
  },
  project_count: 1,
  projects: [
    {
      id: 17,
      name: 'v4.4',
      description: 'Voluptatem qui ea error aperiam veritatis doloremque consequatur temporibus.',
      visibility: 'public',
      full_name: 'platform / hardware / bsp / kernel / common / v4.4',
      full_path: 'platform/hardware/bsp/kernel/common/v4.4',
      web_url: 'http://localhost:3000/platform/hardware/bsp/kernel/common/v4.4',
      created_at: '2017-04-09T18:43:51.578Z',
      updated_at: '2017-04-09T18:46:45.081Z',
      star_count: 0,
      can_edit: false,
      project_path: '/platform/hardware/bsp/kernel/common/v4.4',
      edit_path: '/platform/hardware/bsp/kernel/common/v4.4/edit',
      avatar_url: null,
    },
  ],
};

// This group has no direct parent, should be placed as subgroup of group1
const group14 = {
  id: 1128,
  name: 'level4',
  path: 'level4',
  description: 'foo',
  visibility: 'public',
  avatar_url: null,
  web_url: 'http://localhost:3000/groups/level1/level2/level3/level4',
  group_path: '/level1/level2/level3/level4',
  full_name: 'level1 / level2 / level3 / level4',
  full_path: 'level1/level2/level3/level4',
  parent_id: 1127,
  created_at: '2017-05-15T19:02:01.645Z',
  updated_at: '2017-05-15T19:02:01.645Z',
  number_projects_with_delimiter: '1',
  number_users_with_delimiter: '1',
  has_subgroups: true,
  permissions: {
    human_group_access: 'Master',
  },
};

const group2 = {
  id: 1119,
  name: 'devops',
  path: 'devops',
  description: 'foo',
  visibility: 'public',
  avatar_url: '/uploads/-/system/group/avatar/2/GitLab.png',
  web_url: 'http://localhost:3000/groups/devops',
  group_path: '/devops',
  full_name: 'devops',
  full_path: 'devops',
  parent_id: null,
  created_at: '2017-05-11T19:35:09.635Z',
  updated_at: '2017-05-11T19:35:09.635Z',
  number_projects_with_delimiter: '1',
  number_users_with_delimiter: '1',
  subgroup_count: 1,
  permissions: {
    human_group_access: 'Master',
  },
};

const group21 = {
  id: 1120,
  name: 'chef',
  path: 'chef',
  description: 'foo',
  visibility: 'public',
  avatar_url: '/uploads/-/system/group/avatar/2/GitLab.png',
  web_url: 'http://localhost:3000/groups/devops/chef',
  group_path: '/devops/chef',
  full_name: 'devops / chef',
  full_path: 'devops/chef',
  parent_id: 1119,
  created_at: '2017-05-11T19:51:04.060Z',
  updated_at: '2017-05-11T19:51:04.060Z',
  number_projects_with_delimiter: '1',
  number_users_with_delimiter: '1',
  subgroup_count: 1,
  permissions: {
    human_group_access: 'Master',
  },
};

const groupsData = {
  groups: [group1, group14, group2, group21],
  pagination: {
    Date: 'Mon, 22 May 2017 22:31:52 GMT',
    'X-Prev-Page': '1',
    'X-Content-Type-Options': 'nosniff',
    'X-Total': '31',
    'Transfer-Encoding': 'chunked',
    'X-Runtime': '0.611144',
    'X-Xss-Protection': '1; mode=block',
    'X-Request-Id': 'f5db8368-3ce5-4aa4-89d2-a125d9dead09',
    'X-Ua-Compatible': 'IE=edge',
    'X-Per-Page': '20',
    Link: '<http://localhost:3000/dashboard/groups.json?page=1&per_page=20>; rel="prev", <http://localhost:3000/dashboard/groups.json?page=1&per_page=20>; rel="first", <http://localhost:3000/dashboard/groups.json?page=2&per_page=20>; rel="last"',
    'X-Next-Page': '',
    Etag: 'W/"a82f846947136271cdb7d55d19ef33d2"',
    'X-Frame-Options': 'DENY',
    'Content-Type': 'application/json; charset=utf-8',
    'Cache-Control': 'max-age=0, private, must-revalidate',
    'X-Total-Pages': '2',
    'X-Page': '2',
  },
};

export { groupsData, group1 };