gitlab 4.2.0 → 4.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +4 -2
- data/LICENSE.txt +1 -1
- data/README.md +96 -25
- data/exe/gitlab +5 -1
- data/lib/gitlab/api.rb +8 -3
- data/lib/gitlab/cli.rb +15 -15
- data/lib/gitlab/cli_helpers.rb +63 -61
- data/lib/gitlab/client/access_requests.rb +103 -0
- data/lib/gitlab/client/application_settings.rb +172 -0
- data/lib/gitlab/client/avatar.rb +21 -0
- data/lib/gitlab/client/award_emojis.rb +5 -3
- data/lib/gitlab/client/boards.rb +62 -4
- data/lib/gitlab/client/branches.rb +53 -14
- data/lib/gitlab/client/broadcast_messages.rb +75 -0
- data/lib/gitlab/client/build_variables.rb +78 -9
- data/lib/gitlab/client/builds.rb +13 -11
- data/lib/gitlab/client/commits.rb +89 -19
- data/lib/gitlab/client/container_registry.rb +85 -0
- data/lib/gitlab/client/deployments.rb +34 -0
- data/lib/gitlab/client/environments.rb +5 -3
- data/lib/gitlab/client/epic_issues.rb +23 -0
- data/lib/gitlab/client/epics.rb +73 -0
- data/lib/gitlab/client/events.rb +60 -0
- data/lib/gitlab/client/features.rb +48 -0
- data/lib/gitlab/client/group_badges.rb +88 -0
- data/lib/gitlab/client/group_boards.rb +141 -0
- data/lib/gitlab/client/group_labels.rb +88 -0
- data/lib/gitlab/client/group_milestones.rb +94 -0
- data/lib/gitlab/client/groups.rb +197 -17
- data/lib/gitlab/client/issue_links.rb +48 -0
- data/lib/gitlab/client/issues.rb +98 -4
- data/lib/gitlab/client/jobs.rb +96 -8
- data/lib/gitlab/client/keys.rb +13 -0
- data/lib/gitlab/client/labels.rb +7 -5
- data/lib/gitlab/client/lint.rb +19 -0
- data/lib/gitlab/client/markdown.rb +23 -0
- data/lib/gitlab/client/merge_request_approvals.rb +265 -0
- data/lib/gitlab/client/merge_requests.rb +237 -9
- data/lib/gitlab/client/milestones.rb +19 -5
- data/lib/gitlab/client/namespaces.rb +4 -2
- data/lib/gitlab/client/notes.rb +58 -12
- data/lib/gitlab/client/pipeline_schedules.rb +147 -0
- data/lib/gitlab/client/pipeline_triggers.rb +12 -10
- data/lib/gitlab/client/pipelines.rb +40 -3
- data/lib/gitlab/client/project_badges.rb +85 -0
- data/lib/gitlab/client/project_clusters.rb +83 -0
- data/lib/gitlab/client/project_release_links.rb +76 -0
- data/lib/gitlab/client/project_releases.rb +79 -0
- data/lib/gitlab/client/projects.rb +280 -47
- data/lib/gitlab/client/protected_tags.rb +59 -0
- data/lib/gitlab/client/remote_mirrors.rb +51 -0
- data/lib/gitlab/client/repositories.rb +60 -6
- data/lib/gitlab/client/repository_files.rb +23 -5
- data/lib/gitlab/client/repository_submodules.rb +27 -0
- data/lib/gitlab/client/resource_label_events.rb +82 -0
- data/lib/gitlab/client/resource_state_events.rb +57 -0
- data/lib/gitlab/client/runners.rb +111 -15
- data/lib/gitlab/client/search.rb +66 -0
- data/lib/gitlab/client/services.rb +4 -1
- data/lib/gitlab/client/sidekiq.rb +39 -0
- data/lib/gitlab/client/snippets.rb +8 -4
- data/lib/gitlab/client/system_hooks.rb +9 -7
- data/lib/gitlab/client/tags.rb +15 -14
- data/lib/gitlab/client/templates.rb +100 -0
- data/lib/gitlab/client/todos.rb +7 -5
- data/lib/gitlab/client/user_snippets.rb +114 -0
- data/lib/gitlab/client/users.rb +166 -30
- data/lib/gitlab/client/versions.rb +18 -0
- data/lib/gitlab/client/wikis.rb +79 -0
- data/lib/gitlab/client.rb +49 -12
- data/lib/gitlab/configuration.rb +8 -6
- data/lib/gitlab/error.rb +74 -5
- data/lib/gitlab/file_response.rb +5 -3
- data/lib/gitlab/help.rb +19 -20
- data/lib/gitlab/objectified_hash.rb +27 -10
- data/lib/gitlab/page_links.rb +11 -9
- data/lib/gitlab/paginated_response.rb +37 -24
- data/lib/gitlab/request.rb +42 -53
- data/lib/gitlab/shell.rb +11 -12
- data/lib/gitlab/shell_history.rb +11 -13
- data/lib/gitlab/version.rb +3 -1
- data/lib/gitlab.rb +19 -8
- metadata +50 -395
- data/.gitignore +0 -22
- data/.travis.yml +0 -8
- data/CONTRIBUTING.md +0 -195
- data/Gemfile +0 -4
- data/Rakefile +0 -9
- data/bin/console +0 -10
- data/bin/setup +0 -6
- data/gitlab.gemspec +0 -31
- data/spec/fixtures/board_list.json +0 -1
- data/spec/fixtures/board_lists.json +0 -1
- data/spec/fixtures/boards.json +0 -1
- data/spec/fixtures/branch.json +0 -1
- data/spec/fixtures/branch_delete.json +0 -3
- data/spec/fixtures/branches.json +0 -1
- data/spec/fixtures/build.json +0 -38
- data/spec/fixtures/build_artifacts.json +0 -0
- data/spec/fixtures/build_cancel.json +0 -24
- data/spec/fixtures/build_erase.json +0 -24
- data/spec/fixtures/build_retry.json +0 -24
- data/spec/fixtures/builds.json +0 -78
- data/spec/fixtures/builds_commits.json +0 -64
- data/spec/fixtures/compare_merge_request_diff.json +0 -31
- data/spec/fixtures/empty.json +0 -0
- data/spec/fixtures/environment.json +0 -6
- data/spec/fixtures/environments.json +0 -14
- data/spec/fixtures/error_already_exists.json +0 -1
- data/spec/fixtures/error_project_not_found.json +0 -1
- data/spec/fixtures/get_repository_file.json +0 -1
- data/spec/fixtures/group.json +0 -60
- data/spec/fixtures/group_create.json +0 -1
- data/spec/fixtures/group_create_with_description.json +0 -1
- data/spec/fixtures/group_delete.json +0 -1
- data/spec/fixtures/group_member.json +0 -1
- data/spec/fixtures/group_member_delete.json +0 -1
- data/spec/fixtures/group_member_edit.json +0 -1
- data/spec/fixtures/group_members.json +0 -1
- data/spec/fixtures/group_projects.json +0 -44
- data/spec/fixtures/group_search.json +0 -2
- data/spec/fixtures/groups.json +0 -2
- data/spec/fixtures/issue.json +0 -1
- data/spec/fixtures/issue_award_emoji.json +0 -16
- data/spec/fixtures/issue_award_emojis.json +0 -34
- data/spec/fixtures/issues.json +0 -1
- data/spec/fixtures/job.json +0 -43
- data/spec/fixtures/job_trace.json +0 -1
- data/spec/fixtures/jobs.json +0 -91
- data/spec/fixtures/key.json +0 -1
- data/spec/fixtures/keys.json +0 -1
- data/spec/fixtures/label.json +0 -1
- data/spec/fixtures/label_unsubscribe.json +0 -1
- data/spec/fixtures/labels.json +0 -1
- data/spec/fixtures/merge_request.json +0 -1
- data/spec/fixtures/merge_request_award_emoji.json +0 -16
- data/spec/fixtures/merge_request_award_emojis.json +0 -34
- data/spec/fixtures/merge_request_changes.json +0 -1
- data/spec/fixtures/merge_request_closes_issues.json +0 -1
- data/spec/fixtures/merge_request_comment.json +0 -1
- data/spec/fixtures/merge_request_comments.json +0 -1
- data/spec/fixtures/merge_request_commits.json +0 -1
- data/spec/fixtures/merge_requests.json +0 -1
- data/spec/fixtures/milestone.json +0 -1
- data/spec/fixtures/milestone_issues.json +0 -1
- data/spec/fixtures/milestone_merge_requests.json +0 -1
- data/spec/fixtures/milestones.json +0 -1
- data/spec/fixtures/namespaces.json +0 -1
- data/spec/fixtures/note.json +0 -1
- data/spec/fixtures/note_award_emoji.json +0 -16
- data/spec/fixtures/note_award_emojis.json +0 -18
- data/spec/fixtures/notes.json +0 -1
- data/spec/fixtures/pipeline.json +0 -23
- data/spec/fixtures/pipeline_cancel.json +0 -23
- data/spec/fixtures/pipeline_create.json +0 -23
- data/spec/fixtures/pipeline_jobs.json +0 -91
- data/spec/fixtures/pipeline_retry.json +0 -23
- data/spec/fixtures/pipelines.json +0 -48
- data/spec/fixtures/project.json +0 -1
- data/spec/fixtures/project_commit.json +0 -13
- data/spec/fixtures/project_commit_comment.json +0 -1
- data/spec/fixtures/project_commit_comments.json +0 -1
- data/spec/fixtures/project_commit_create.json +0 -22
- data/spec/fixtures/project_commit_diff.json +0 -10
- data/spec/fixtures/project_commit_status.json +0 -42
- data/spec/fixtures/project_commits.json +0 -1
- data/spec/fixtures/project_edit.json +0 -21
- data/spec/fixtures/project_events.json +0 -1
- data/spec/fixtures/project_for_user.json +0 -1
- data/spec/fixtures/project_fork.json +0 -50
- data/spec/fixtures/project_fork_link.json +0 -1
- data/spec/fixtures/project_forked_for_user.json +0 -50
- data/spec/fixtures/project_hook.json +0 -1
- data/spec/fixtures/project_hooks.json +0 -1
- data/spec/fixtures/project_issues.json +0 -1
- data/spec/fixtures/project_key.json +0 -6
- data/spec/fixtures/project_keys.json +0 -6
- data/spec/fixtures/project_runner_enable.json +0 -7
- data/spec/fixtures/project_runners.json +0 -16
- data/spec/fixtures/project_search.json +0 -1
- data/spec/fixtures/project_star.json +0 -44
- data/spec/fixtures/project_tag_annotated.json +0 -1
- data/spec/fixtures/project_tag_lightweight.json +0 -1
- data/spec/fixtures/project_tags.json +0 -1
- data/spec/fixtures/project_unstar.json +0 -44
- data/spec/fixtures/project_update_commit_status.json +0 -20
- data/spec/fixtures/projects.json +0 -1
- data/spec/fixtures/push_rule.json +0 -1
- data/spec/fixtures/raw_file.json +0 -2
- data/spec/fixtures/release_create.json +0 -1
- data/spec/fixtures/release_update.json +0 -1
- data/spec/fixtures/repository_file.json +0 -1
- data/spec/fixtures/run_trigger.json +0 -1
- data/spec/fixtures/runner.json +0 -26
- data/spec/fixtures/runner_delete.json +0 -7
- data/spec/fixtures/runner_edit.json +0 -26
- data/spec/fixtures/runners.json +0 -16
- data/spec/fixtures/runners_all.json +0 -30
- data/spec/fixtures/service.json +0 -1
- data/spec/fixtures/session.json +0 -1
- data/spec/fixtures/shell_history.json +0 -2
- data/spec/fixtures/snippet.json +0 -1
- data/spec/fixtures/snippet_award_emoji.json +0 -16
- data/spec/fixtures/snippet_award_emojis.json +0 -34
- data/spec/fixtures/snippet_content.json +0 -3
- data/spec/fixtures/snippets.json +0 -1
- data/spec/fixtures/system_hook.json +0 -1
- data/spec/fixtures/system_hooks.json +0 -1
- data/spec/fixtures/tag.json +0 -1
- data/spec/fixtures/tag_create.json +0 -1
- data/spec/fixtures/tag_create_with_description.json +0 -1
- data/spec/fixtures/tag_delete.json +0 -1
- data/spec/fixtures/tags.json +0 -1
- data/spec/fixtures/team_member.json +0 -1
- data/spec/fixtures/team_members.json +0 -1
- data/spec/fixtures/todo.json +0 -73
- data/spec/fixtures/todos.json +0 -148
- data/spec/fixtures/tree.json +0 -1
- data/spec/fixtures/trigger.json +0 -10
- data/spec/fixtures/triggers.json +0 -12
- data/spec/fixtures/user.json +0 -1
- data/spec/fixtures/user_block_unblock.json +0 -1
- data/spec/fixtures/user_email.json +0 -1
- data/spec/fixtures/user_emails.json +0 -1
- data/spec/fixtures/user_search.json +0 -1
- data/spec/fixtures/users.json +0 -1
- data/spec/fixtures/variable.json +0 -4
- data/spec/fixtures/variables.json +0 -10
- data/spec/gitlab/cli_helpers_spec.rb +0 -57
- data/spec/gitlab/cli_spec.rb +0 -119
- data/spec/gitlab/client/award_emojis_spec.rb +0 -391
- data/spec/gitlab/client/boards_spec.rb +0 -94
- data/spec/gitlab/client/branches_spec.rb +0 -116
- data/spec/gitlab/client/build_variables_spec.rb +0 -86
- data/spec/gitlab/client/builds_spec.rb +0 -148
- data/spec/gitlab/client/client_spec.rb +0 -11
- data/spec/gitlab/client/commits_spec.rb +0 -168
- data/spec/gitlab/client/environments_spec.rb +0 -132
- data/spec/gitlab/client/groups_spec.rb +0 -195
- data/spec/gitlab/client/issues_spec.rb +0 -186
- data/spec/gitlab/client/jobs_spec.rb +0 -135
- data/spec/gitlab/client/keys_spec.rb +0 -19
- data/spec/gitlab/client/labels_spec.rb +0 -100
- data/spec/gitlab/client/merge_requests_spec.rb +0 -224
- data/spec/gitlab/client/milestones_spec.rb +0 -98
- data/spec/gitlab/client/namespaces_spec.rb +0 -22
- data/spec/gitlab/client/notes_spec.rb +0 -333
- data/spec/gitlab/client/pipeline_triggers_spec.rb +0 -157
- data/spec/gitlab/client/pipelines_spec.rb +0 -95
- data/spec/gitlab/client/projects_spec.rb +0 -613
- data/spec/gitlab/client/repositories_spec.rb +0 -94
- data/spec/gitlab/client/repository_files_spec.rb +0 -95
- data/spec/gitlab/client/runners_spec.rb +0 -185
- data/spec/gitlab/client/services_spec.rb +0 -55
- data/spec/gitlab/client/snippets_spec.rb +0 -100
- data/spec/gitlab/client/system_hooks_spec.rb +0 -69
- data/spec/gitlab/client/tags_spec.rb +0 -109
- data/spec/gitlab/client/todos_spec.rb +0 -45
- data/spec/gitlab/client/users_spec.rb +0 -418
- data/spec/gitlab/error_spec.rb +0 -45
- data/spec/gitlab/file_response_spec.rb +0 -33
- data/spec/gitlab/help_spec.rb +0 -46
- data/spec/gitlab/objectified_hash_spec.rb +0 -48
- data/spec/gitlab/page_links_spec.rb +0 -16
- data/spec/gitlab/paginated_response_spec.rb +0 -60
- data/spec/gitlab/request_spec.rb +0 -73
- data/spec/gitlab/shell_history_spec.rb +0 -53
- data/spec/gitlab/shell_spec.rb +0 -80
- data/spec/gitlab_spec.rb +0 -97
- data/spec/spec_helper.rb +0 -74
@@ -1,57 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Gitlab::CLI::Helpers do
|
4
|
-
describe ".method_owners" do
|
5
|
-
before do
|
6
|
-
@methods = Gitlab::CLI::Helpers.method_owners
|
7
|
-
end
|
8
|
-
it "should return Array of Hashes containing method names and owners" do
|
9
|
-
expect(@methods).to be_a Array
|
10
|
-
expect(@methods.all? { |m| m.is_a? Hash }).to be true
|
11
|
-
expect(@methods.all? { |m| m.keys.sort === [:name, :owner] }).to be true
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe ".valid_command?" do
|
16
|
-
it "should return true when command is valid" do
|
17
|
-
expect(Gitlab::CLI::Helpers.valid_command? 'merge_requests').to be_truthy
|
18
|
-
end
|
19
|
-
it "should return false when command is NOT valid" do
|
20
|
-
expect(Gitlab::CLI::Helpers.valid_command? 'mmmmmerge_requests').to be_falsy
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
describe ".symbolize_keys" do
|
25
|
-
context "when input is a Hash" do
|
26
|
-
it "should return a Hash with symbols for keys" do
|
27
|
-
hash = { 'key1' => 'val1', 'key2' => 'val2' }
|
28
|
-
symbolized_hash = Gitlab::CLI::Helpers.symbolize_keys(hash)
|
29
|
-
expect(symbolized_hash).to eq(key1: 'val1', key2: 'val2')
|
30
|
-
end
|
31
|
-
end
|
32
|
-
context "when input is NOT a Hash" do
|
33
|
-
it "should return input untouched" do
|
34
|
-
array = [1, 2, 3]
|
35
|
-
new_array = Gitlab::CLI::Helpers.symbolize_keys(array)
|
36
|
-
expect(new_array).to eq([1, 2, 3])
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
describe ".yaml_load" do
|
42
|
-
context "when argument is a YAML string" do
|
43
|
-
it "should return Ruby objects" do
|
44
|
-
argument = "{foo: bar, sna: fu}"
|
45
|
-
output = Gitlab::CLI::Helpers.yaml_load argument
|
46
|
-
expect(output).to eq('foo' => 'bar', 'sna' => 'fu')
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
context "when input is NOT valid YAML" do
|
51
|
-
it "should raise" do
|
52
|
-
ruby_array = [1, 2, 3, 4]
|
53
|
-
expect { Gitlab::CLI::Helpers.yaml_load ruby_array }.to raise_error TypeError
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
data/spec/gitlab/cli_spec.rb
DELETED
@@ -1,119 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'json'
|
3
|
-
|
4
|
-
describe Gitlab::CLI do
|
5
|
-
describe ".run" do
|
6
|
-
context "when command is version" do
|
7
|
-
it "should show gem version" do
|
8
|
-
output = capture_output { Gitlab::CLI.run('-v') }
|
9
|
-
expect(output).to eq("Gitlab Ruby Gem #{Gitlab::VERSION}\n")
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
context "when command is info" do
|
14
|
-
it "should show environment info" do
|
15
|
-
output = capture_output { Gitlab::CLI.run('info') }
|
16
|
-
expect(output).to include("Gitlab endpoint is")
|
17
|
-
expect(output).to include("Gitlab private token is")
|
18
|
-
expect(output).to include("Ruby Version is")
|
19
|
-
expect(output).to include("Gitlab Ruby Gem")
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
context "when command is help" do
|
24
|
-
it "should show available actions" do
|
25
|
-
output = capture_output { Gitlab::CLI.run('help') }
|
26
|
-
expect(output).to include('Help Topics')
|
27
|
-
expect(output).to include('MergeRequests')
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context "when command is user" do
|
32
|
-
before do
|
33
|
-
stub_get("/user", "user")
|
34
|
-
@output = capture_output { Gitlab::CLI.run('user') }
|
35
|
-
end
|
36
|
-
|
37
|
-
it "should show executed command" do
|
38
|
-
expect(@output).to include('Gitlab.user')
|
39
|
-
end
|
40
|
-
|
41
|
-
it "should show user data" do
|
42
|
-
expect(@output).to include('name')
|
43
|
-
expect(@output).to include('John Smith')
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context "when command is users" do
|
48
|
-
before do
|
49
|
-
stub_get("/users", "users")
|
50
|
-
@output = capture_output { Gitlab::CLI.run('users') }
|
51
|
-
end
|
52
|
-
|
53
|
-
it "should show executed command" do
|
54
|
-
expect(@output).to include('Gitlab.users')
|
55
|
-
end
|
56
|
-
|
57
|
-
it "should show users data" do
|
58
|
-
expect(@output).to include('name')
|
59
|
-
expect(@output).to include('John Smith')
|
60
|
-
expect(@output).to include('Jack Smith')
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe ".start" do
|
66
|
-
context "when command with excluded fields" do
|
67
|
-
before do
|
68
|
-
stub_get("/user", "user")
|
69
|
-
args = ['user', '--except=id,email,name']
|
70
|
-
@output = capture_output { Gitlab::CLI.start(args) }
|
71
|
-
end
|
72
|
-
|
73
|
-
it "should show user data with excluded fields" do
|
74
|
-
expect(@output).to_not include('John Smith')
|
75
|
-
expect(@output).to include('bio')
|
76
|
-
expect(@output).to include('created_at')
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
context "when command with json output" do
|
81
|
-
before do
|
82
|
-
stub_get("/user", "user")
|
83
|
-
args = ['user', '--json']
|
84
|
-
@output = capture_output { Gitlab::CLI.start(args) }
|
85
|
-
end
|
86
|
-
|
87
|
-
it "should render output as json" do
|
88
|
-
expect(JSON.parse(@output)['result']).to eq(JSON.parse(File.read(File.dirname(__FILE__) + '/../fixtures/user.json')))
|
89
|
-
expect(JSON.parse(@output)['cmd']).to eq('Gitlab.user')
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
context "when command with required fields" do
|
94
|
-
before do
|
95
|
-
stub_get("/user", "user")
|
96
|
-
args = ['user', '--only=id,email,name']
|
97
|
-
@output = capture_output { Gitlab::CLI.start(args) }
|
98
|
-
end
|
99
|
-
|
100
|
-
it "should show user data with required fields" do
|
101
|
-
expect(@output).to include('id')
|
102
|
-
expect(@output).to include('name')
|
103
|
-
expect(@output).to include('email')
|
104
|
-
expect(@output).to include('John Smith')
|
105
|
-
expect(@output).to_not include('bio')
|
106
|
-
expect(@output).to_not include('created_at')
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
context "fetch project with namespace/repo" do
|
111
|
-
it "should encode delimiter" do
|
112
|
-
stub_get("/projects/gitlab-org%2Fgitlab-ce", "project")
|
113
|
-
args = ['project', 'gitlab-org/gitlab-ce']
|
114
|
-
@output = capture_output { Gitlab::CLI.start(args) }
|
115
|
-
expect(@output).to include('id')
|
116
|
-
end
|
117
|
-
end
|
118
|
-
end
|
119
|
-
end
|
@@ -1,391 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Gitlab::Client do
|
4
|
-
describe '.award_emojis' do
|
5
|
-
context 'when issue award emojis' do
|
6
|
-
before do
|
7
|
-
stub_get("/projects/1/issues/80/award_emoji", "issue_award_emojis")
|
8
|
-
@emojis = Gitlab.award_emojis(1, 80, 'issue')
|
9
|
-
end
|
10
|
-
|
11
|
-
it "should get the correct resources" do
|
12
|
-
expect(a_get("/projects/1/issues/80/award_emoji")).to have_been_made
|
13
|
-
end
|
14
|
-
|
15
|
-
it "should return a paginated response of issue award emojis" do
|
16
|
-
expect(@emojis).to be_a Gitlab::PaginatedResponse
|
17
|
-
expect(@emojis.first.awardable_id).to eq(80)
|
18
|
-
expect(@emojis.first.awardable_type).to eq("Issue")
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
context 'when merge request award emojis' do
|
23
|
-
before do
|
24
|
-
stub_get("/projects/1/merge_requests/80/award_emoji", "merge_request_award_emojis")
|
25
|
-
@emojis = Gitlab.award_emojis(1, 80, 'merge_request')
|
26
|
-
end
|
27
|
-
|
28
|
-
it "should get the correct resources" do
|
29
|
-
expect(a_get("/projects/1/merge_requests/80/award_emoji")).to have_been_made
|
30
|
-
end
|
31
|
-
|
32
|
-
it "should return a paginated response of merge request award emojis" do
|
33
|
-
expect(@emojis).to be_a Gitlab::PaginatedResponse
|
34
|
-
expect(@emojis.first.awardable_id).to eq(80)
|
35
|
-
expect(@emojis.first.awardable_type).to eq("MergeRequest")
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
context 'when snippet award emojis' do
|
40
|
-
before do
|
41
|
-
stub_get("/projects/1/snippets/80/award_emoji", "snippet_award_emojis")
|
42
|
-
@emojis = Gitlab.award_emojis(1, 80, 'snippet')
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should get the correct resources" do
|
46
|
-
expect(a_get("/projects/1/snippets/80/award_emoji")).to have_been_made
|
47
|
-
end
|
48
|
-
|
49
|
-
it "should return a paginated response of snippet award emojis" do
|
50
|
-
expect(@emojis).to be_a Gitlab::PaginatedResponse
|
51
|
-
expect(@emojis.first.awardable_id).to eq(80)
|
52
|
-
expect(@emojis.first.awardable_type).to eq("Snippet")
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
describe '.note_award_emojis' do
|
58
|
-
context 'when issue note award emojis' do
|
59
|
-
before do
|
60
|
-
stub_get("/projects/1/issues/80/notes/1/award_emoji", "note_award_emojis")
|
61
|
-
@note_emojis = Gitlab.note_award_emojis(1, 80, 'issue', 1)
|
62
|
-
end
|
63
|
-
|
64
|
-
it "should get the correct resources" do
|
65
|
-
expect(a_get("/projects/1/issues/80/notes/1/award_emoji")).to have_been_made
|
66
|
-
end
|
67
|
-
|
68
|
-
it "should return a paginated response of issue note award emojis" do
|
69
|
-
expect(@note_emojis).to be_a Gitlab::PaginatedResponse
|
70
|
-
expect(@note_emojis.first.awardable_id).to eq(1)
|
71
|
-
expect(@note_emojis.first.awardable_type).to eq("Note")
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
context 'when merge request note award emojis' do
|
76
|
-
before do
|
77
|
-
stub_get("/projects/1/merge_requests/80/notes/1/award_emoji", "note_award_emojis")
|
78
|
-
@note_emojis = Gitlab.note_award_emojis(1, 80, 'merge_request', 1)
|
79
|
-
end
|
80
|
-
|
81
|
-
it "should get the correct resources" do
|
82
|
-
expect(a_get("/projects/1/merge_requests/80/notes/1/award_emoji")).to have_been_made
|
83
|
-
end
|
84
|
-
|
85
|
-
it "should return a paginated response of merge request note award emojis" do
|
86
|
-
expect(@note_emojis).to be_a Gitlab::PaginatedResponse
|
87
|
-
expect(@note_emojis.first.awardable_id).to eq(1)
|
88
|
-
expect(@note_emojis.first.awardable_type).to eq("Note")
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
context 'when snippet note award emojis' do
|
93
|
-
before do
|
94
|
-
stub_get("/projects/1/snippets/80/notes/1/award_emoji", "note_award_emojis")
|
95
|
-
@note_emojis = Gitlab.note_award_emojis(1, 80, 'snippet', 1)
|
96
|
-
end
|
97
|
-
|
98
|
-
it "should get the correct resources" do
|
99
|
-
expect(a_get("/projects/1/snippets/80/notes/1/award_emoji")).to have_been_made
|
100
|
-
end
|
101
|
-
|
102
|
-
it "should return a paginated response of snippet note award emojis" do
|
103
|
-
expect(@note_emojis).to be_a Gitlab::PaginatedResponse
|
104
|
-
expect(@note_emojis.first.awardable_id).to eq(1)
|
105
|
-
expect(@note_emojis.first.awardable_type).to eq("Note")
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
describe '.award_emoji' do
|
111
|
-
context 'when issue award emoji' do
|
112
|
-
before do
|
113
|
-
stub_get("/projects/1/issues/80/award_emoji/4", "issue_award_emoji")
|
114
|
-
@emoji = Gitlab.award_emoji(1, 80, 'issue', 4)
|
115
|
-
end
|
116
|
-
|
117
|
-
it "should get the correct resource" do
|
118
|
-
expect(a_get("/projects/1/issues/80/award_emoji/4")).to have_been_made
|
119
|
-
end
|
120
|
-
|
121
|
-
it "should return information about an issue award emoji" do
|
122
|
-
expect(@emoji.id).to eq(4)
|
123
|
-
expect(@emoji.awardable_type).to eq("Issue")
|
124
|
-
expect(@emoji.awardable_id).to eq(80)
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
context 'when merge request award emoji' do
|
129
|
-
before do
|
130
|
-
stub_get("/projects/1/merge_requests/80/award_emoji/4", "merge_request_award_emoji")
|
131
|
-
@emoji = Gitlab.award_emoji(1, 80, 'merge_request', 4)
|
132
|
-
end
|
133
|
-
|
134
|
-
it "should get the correct resource" do
|
135
|
-
expect(a_get("/projects/1/merge_requests/80/award_emoji/4")).to have_been_made
|
136
|
-
end
|
137
|
-
|
138
|
-
it "should return information about a merge request award emoji" do
|
139
|
-
expect(@emoji.id).to eq(4)
|
140
|
-
expect(@emoji.awardable_type).to eq("MergeRequest")
|
141
|
-
expect(@emoji.awardable_id).to eq(80)
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
context 'when snippet award emoji' do
|
146
|
-
before do
|
147
|
-
stub_get("/projects/1/snippets/80/award_emoji/4", "snippet_award_emoji")
|
148
|
-
@emoji = Gitlab.award_emoji(1, 80, 'snippet', 4)
|
149
|
-
end
|
150
|
-
|
151
|
-
it "should get the correct resource" do
|
152
|
-
expect(a_get("/projects/1/snippets/80/award_emoji/4")).to have_been_made
|
153
|
-
end
|
154
|
-
|
155
|
-
it "should return information about a snippet award emoji" do
|
156
|
-
expect(@emoji.id).to eq(4)
|
157
|
-
expect(@emoji.awardable_type).to eq("Snippet")
|
158
|
-
expect(@emoji.awardable_id).to eq(80)
|
159
|
-
end
|
160
|
-
end
|
161
|
-
end
|
162
|
-
|
163
|
-
describe '.note_award_emoji' do
|
164
|
-
context 'when issue note award emoji' do
|
165
|
-
before do
|
166
|
-
stub_get("/projects/1/issues/80/notes/1/award_emoji/4", "note_award_emoji")
|
167
|
-
@note_emoji = Gitlab.note_award_emoji(1, 80, 'issue', 1, 4)
|
168
|
-
end
|
169
|
-
|
170
|
-
it "should get the correct resource" do
|
171
|
-
expect(a_get("/projects/1/issues/80/notes/1/award_emoji/4")).to have_been_made
|
172
|
-
end
|
173
|
-
|
174
|
-
it "should return information about an issue note award emoji" do
|
175
|
-
expect(@note_emoji.id).to eq(4)
|
176
|
-
expect(@note_emoji.awardable_type).to eq("Note")
|
177
|
-
expect(@note_emoji.awardable_id).to eq(1)
|
178
|
-
end
|
179
|
-
end
|
180
|
-
|
181
|
-
context 'when merge request note award emoji' do
|
182
|
-
before do
|
183
|
-
stub_get("/projects/1/merge_requests/80/notes/1/award_emoji/4", "note_award_emoji")
|
184
|
-
@note_emoji = Gitlab.note_award_emoji(1, 80, 'merge_request', 1, 4)
|
185
|
-
end
|
186
|
-
|
187
|
-
it "should get the correct resource" do
|
188
|
-
expect(a_get("/projects/1/merge_requests/80/notes/1/award_emoji/4")).to have_been_made
|
189
|
-
end
|
190
|
-
|
191
|
-
it "should return information about a merge request note award emoji" do
|
192
|
-
expect(@note_emoji.id).to eq(4)
|
193
|
-
expect(@note_emoji.awardable_type).to eq("Note")
|
194
|
-
expect(@note_emoji.awardable_id).to eq(1)
|
195
|
-
end
|
196
|
-
end
|
197
|
-
|
198
|
-
context 'when snippet note award emoji' do
|
199
|
-
before do
|
200
|
-
stub_get("/projects/1/snippets/80/notes/1/award_emoji/4", "note_award_emoji")
|
201
|
-
@note_emoji = Gitlab.note_award_emoji(1, 80, 'snippet', 1, 4)
|
202
|
-
end
|
203
|
-
|
204
|
-
it "should get the correct resource" do
|
205
|
-
expect(a_get("/projects/1/snippets/80/notes/1/award_emoji/4")).to have_been_made
|
206
|
-
end
|
207
|
-
|
208
|
-
it "should return information about a snippet note award emoji" do
|
209
|
-
expect(@note_emoji.id).to eq(4)
|
210
|
-
expect(@note_emoji.awardable_type).to eq("Note")
|
211
|
-
expect(@note_emoji.awardable_id).to eq(1)
|
212
|
-
end
|
213
|
-
end
|
214
|
-
end
|
215
|
-
|
216
|
-
describe '.create_award_emoji' do
|
217
|
-
context 'when issue award emoji' do
|
218
|
-
before do
|
219
|
-
stub_post("/projects/1/issues/80/award_emoji", "issue_award_emoji")
|
220
|
-
@emoji = Gitlab.create_award_emoji(1, 80, "issue", "blowfish")
|
221
|
-
end
|
222
|
-
|
223
|
-
it "should get the correct resource" do
|
224
|
-
expect(a_post("/projects/1/issues/80/award_emoji").
|
225
|
-
with(body: { name: 'blowfish' })).to have_been_made
|
226
|
-
end
|
227
|
-
|
228
|
-
it "should return correct information about the created issue award emoji" do
|
229
|
-
expect(@emoji.name).to eq('blowfish')
|
230
|
-
expect(@emoji.awardable_type).to eq('Issue')
|
231
|
-
end
|
232
|
-
end
|
233
|
-
|
234
|
-
context 'when merge request award emoji' do
|
235
|
-
before do
|
236
|
-
stub_post("/projects/1/merge_requests/80/award_emoji", "merge_request_award_emoji")
|
237
|
-
@emoji = Gitlab.create_award_emoji(1, 80, "merge_request", "blowfish")
|
238
|
-
end
|
239
|
-
|
240
|
-
it "should get the correct resource" do
|
241
|
-
expect(a_post("/projects/1/merge_requests/80/award_emoji").
|
242
|
-
with(body: { name: 'blowfish' })).to have_been_made
|
243
|
-
end
|
244
|
-
|
245
|
-
it "should return correct information about the created merge request award emoji" do
|
246
|
-
expect(@emoji.name).to eq('blowfish')
|
247
|
-
expect(@emoji.awardable_type).to eq('MergeRequest')
|
248
|
-
end
|
249
|
-
end
|
250
|
-
|
251
|
-
context 'when snippet award emoji' do
|
252
|
-
before do
|
253
|
-
stub_post("/projects/1/snippets/80/award_emoji", "snippet_award_emoji")
|
254
|
-
@emoji = Gitlab.create_award_emoji(1, 80, "snippet", "blowfish")
|
255
|
-
end
|
256
|
-
|
257
|
-
it "should get the correct resource" do
|
258
|
-
expect(a_post("/projects/1/snippets/80/award_emoji").
|
259
|
-
with(body: { name: 'blowfish' })).to have_been_made
|
260
|
-
end
|
261
|
-
|
262
|
-
it "should return correct information about the created snippet award emoji" do
|
263
|
-
expect(@emoji.name).to eq('blowfish')
|
264
|
-
expect(@emoji.awardable_type).to eq('Snippet')
|
265
|
-
end
|
266
|
-
end
|
267
|
-
end
|
268
|
-
|
269
|
-
describe '.create_note_award_emoji' do
|
270
|
-
context 'when issue note award emoji' do
|
271
|
-
before do
|
272
|
-
stub_post("/projects/1/issues/80/notes/1/award_emoji", "note_award_emoji")
|
273
|
-
@note_emoji = Gitlab.create_note_award_emoji(1, 80, "issue", 1, "mood_bubble_lightning")
|
274
|
-
end
|
275
|
-
|
276
|
-
it "should get the correct resource" do
|
277
|
-
expect(a_post("/projects/1/issues/80/notes/1/award_emoji").
|
278
|
-
with(body: { name: 'mood_bubble_lightning' })).to have_been_made
|
279
|
-
end
|
280
|
-
|
281
|
-
it "should return correct information about the created issue note award emoji" do
|
282
|
-
expect(@note_emoji.name).to eq('mood_bubble_lightning')
|
283
|
-
expect(@note_emoji.awardable_type).to eq('Note')
|
284
|
-
end
|
285
|
-
end
|
286
|
-
|
287
|
-
context 'when merge request note award emoji' do
|
288
|
-
before do
|
289
|
-
stub_post("/projects/1/merge_requests/80/notes/1/award_emoji", "note_award_emoji")
|
290
|
-
@note_emoji = Gitlab.create_note_award_emoji(1, 80, "merge_request", 1, "mood_bubble_lightning")
|
291
|
-
end
|
292
|
-
|
293
|
-
it "should get the correct resource" do
|
294
|
-
expect(a_post("/projects/1/merge_requests/80/notes/1/award_emoji").
|
295
|
-
with(body: { name: 'mood_bubble_lightning' })).to have_been_made
|
296
|
-
end
|
297
|
-
|
298
|
-
it "should return correct information about the created merge request note award emoji" do
|
299
|
-
expect(@note_emoji.name).to eq('mood_bubble_lightning')
|
300
|
-
expect(@note_emoji.awardable_type).to eq('Note')
|
301
|
-
end
|
302
|
-
end
|
303
|
-
|
304
|
-
context 'when snippet note award emoji' do
|
305
|
-
before do
|
306
|
-
stub_post("/projects/1/snippets/80/notes/1/award_emoji", "note_award_emoji")
|
307
|
-
@note_emoji = Gitlab.create_note_award_emoji(1, 80, "snippet", 1, "mood_bubble_lightning")
|
308
|
-
end
|
309
|
-
|
310
|
-
it "should get the correct resource" do
|
311
|
-
expect(a_post("/projects/1/snippets/80/notes/1/award_emoji").
|
312
|
-
with(body: { name: 'mood_bubble_lightning' })).to have_been_made
|
313
|
-
end
|
314
|
-
|
315
|
-
it "should return correct information about the created snippet note award emoji" do
|
316
|
-
expect(@note_emoji.name).to eq('mood_bubble_lightning')
|
317
|
-
expect(@note_emoji.awardable_type).to eq('Note')
|
318
|
-
end
|
319
|
-
end
|
320
|
-
end
|
321
|
-
|
322
|
-
describe '.delete_award_emoji' do
|
323
|
-
context 'when issue award emoji' do
|
324
|
-
before do
|
325
|
-
stub_delete("/projects/1/issues/80/award_emoji/4", "issue_award_emoji")
|
326
|
-
@emoji = Gitlab.delete_award_emoji(1, 80, "issue", 4)
|
327
|
-
end
|
328
|
-
|
329
|
-
it "should get the correct resource" do
|
330
|
-
expect(a_delete("/projects/1/issues/80/award_emoji/4")).to have_been_made
|
331
|
-
end
|
332
|
-
end
|
333
|
-
|
334
|
-
context 'when merge request award emoji' do
|
335
|
-
before do
|
336
|
-
stub_delete("/projects/1/merge_requests/80/award_emoji/4", "merge_request_award_emoji")
|
337
|
-
@emoji = Gitlab.delete_award_emoji(1, 80, "merge_request", 4)
|
338
|
-
end
|
339
|
-
|
340
|
-
it "should get the correct resource" do
|
341
|
-
expect(a_delete("/projects/1/merge_requests/80/award_emoji/4")).to have_been_made
|
342
|
-
end
|
343
|
-
end
|
344
|
-
|
345
|
-
context 'when snippet award emoji' do
|
346
|
-
before do
|
347
|
-
stub_delete("/projects/1/snippets/80/award_emoji/4", "snippet_award_emoji")
|
348
|
-
@emoji = Gitlab.delete_award_emoji(1, 80, "snippet", 4)
|
349
|
-
end
|
350
|
-
|
351
|
-
it "should get the correct resource" do
|
352
|
-
expect(a_delete("/projects/1/snippets/80/award_emoji/4")).to have_been_made
|
353
|
-
end
|
354
|
-
end
|
355
|
-
end
|
356
|
-
|
357
|
-
describe '.delete_note_award_emoji' do
|
358
|
-
context 'when issue note award emoji' do
|
359
|
-
before do
|
360
|
-
stub_delete("/projects/1/issues/80/notes/1/award_emoji/4", "note_award_emoji")
|
361
|
-
@note_emoji = Gitlab.delete_note_award_emoji(1, 80, "issue", 1, 4)
|
362
|
-
end
|
363
|
-
|
364
|
-
it "should get the correct resource" do
|
365
|
-
expect(a_delete("/projects/1/issues/80/notes/1/award_emoji/4")).to have_been_made
|
366
|
-
end
|
367
|
-
end
|
368
|
-
|
369
|
-
context 'when merge request note award emoji' do
|
370
|
-
before do
|
371
|
-
stub_delete("/projects/1/merge_requests/80/notes/1/award_emoji/4", "note_award_emoji")
|
372
|
-
@note_emoji = Gitlab.delete_note_award_emoji(1, 80, "merge_request", 1, 4)
|
373
|
-
end
|
374
|
-
|
375
|
-
it "should get the correct resource" do
|
376
|
-
expect(a_delete("/projects/1/merge_requests/80/notes/1/award_emoji/4")).to have_been_made
|
377
|
-
end
|
378
|
-
end
|
379
|
-
|
380
|
-
context 'when snippet note award emoji' do
|
381
|
-
before do
|
382
|
-
stub_delete("/projects/1/snippets/80/notes/1/award_emoji/4", "note_award_emoji")
|
383
|
-
@note_emoji = Gitlab.delete_note_award_emoji(1, 80, "snippet", 1, 4)
|
384
|
-
end
|
385
|
-
|
386
|
-
it "should get the correct resource" do
|
387
|
-
expect(a_delete("/projects/1/snippets/80/notes/1/award_emoji/4")).to have_been_made
|
388
|
-
end
|
389
|
-
end
|
390
|
-
end
|
391
|
-
end
|
@@ -1,94 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Gitlab::Client do
|
4
|
-
describe ".boards" do
|
5
|
-
before do
|
6
|
-
stub_get("/projects/3/boards", "boards")
|
7
|
-
@boards = Gitlab.boards(3)
|
8
|
-
end
|
9
|
-
|
10
|
-
it "should get the correct resource" do
|
11
|
-
expect(a_get("/projects/3/boards")).to have_been_made
|
12
|
-
end
|
13
|
-
|
14
|
-
it "should return a paginated response of project's boards" do
|
15
|
-
expect(@boards).to be_a Gitlab::PaginatedResponse
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
describe ".board_lists" do
|
20
|
-
before do
|
21
|
-
stub_get("/projects/3/boards/1/lists", "board_lists")
|
22
|
-
@board_lists = Gitlab.board_lists(3, 1)
|
23
|
-
end
|
24
|
-
|
25
|
-
it "should get the correct resource" do
|
26
|
-
expect(a_get("/projects/3/boards/1/lists")).to have_been_made
|
27
|
-
end
|
28
|
-
|
29
|
-
it "should return a paginated response of board's lists" do
|
30
|
-
expect(@board_lists).to be_a Gitlab::PaginatedResponse
|
31
|
-
expect(@board_lists.first.id).to eq(1)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
describe ".board_list" do
|
36
|
-
before do
|
37
|
-
stub_get("/projects/3/boards/1/lists/1", "board_list")
|
38
|
-
@board_list = Gitlab.board_list(3, 1, 1)
|
39
|
-
end
|
40
|
-
|
41
|
-
it "should get the correct resource" do
|
42
|
-
expect(a_get("/projects/3/boards/1/lists/1")).to have_been_made
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should return information about the list" do
|
46
|
-
expect(@board_list.id).to eq(1)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe ".create_board_list" do
|
51
|
-
before do
|
52
|
-
stub_post("/projects/3/boards/1/lists", "board_list")
|
53
|
-
@board_list = Gitlab.create_board_list(3, 1, 4)
|
54
|
-
end
|
55
|
-
|
56
|
-
it "should get the correct resource" do
|
57
|
-
expect(a_post("/projects/3/boards/1/lists")).to have_been_made
|
58
|
-
end
|
59
|
-
|
60
|
-
it "should return information about a created board" do
|
61
|
-
expect(@board_list.position).to eq(1)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe ".edit_board_list" do
|
66
|
-
before do
|
67
|
-
stub_put("/projects/3/boards/1/lists/1", "board_list")
|
68
|
-
@board_list = Gitlab.edit_board_list(3, 1, 1, 3)
|
69
|
-
end
|
70
|
-
|
71
|
-
it "should get the correct resource" do
|
72
|
-
expect(a_put("/projects/3/boards/1/lists/1")).to have_been_made
|
73
|
-
end
|
74
|
-
|
75
|
-
it "should return information about an edited board" do
|
76
|
-
expect(@board_list.id).to eq(1)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
describe ".delete_board_list" do
|
81
|
-
before do
|
82
|
-
stub_delete("/projects/3/boards/1/lists/1", "board_list")
|
83
|
-
@board_list = Gitlab.delete_board_list(3, 1, 1)
|
84
|
-
end
|
85
|
-
|
86
|
-
it "should get the correct resource" do
|
87
|
-
expect(a_delete("/projects/3/boards/1/lists/1")).to have_been_made
|
88
|
-
end
|
89
|
-
|
90
|
-
it "should return information about the deleted board list" do
|
91
|
-
expect(@board_list.id).to eq(1)
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|