vertiginous-github 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,82 @@
1
+ if RUBY_PLATFORM =~ /mswin|mingw/
2
+ begin
3
+ require 'win32/open3'
4
+ rescue LoadError
5
+ warn "You must 'gem install win32-open3' to use the github command on Windows"
6
+ exit 1
7
+ end
8
+ else
9
+ require 'open3'
10
+ end
11
+
12
+ module GitHub
13
+ class Command
14
+ def initialize(block)
15
+ (class << self;self end).send :define_method, :command, &block
16
+ end
17
+
18
+ def call(*args)
19
+ arity = method(:command).arity
20
+ args << nil while args.size < arity
21
+ send :command, *args
22
+ end
23
+
24
+ def helper
25
+ @helper ||= Helper.new
26
+ end
27
+
28
+ def options
29
+ GitHub.options
30
+ end
31
+
32
+ def pgit(*command)
33
+ puts git(*command)
34
+ end
35
+
36
+ def git(*command)
37
+ sh ['git', command].flatten.join(' ')
38
+ end
39
+
40
+ def git_exec(*command)
41
+ exec ['git', command].flatten.join(' ')
42
+ end
43
+
44
+ def sh(*command)
45
+ Shell.new(*command).run
46
+ end
47
+
48
+ def die(message)
49
+ puts "=> #{message}"
50
+ exit!
51
+ end
52
+
53
+ class Shell < String
54
+ def initialize(*command)
55
+ @command = command
56
+ end
57
+
58
+ def run
59
+ GitHub.debug "sh: #{command}"
60
+ _, out, err = Open3.popen3(*@command)
61
+
62
+ out = out.read.strip
63
+ err = err.read.strip
64
+
65
+ replace @out = out if out.any?
66
+ replace @error = err if err.any?
67
+ end
68
+
69
+ def command
70
+ @command.join(' ')
71
+ end
72
+
73
+ def error?
74
+ !!@error
75
+ end
76
+
77
+ def out?
78
+ !!@out
79
+ end
80
+ end
81
+ end
82
+ end
@@ -0,0 +1,4 @@
1
+ module GitHub
2
+ class Helper
3
+ end
4
+ end
@@ -0,0 +1,66 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe GitHub::Command do
4
+ before(:each) do
5
+ @command = GitHub::Command.new(proc { |x| puts x })
6
+ end
7
+
8
+ it "should return a GitHub::Helper" do
9
+ @command.helper.should be_instance_of(GitHub::Helper)
10
+ end
11
+
12
+ it "should call successfully" do
13
+ @command.should_receive(:puts).with("test").once
14
+ @command.call("test")
15
+ end
16
+
17
+ it "should return options" do
18
+ GitHub.should_receive(:options).with().once.and_return({:ssh => true})
19
+ @command.options.should == {:ssh => true}
20
+ end
21
+
22
+ it "should successfully call out to the shell" do
23
+ unguard(Kernel, :fork)
24
+ unguard(Kernel, :exec)
25
+ hi = @command.sh("echo hi")
26
+ hi.should == "hi"
27
+ hi.out?.should be(true)
28
+ hi.error?.should be(false)
29
+ hi.command.should == "echo hi"
30
+ bye = @command.sh("echo bye >&2")
31
+ bye.should == "bye"
32
+ bye.out?.should be(false)
33
+ bye.error?.should be(true)
34
+ bye.command.should == "echo bye >&2"
35
+ end
36
+
37
+ it "should return the results of a git operation" do
38
+ GitHub::Command::Shell.should_receive(:new).with("git rev-parse master").once.and_return do |*cmds|
39
+ s = mock("GitHub::Commands::Shell")
40
+ s.should_receive(:run).once.and_return("sha1")
41
+ s
42
+ end
43
+ @command.git("rev-parse master").should == "sha1"
44
+ end
45
+
46
+ it "should print the results of a git operation" do
47
+ @command.should_receive(:puts).with("sha1").once
48
+ GitHub::Command::Shell.should_receive(:new).with("git rev-parse master").once.and_return do |*cmds|
49
+ s = mock("GitHub::Commands::Shell")
50
+ s.should_receive(:run).once.and_return("sha1")
51
+ s
52
+ end
53
+ @command.pgit("rev-parse master")
54
+ end
55
+
56
+ it "should exec a git command" do
57
+ @command.should_receive(:exec).with("git rev-parse master").once
58
+ @command.git_exec "rev-parse master"
59
+ end
60
+
61
+ it "should die" do
62
+ @command.should_receive(:puts).once.with("=> message")
63
+ @command.should_receive(:exit!).once
64
+ @command.die "message"
65
+ end
66
+ end
@@ -0,0 +1,34 @@
1
+ require File.dirname(__FILE__) + "/spec_helper"
2
+
3
+ describe "When calling #try" do
4
+ specify "objects should return themselves" do
5
+ obj = 1; obj.try.should equal(obj)
6
+ obj = "foo"; obj.try.should equal(obj)
7
+ obj = { :foo => "bar" }; obj.try.should equal(obj)
8
+ end
9
+
10
+ specify "objects should behave as if #try wasn't called" do
11
+ "foo".try.size.should == 3
12
+ { :foo => :bar }.try.fetch(:foo).should == :bar
13
+ end
14
+
15
+ specify "nil should return the singleton NilClass::NilProxy" do
16
+ nil.try.should equal(NilClass::NilProxy)
17
+ end
18
+
19
+ specify "nil should ignore any calls made past #try" do
20
+ nil.try.size.should == nil
21
+ nil.try.sdlfj.should == nil
22
+ end
23
+
24
+ specify "classes should respond just like objects" do
25
+ String.try.should equal(String)
26
+ end
27
+ end
28
+
29
+ describe "When calling #tap" do
30
+ specify "objects should behave like Ruby 1.9's #tap" do
31
+ obj = "foo"
32
+ obj.tap { |obj| obj.size.should == 3 }.should equal(obj)
33
+ end
34
+ end
@@ -0,0 +1,51 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe "GitHub.parse_options" do
4
+ it "should parse --bare options" do
5
+ args = ["--bare", "--test"]
6
+ GitHub.parse_options(args).should == {:bare => true, :test => true}
7
+ args.should == []
8
+ end
9
+
10
+ it "should parse options intermixed with non-options" do
11
+ args = ["text", "--bare", "more text", "--option", "--foo"]
12
+ GitHub.parse_options(args).should == {:bare => true, :option => true, :foo => true}
13
+ args.should == ["text", "more text"]
14
+ end
15
+
16
+ it "should parse --foo=bar style options" do
17
+ args = ["--foo=bar", "--bare"]
18
+ GitHub.parse_options(args).should == {:bare => true, :foo => "bar"}
19
+ args.should == []
20
+ end
21
+
22
+ it "should stop parsing options at --" do
23
+ args = ["text", "--bare", "--", "--foo"]
24
+ GitHub.parse_options(args).should == {:bare => true}
25
+ args.should == ["text", "--foo"]
26
+ end
27
+
28
+ it "should handle duplicate options" do
29
+ args = ["text", "--foo=bar", "--bare", "--foo=baz"]
30
+ GitHub.parse_options(args).should == {:foo => "baz", :bare => true}
31
+ args.should == ["text"]
32
+ end
33
+
34
+ it "should handle duplicate --bare options surrounding --" do
35
+ args = ["text", "--bare", "--", "--bare"]
36
+ GitHub.parse_options(args).should == {:bare => true}
37
+ args.should == ["text", "--bare"]
38
+ end
39
+
40
+ it "should handle no options" do
41
+ args = ["text", "more text"]
42
+ GitHub.parse_options(args).should == {}
43
+ args.should == ["text", "more text"]
44
+ end
45
+
46
+ it "should handle no args" do
47
+ args = []
48
+ GitHub.parse_options(args).should == {}
49
+ args.should == []
50
+ end
51
+ end
@@ -0,0 +1,188 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ class HelperRunner
4
+ def initialize(parent, name)
5
+ @parent = parent
6
+ @name = name
7
+ end
8
+
9
+ def run(&block)
10
+ self.instance_eval(&block)
11
+ end
12
+
13
+ def it(str, &block)
14
+ @parent.send :it, "#{@name} #{str}", &block
15
+ end
16
+ alias specify it
17
+ end
18
+
19
+ describe GitHub::Helper do
20
+ include SetupMethods
21
+
22
+ def self.helper(name, &block)
23
+ HelperRunner.new(self, name).run(&block)
24
+ end
25
+
26
+ before(:each) do
27
+ @helper = GitHub::Helper.new
28
+ end
29
+
30
+ helper :owner do
31
+ it "should return repo owner" do
32
+ setup_url_for :origin, "hacker"
33
+ @helper.owner.should == "hacker"
34
+ end
35
+ end
36
+
37
+ helper :private_url_for do
38
+ it "should return ssh-style url" do
39
+ setup_url_for :origin, "user", "merb-core"
40
+ @helper.private_url_for("wycats").should == "git@github.com:wycats/merb-core.git"
41
+ end
42
+ end
43
+
44
+ helper :project do
45
+ it "should return project-awesome" do
46
+ setup_url_for :origin, "user", "project-awesome"
47
+ @helper.project.should == "project-awesome"
48
+ end
49
+
50
+ it "should exit due to missing origin" do
51
+ @helper.should_receive(:url_for).twice.with(:origin).and_return("")
52
+ STDERR.should_receive(:puts).with("Error: missing remote 'origin'")
53
+ lambda { @helper.project }.should raise_error(SystemExit)
54
+ end
55
+
56
+ it "should exit due to non-github origin" do
57
+ @helper.should_receive(:url_for).twice.with(:origin).and_return("home:path/to/repo.git")
58
+ STDERR.should_receive(:puts).with("Error: remote 'origin' is not a github URL")
59
+ lambda { @helper.project }.should raise_error(SystemExit)
60
+ end
61
+ end
62
+
63
+ helper :public_url_for do
64
+ it "should return git:// URL" do
65
+ setup_url_for :origin, "user", "merb-core"
66
+ @helper.public_url_for("wycats").should == "git://github.com/wycats/merb-core.git"
67
+ end
68
+ end
69
+
70
+ helper :repo_for do
71
+ it "should return mephisto.git" do
72
+ setup_url_for :mojombo, "mojombo", "mephisto"
73
+ @helper.repo_for(:mojombo).should == "mephisto.git"
74
+ end
75
+ end
76
+
77
+ helper :user_and_repo_from do
78
+ it "should parse a git:// url" do
79
+ @helper.user_and_repo_from("git://github.com/defunkt/github.git").should == ["defunkt", "github.git"]
80
+ end
81
+
82
+ it "should parse a ssh-based url" do
83
+ @helper.user_and_repo_from("git@github.com:mojombo/god.git").should == ["mojombo", "god.git"]
84
+ end
85
+
86
+ it "should parse a non-standard ssh-based url" do
87
+ @helper.user_and_repo_from("ssh://git@github.com:mojombo/god.git").should == ["mojombo", "god.git"]
88
+ @helper.user_and_repo_from("github.com:mojombo/god.git").should == ["mojombo", "god.git"]
89
+ @helper.user_and_repo_from("ssh://github.com:mojombo/god.git").should == ["mojombo", "god.git"]
90
+ end
91
+
92
+ it "should return nothing for other urls" do
93
+ @helper.user_and_repo_from("home:path/to/repo.git").should == nil
94
+ end
95
+
96
+ it "should return nothing for invalid git:// urls" do
97
+ @helper.user_and_repo_from("git://github.com/foo").should == nil
98
+ end
99
+
100
+ it "should return nothing for invalid ssh-based urls" do
101
+ @helper.user_and_repo_from("git@github.com:kballard").should == nil
102
+ @helper.user_and_repo_from("git@github.com:kballard/test/repo.git").should == nil
103
+ @helper.user_and_repo_from("ssh://git@github.com:kballard").should == nil
104
+ @helper.user_and_repo_from("github.com:kballard").should == nil
105
+ @helper.user_and_repo_from("ssh://github.com:kballard").should == nil
106
+ end
107
+ end
108
+
109
+ helper :user_for do
110
+ it "should return defunkt" do
111
+ setup_url_for :origin, "defunkt"
112
+ @helper.user_for(:origin).should == "defunkt"
113
+ end
114
+ end
115
+
116
+ helper :url_for do
117
+ it "should call out to the shell" do
118
+ @helper.should_receive(:`).with("git config --get remote.origin.url").and_return "git://github.com/user/project.git\n"
119
+ @helper.url_for(:origin).should == "git://github.com/user/project.git"
120
+ end
121
+ end
122
+
123
+ helper :remotes do
124
+ it "should return a list of remotes" do
125
+ @helper.should_receive(:`).with('git config --get-regexp \'^remote\.(.+)\.url$\'').and_return <<-EOF
126
+ remote.origin.url git@github.com:kballard/github-gem.git
127
+ remote.defunkt.url git://github.com/defunkt/github-gem.git
128
+ remote.nex3.url git://github.com/nex3/github-gem.git
129
+ EOF
130
+ @helper.remotes.should == {
131
+ :origin => "git@github.com:kballard/github-gem.git",
132
+ :defunkt => "git://github.com/defunkt/github-gem.git",
133
+ :nex3 => "git://github.com/nex3/github-gem.git"
134
+ }
135
+ end
136
+ end
137
+
138
+ helper :tracking do
139
+ it "should return a list of remote/user_or_url pairs" do
140
+ @helper.should_receive(:remotes).and_return({
141
+ :origin => "git@github.com:kballard/github-gem.git",
142
+ :defunkt => "git://github.com/defunkt/github-gem.git",
143
+ :external => "server:path/to/github-gem.git"
144
+ })
145
+ @helper.tracking.should == {
146
+ :origin => "kballard",
147
+ :defunkt => "defunkt",
148
+ :external => "server:path/to/github-gem.git"
149
+ }
150
+ end
151
+ end
152
+
153
+ helper :tracking? do
154
+ it "should return whether the user is tracked" do
155
+ @helper.should_receive(:tracking).any_number_of_times.and_return({
156
+ :origin => "kballard",
157
+ :defunkt => "defunkt",
158
+ :external => "server:path/to/github-gem.git"
159
+ })
160
+ @helper.tracking?("kballard").should == true
161
+ @helper.tracking?("defunkt").should == true
162
+ @helper.tracking?("nex3").should == false
163
+ end
164
+ end
165
+
166
+ helper :user_and_branch do
167
+ it "should return owner and branch for unqualified branches" do
168
+ setup_url_for
169
+ @helper.should_receive(:`).with("git rev-parse --symbolic-full-name HEAD").and_return "refs/heads/master"
170
+ @helper.user_and_branch.should == ["user", "master"]
171
+ end
172
+
173
+ it "should return user and branch for user/branch-style branches" do
174
+ @helper.should_receive(:`).with("git rev-parse --symbolic-full-name HEAD").and_return "refs/heads/defunkt/wip"
175
+ @helper.user_and_branch.should == ["defunkt", "wip"]
176
+ end
177
+ end
178
+
179
+ helper :open do
180
+ it "should launch the URL" do
181
+ Launchy::Browser.next_instance.tap do |browser|
182
+ browser.should_receive(:my_os_family).any_number_of_times.and_return :windows # avoid forking
183
+ browser.should_receive(:system).with("/usr/bin/open http://www.google.com")
184
+ end
185
+ @helper.open "http://www.google.com"
186
+ end
187
+ end
188
+ end
@@ -0,0 +1,133 @@
1
+ require 'rubygems'
2
+ require 'spec'
3
+
4
+ require File.dirname(__FILE__) + '/../lib/github'
5
+
6
+ class Module
7
+ def metaclass
8
+ class << self;self;end
9
+ end
10
+ end
11
+
12
+ class Spec::NextInstanceProxy
13
+ def initialize
14
+ @deferred = []
15
+ end
16
+
17
+ def method_missing(sym, *args)
18
+ proxy = Spec::NextInstanceProxy.new
19
+ @deferred << [sym, args, proxy]
20
+ proxy
21
+ end
22
+
23
+ def should_receive(*args)
24
+ method_missing(:should_receive, *args)
25
+ end
26
+ alias stub! should_receive
27
+
28
+ def invoke(obj)
29
+ @deferred.each do |(sym, args, proxy)|
30
+ result = obj.send(sym, *args)
31
+ proxy.invoke(result)
32
+ end
33
+ end
34
+ end
35
+
36
+ class Class
37
+ def next_instance
38
+ meth = metaclass.instance_method(:new)
39
+ proxy = Spec::NextInstanceProxy.new
40
+ metaclass.send :define_method, :new do |*args|
41
+ instance = meth.bind(self).call(*args)
42
+ proxy.invoke(instance)
43
+ metaclass.send :define_method, :new, meth
44
+ instance
45
+ end
46
+ proxy
47
+ end
48
+ end
49
+
50
+ module Spec::Example::ExampleGroupSubclassMethods
51
+ def add_guard(klass, name, is_class = false)
52
+ guarded = nil # define variable now for scoping
53
+ target = (is_class ? klass.metaclass : klass)
54
+ sep = (is_class ? "." : "#")
55
+ target.class_eval do
56
+ guarded = instance_method(name)
57
+ define_method name do |*args|
58
+ raise "Testing guards violated: Cannot call #{klass}#{sep}#{name}"
59
+ end
60
+ end
61
+ @guards ||= []
62
+ @guards << [klass, name, is_class, guarded]
63
+ end
64
+
65
+ def add_class_guard(klass, name)
66
+ add_guard(klass, name, true)
67
+ end
68
+
69
+ def unguard(klass, name, is_class = false)
70
+ row = @guards.find { |(k,n,i)| k == klass and n == name and i == is_class }
71
+ raise "#{klass}#{is_class ? "." : "#"}#{name} is not guarded" if row.nil?
72
+ (is_class ? klass.metaclass : klass).class_eval do
73
+ define_method name, row.last
74
+ end
75
+ @guards.delete row
76
+ end
77
+
78
+ def class_unguard(klass, name)
79
+ unguard(klass, name, true)
80
+ end
81
+
82
+ def unguard_all
83
+ @guards ||= []
84
+ @guards.each do |klass, name, is_class, guarded|
85
+ (is_class ? klass.metaclass : klass).class_eval do
86
+ define_method name, guarded
87
+ end
88
+ end
89
+ @guards.clear
90
+ end
91
+ end
92
+
93
+ # prevent the use of `` in tests
94
+ Spec::Runner.configure do |configuration|
95
+ # load this here so it's covered by the `` guard
96
+ configuration.prepend_before(:all) do
97
+ module GitHub
98
+ load 'helpers.rb'
99
+ load 'commands.rb'
100
+ end
101
+ end
102
+
103
+ configuration.prepend_before(:all) do
104
+ self.class.send :include, Spec::Example::ExampleGroupSubclassMethods
105
+ end
106
+
107
+ configuration.prepend_before(:each) do
108
+ add_guard Kernel, :`
109
+ add_guard Kernel, :system
110
+ add_guard Kernel, :fork
111
+ add_guard Kernel, :exec
112
+ add_class_guard Process, :fork
113
+ end
114
+
115
+ configuration.append_after(:each) do
116
+ unguard_all
117
+ end
118
+ end
119
+
120
+ # include this in any example group that defines @helper
121
+ module SetupMethods
122
+ def setup_user_and_branch(user = :user, branch = :master)
123
+ @helper.should_receive(:user_and_branch).any_number_of_times.and_return([user, branch])
124
+ end
125
+
126
+ def setup_url_for(remote = :origin, user = nil, project = :project)
127
+ if user.nil?
128
+ user = remote
129
+ user = "user" if remote == :origin
130
+ end
131
+ @helper.should_receive(:url_for).any_number_of_times.with(remote).and_return("git://github.com/#{user}/#{project}.git")
132
+ end
133
+ end