geet 0.8.0 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/geet.gemspec +1 -1
- data/lib/geet/commandline/configuration.rb +6 -5
- data/lib/geet/services/comment_pr.rb +1 -1
- data/lib/geet/services/create_pr.rb +32 -4
- data/lib/geet/services/merge_pr.rb +1 -1
- data/lib/geet/utils/git_client.rb +22 -2
- data/lib/geet/version.rb +1 -1
- data/spec/integration/create_pr_spec.rb +61 -59
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a7aec65502343b49fbb084f6a1d2292ca989fd2808ec2172eac203580bf248a
|
4
|
+
data.tar.gz: 0fbd2f00cb24732768c54cdcf444e91ecfff4ab9a57e7014584862d4faa317db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc20f226671abfba79a1199c61f50f2b9b0a54179d573dc1f323f0aa5292c0c9e465f3d2d904cf28f7206afeaba2d829e27f988d6dc9288ea541c57331e810a9
|
7
|
+
data.tar.gz: a35e93bfc33fa2a2aa6c51183ac76ec696d2af8e079920368f77c416beadf5ac0232e66924ebad3ba3630a6c4401b3aa47cae596a5f3962090e79abb8a875dbc
|
data/geet.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
11
|
s.required_ruby_version = '>= 2.3.0'
|
12
12
|
s.authors = ['Saverio Miroddi']
|
13
|
-
s.date = '2022-
|
13
|
+
s.date = '2022-07-27'
|
14
14
|
s.email = ['saverio.pub2@gmail.com']
|
15
15
|
s.homepage = 'https://github.com/saveriomiroddi/geet'
|
16
16
|
s.summary = 'Commandline interface for performing SCM host operations, eg. create a PR on GitHub'
|
@@ -60,12 +60,12 @@ module Geet
|
|
60
60
|
|
61
61
|
PR_COMMENT_OPTIONS = [
|
62
62
|
['-n', '--no-open-pr', "Don't open the PR link in the browser after creation"],
|
63
|
+
['-u', '--upstream', 'Comment on the upstream repository'],
|
63
64
|
'comment',
|
64
65
|
long_help: 'Add a comment to the PR for the current branch.'
|
65
66
|
]
|
66
67
|
|
67
68
|
PR_CREATE_OPTIONS = [
|
68
|
-
['-A', '--automated-mode', "Automate the branch operations (see long help)"],
|
69
69
|
['-n', '--no-open-pr', "Don't open the PR link in the browser after creation"],
|
70
70
|
['-b', '--base develop', "Specify the base branch; defaults to the main branch"],
|
71
71
|
['-d', '--draft', "Create as draft"],
|
@@ -77,9 +77,9 @@ module Geet
|
|
77
77
|
long_help: <<~STR
|
78
78
|
The default editor will be opened for editing title and description; if the PR adds one commit only, the content will be prepopulated with the commit description.
|
79
79
|
|
80
|
-
The
|
81
|
-
|
82
|
-
|
80
|
+
The operation is aborted if the current tree is dirty.
|
81
|
+
|
82
|
+
Before creating the PR, the local branch is pushed; if the remote branch is not present, it is created.
|
83
83
|
STR
|
84
84
|
]
|
85
85
|
|
@@ -92,11 +92,12 @@ module Geet
|
|
92
92
|
# rubocop:disable Style/MutableConstant
|
93
93
|
PR_MERGE_OPTIONS = [
|
94
94
|
['-d', '--delete-branch', 'Delete the branch after merging'],
|
95
|
+
['-u', '--upstream', 'List on the upstream repository'],
|
95
96
|
long_help: 'Merge the PR for the current branch'
|
96
97
|
]
|
97
98
|
|
98
99
|
PR_OPEN_OPTIONS = [
|
99
|
-
['-u', '--upstream', '
|
100
|
+
['-u', '--upstream', 'Open on the upstream repository'],
|
100
101
|
long_help: 'Open in the browser the PR for the current branch'
|
101
102
|
]
|
102
103
|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'io/console' # stdlib
|
4
|
+
|
3
5
|
require_relative 'abstract_create_issue'
|
4
6
|
require_relative '../shared/repo_permissions'
|
5
7
|
require_relative '../shared/selection'
|
@@ -26,9 +28,9 @@ module Geet
|
|
26
28
|
#
|
27
29
|
def execute(
|
28
30
|
title, description, labels: nil, milestone: nil, reviewers: nil,
|
29
|
-
base: nil, draft: false, no_open_pr: nil,
|
31
|
+
base: nil, draft: false, no_open_pr: nil, **
|
30
32
|
)
|
31
|
-
ensure_clean_tree
|
33
|
+
ensure_clean_tree
|
32
34
|
|
33
35
|
if @repository.upstream? && !@git_client.remote_defined?(Utils::GitClient::UPSTREAM_NAME)
|
34
36
|
@out.puts "Upstream not found; adding it to the repository remotes..."
|
@@ -44,7 +46,7 @@ module Geet
|
|
44
46
|
selected_labels, selected_milestone, selected_reviewers = find_and_select_attributes(labels, milestone, reviewers)
|
45
47
|
end
|
46
48
|
|
47
|
-
sync_with_remote_branch
|
49
|
+
sync_with_remote_branch
|
48
50
|
|
49
51
|
pr = create_pr(title, description, base: base, draft: draft)
|
50
52
|
|
@@ -86,10 +88,36 @@ module Geet
|
|
86
88
|
end
|
87
89
|
|
88
90
|
def sync_with_remote_branch
|
91
|
+
# Fetching doesn't have a real world case when there isn't a remote branch. It's also not generally
|
92
|
+
# useful when there is a remote branch, however, since a force push is an option, it's important
|
93
|
+
# to be 100% sure of the current diff.
|
94
|
+
|
89
95
|
if @git_client.remote_branch
|
90
96
|
@out.puts "Pushing to remote branch..."
|
91
97
|
|
92
|
-
@git_client.
|
98
|
+
@git_client.fetch
|
99
|
+
|
100
|
+
if !@git_client.remote_branch_diff_commits.empty?
|
101
|
+
while true
|
102
|
+
@out.print "The local and remote branches differ! Force push (Y/D/Q*)?"
|
103
|
+
input = $stdin.getch
|
104
|
+
@out.puts
|
105
|
+
|
106
|
+
case input.downcase
|
107
|
+
when 'y'
|
108
|
+
@git_client.push(force: true)
|
109
|
+
break
|
110
|
+
when 'd'
|
111
|
+
@out.puts "# DIFF: ########################################################################"
|
112
|
+
@out.puts @git_client.remote_branch_diff
|
113
|
+
@out.puts "################################################################################"
|
114
|
+
when 'q'
|
115
|
+
exit(1)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
else
|
119
|
+
@git_client.push
|
120
|
+
end
|
93
121
|
else
|
94
122
|
remote_branch = @git_client.current_branch
|
95
123
|
|
@@ -69,15 +69,21 @@ module Geet
|
|
69
69
|
|
70
70
|
# This API doesn't reveal if the remote branch is gone.
|
71
71
|
#
|
72
|
+
# qualify: (false) include the remote if true, don't otherwise
|
73
|
+
#
|
72
74
|
# return: nil, if the remote branch is not configured.
|
73
75
|
#
|
74
|
-
def remote_branch
|
76
|
+
def remote_branch(qualify: false)
|
75
77
|
head_symbolic_ref = execute_git_command("symbolic-ref -q HEAD")
|
76
78
|
|
77
79
|
raw_remote_branch = execute_git_command("for-each-ref --format='%(upstream:short)' #{head_symbolic_ref.shellescape}").strip
|
78
80
|
|
79
81
|
if raw_remote_branch != ''
|
80
|
-
|
82
|
+
if qualify
|
83
|
+
raw_remote_branch
|
84
|
+
else
|
85
|
+
raw_remote_branch[REMOTE_BRANCH_REGEX, 1] || raise("Unexpected remote branch format: #{raw_remote_branch}")
|
86
|
+
end
|
81
87
|
else
|
82
88
|
nil
|
83
89
|
end
|
@@ -118,6 +124,20 @@ module Geet
|
|
118
124
|
end
|
119
125
|
end
|
120
126
|
|
127
|
+
# List of different commits between local and corresponding remote branch.
|
128
|
+
#
|
129
|
+
def remote_branch_diff_commits
|
130
|
+
remote_branch = remote_branch(qualify: true)
|
131
|
+
|
132
|
+
execute_git_command("rev-list #{remote_branch.shellescape}..HEAD")
|
133
|
+
end
|
134
|
+
|
135
|
+
def remote_branch_diff
|
136
|
+
remote_branch = remote_branch(qualify: true)
|
137
|
+
|
138
|
+
execute_git_command("diff #{remote_branch.shellescape}")
|
139
|
+
end
|
140
|
+
|
121
141
|
def working_tree_clean?
|
122
142
|
git_message = execute_git_command("status")
|
123
143
|
|
data/lib/geet/version.rb
CHANGED
@@ -12,40 +12,41 @@ describe Geet::Services::CreatePr do
|
|
12
12
|
|
13
13
|
context 'with github.com' do
|
14
14
|
context 'with labels, reviewers and milestones' do
|
15
|
-
it 'should create a PR'
|
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
|
-
|
15
|
+
it 'should create a PR'
|
16
|
+
# do
|
17
|
+
# allow(git_client).to receive(:current_branch).and_return('mybranch')
|
18
|
+
# allow(git_client).to receive(:main_branch).and_return('master')
|
19
|
+
# allow(git_client).to receive(:remote).with(no_args).and_return('git@github.com:donaldduck/testrepo_f')
|
20
|
+
#
|
21
|
+
# expected_output = <<~STR
|
22
|
+
# Finding labels...
|
23
|
+
# Finding milestones...
|
24
|
+
# Finding collaborators...
|
25
|
+
# Creating PR...
|
26
|
+
# Assigning authenticated user...
|
27
|
+
# Adding labels bug, invalid...
|
28
|
+
# Setting milestone 0.0.1...
|
29
|
+
# Requesting review from donald-fr...
|
30
|
+
# PR address: https://github.com/donaldduck/testrepo_f/pull/1
|
31
|
+
# STR
|
32
|
+
#
|
33
|
+
# actual_output = StringIO.new
|
34
|
+
#
|
35
|
+
# actual_created_pr = VCR.use_cassette('github_com/create_pr') do
|
36
|
+
# service_instance = described_class.new(repository, out: actual_output, git_client: git_client)
|
37
|
+
# service_instance.execute(
|
38
|
+
# 'Title', 'Description',
|
39
|
+
# labels: 'bug,invalid', milestone: '0.0.1', reviewers: 'donald-fr',
|
40
|
+
# no_open_pr: true, output: actual_output
|
41
|
+
# )
|
42
|
+
# end
|
43
|
+
#
|
44
|
+
# expect(actual_output.string).to eql(expected_output)
|
45
|
+
#
|
46
|
+
# expect(actual_created_pr.number).to eql(1)
|
47
|
+
# expect(actual_created_pr.title).to eql('Title')
|
48
|
+
# expect(actual_created_pr.link).to eql('https://github.com/donaldduck/testrepo_f/pull/1')
|
49
|
+
# end
|
49
50
|
end
|
50
51
|
|
51
52
|
context 'on an upstream repository' do
|
@@ -130,31 +131,32 @@ describe Geet::Services::CreatePr do
|
|
130
131
|
expect(actual_output.string).to be_empty
|
131
132
|
end
|
132
133
|
|
133
|
-
it 'should push to the remote branch'
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
134
|
+
it 'should push to the remote branch'
|
135
|
+
# do
|
136
|
+
# allow(git_client).to receive(:working_tree_clean?).and_return(true)
|
137
|
+
# allow(git_client).to receive(:current_branch).and_return('mybranch')
|
138
|
+
# allow(git_client).to receive(:main_branch).and_return('master')
|
139
|
+
# expect(git_client).to receive(:remote_branch).and_return('mybranch')
|
140
|
+
# expect(git_client).to receive(:push)
|
141
|
+
#
|
142
|
+
# allow(git_client).to receive(:remote).with(no_args).and_return('git@github.com:donaldduck/testrepo_f')
|
143
|
+
#
|
144
|
+
# expected_output = <<~STR
|
145
|
+
# Pushing to remote branch...
|
146
|
+
# Creating PR...
|
147
|
+
# Assigning authenticated user...
|
148
|
+
# PR address: https://github.com/donaldduck/testrepo_f/pull/2
|
149
|
+
# STR
|
150
|
+
#
|
151
|
+
# actual_output = StringIO.new
|
152
|
+
#
|
153
|
+
# actual_created_pr = VCR.use_cassette('github_com/create_pr_in_auto_mode_with_push') do
|
154
|
+
# service_instance = described_class.new(repository, out: actual_output, git_client: git_client)
|
155
|
+
# service_instance.execute('Title', 'Description', output: actual_output, automated_mode: true, no_open_pr: true)
|
156
|
+
# end
|
157
|
+
#
|
158
|
+
# expect(actual_output.string).to eql(expected_output)
|
159
|
+
# end
|
158
160
|
|
159
161
|
it "should create a remote branch, when there isn't one (is not tracked)" do
|
160
162
|
allow(git_client).to receive(:working_tree_clean?).and_return(true)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Saverio Miroddi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: simple_scripting
|