travis 1.11.1 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -3
- data/Rakefile +22 -20
- data/bin/travis +5 -3
- data/examples/org_overview.rb +2 -0
- data/examples/pro_auth.rb +3 -1
- data/examples/stream.rb +5 -3
- data/lib/travis/auto_login.rb +2 -0
- data/lib/travis/cli/accounts.rb +12 -9
- data/lib/travis/cli/api_command.rb +85 -81
- data/lib/travis/cli/branches.rb +8 -6
- data/lib/travis/cli/cache.rb +48 -44
- data/lib/travis/cli/cancel.rb +4 -2
- data/lib/travis/cli/command.rb +170 -142
- data/lib/travis/cli/console.rb +5 -5
- data/lib/travis/cli/disable.rb +4 -2
- data/lib/travis/cli/enable.rb +14 -12
- data/lib/travis/cli/encrypt.rb +57 -57
- data/lib/travis/cli/encrypt_file.rb +29 -18
- data/lib/travis/cli/endpoint.rb +9 -7
- data/lib/travis/cli/env.rb +13 -8
- data/lib/travis/cli/help.rb +10 -8
- data/lib/travis/cli/history.rb +19 -15
- data/lib/travis/cli/init.rb +27 -24
- data/lib/travis/cli/lint.rb +10 -8
- data/lib/travis/cli/login.rb +17 -11
- data/lib/travis/cli/logout.rb +4 -2
- data/lib/travis/cli/logs.rb +28 -19
- data/lib/travis/cli/monitor.rb +11 -8
- data/lib/travis/cli/open.rb +17 -14
- data/lib/travis/cli/parser.rb +2 -0
- data/lib/travis/cli/pubkey.rb +13 -11
- data/lib/travis/cli/raw.rb +4 -3
- data/lib/travis/cli/repo_command.rb +123 -112
- data/lib/travis/cli/report.rb +40 -33
- data/lib/travis/cli/repos.rb +14 -9
- data/lib/travis/cli/requests.rb +13 -12
- data/lib/travis/cli/restart.rb +4 -2
- data/lib/travis/cli/settings.rb +41 -35
- data/lib/travis/cli/setup/anynines.rb +7 -6
- data/lib/travis/cli/setup/appfog.rb +6 -4
- data/lib/travis/cli/setup/artifacts.rb +7 -5
- data/lib/travis/cli/setup/biicode.rb +6 -4
- data/lib/travis/cli/setup/cloud_66.rb +6 -4
- data/lib/travis/cli/setup/cloud_control.rb +8 -6
- data/lib/travis/cli/setup/cloud_files.rb +7 -5
- data/lib/travis/cli/setup/cloud_foundry.rb +9 -7
- data/lib/travis/cli/setup/code_deploy.rb +33 -29
- data/lib/travis/cli/setup/deis.rb +8 -6
- data/lib/travis/cli/setup/divshot.rb +20 -18
- data/lib/travis/cli/setup/elastic_beanstalk.rb +10 -8
- data/lib/travis/cli/setup/engine_yard.rb +9 -7
- data/lib/travis/cli/setup/gcs.rb +9 -7
- data/lib/travis/cli/setup/hackage.rb +6 -4
- data/lib/travis/cli/setup/heroku.rb +10 -4
- data/lib/travis/cli/setup/modulus.rb +5 -3
- data/lib/travis/cli/setup/ninefold.rb +7 -5
- data/lib/travis/cli/setup/nodejitsu.rb +6 -4
- data/lib/travis/cli/setup/npm.rb +6 -4
- data/lib/travis/cli/setup/open_shift.rb +8 -6
- data/lib/travis/cli/setup/opsworks.rb +24 -22
- data/lib/travis/cli/setup/pypi.rb +7 -5
- data/lib/travis/cli/setup/releases.rb +6 -6
- data/lib/travis/cli/setup/ruby_gems.rb +7 -5
- data/lib/travis/cli/setup/s3.rb +12 -8
- data/lib/travis/cli/setup/sauce_connect.rb +7 -5
- data/lib/travis/cli/setup/service.rb +36 -25
- data/lib/travis/cli/setup.rb +7 -3
- data/lib/travis/cli/show.rb +10 -8
- data/lib/travis/cli/sshkey.rb +31 -27
- data/lib/travis/cli/status.rb +5 -3
- data/lib/travis/cli/sync.rb +9 -7
- data/lib/travis/cli/token.rb +4 -2
- data/lib/travis/cli/version.rb +4 -3
- data/lib/travis/cli/whatsup.rb +10 -8
- data/lib/travis/cli/whoami.rb +2 -2
- data/lib/travis/cli.rb +39 -36
- data/lib/travis/client/account.rb +8 -6
- data/lib/travis/client/artifact.rb +16 -12
- data/lib/travis/client/auto_login.rb +7 -4
- data/lib/travis/client/broadcast.rb +2 -0
- data/lib/travis/client/build.rb +7 -3
- data/lib/travis/client/cache.rb +4 -2
- data/lib/travis/client/commit.rb +5 -2
- data/lib/travis/client/entity.rb +50 -46
- data/lib/travis/client/env_var.rb +13 -8
- data/lib/travis/client/error.rb +5 -3
- data/lib/travis/client/has_uuid.rb +3 -1
- data/lib/travis/client/job.rb +8 -3
- data/lib/travis/client/lint_result.rb +2 -0
- data/lib/travis/client/listener.rb +70 -55
- data/lib/travis/client/methods.rb +10 -5
- data/lib/travis/client/namespace.rb +20 -16
- data/lib/travis/client/not_loadable.rb +3 -1
- data/lib/travis/client/repository.rb +34 -22
- data/lib/travis/client/request.rb +5 -2
- data/lib/travis/client/restartable.rb +2 -0
- data/lib/travis/client/session.rb +118 -88
- data/lib/travis/client/settings.rb +8 -3
- data/lib/travis/client/singleton_setting.rb +2 -0
- data/lib/travis/client/ssh_key.rb +2 -0
- data/lib/travis/client/states.rb +8 -6
- data/lib/travis/client/user.rb +2 -0
- data/lib/travis/client/weak_entity.rb +6 -3
- data/lib/travis/client.rb +4 -1
- data/lib/travis/pro/auto_login.rb +2 -0
- data/lib/travis/pro.rb +2 -0
- data/lib/travis/tools/assets.rb +6 -3
- data/lib/travis/tools/completion.rb +10 -6
- data/lib/travis/tools/formatter.rb +20 -14
- data/lib/travis/tools/github.rb +59 -49
- data/lib/travis/tools/notification.rb +18 -13
- data/lib/travis/tools/safe_string.rb +4 -1
- data/lib/travis/tools/ssl_key.rb +5 -2
- data/lib/travis/tools/system.rb +11 -6
- data/lib/travis/version.rb +3 -1
- data/lib/travis.rb +3 -1
- data/spec/cli/api_command_spec.rb +11 -8
- data/spec/cli/cancel_spec.rb +2 -4
- data/spec/cli/encrypt_file_spec.rb +9 -7
- data/spec/cli/encrypt_spec.rb +19 -17
- data/spec/cli/endpoint_spec.rb +12 -10
- data/spec/cli/help_spec.rb +14 -12
- data/spec/cli/history_spec.rb +2 -0
- data/spec/cli/init_spec.rb +35 -33
- data/spec/cli/logs_spec.rb +2 -0
- data/spec/cli/open_spec.rb +6 -4
- data/spec/cli/repo_command_spec.rb +8 -4
- data/spec/cli/restart_spec.rb +2 -4
- data/spec/cli/setup/service_spec.rb +17 -18
- data/spec/cli/setup_spec.rb +2 -4
- data/spec/cli/show_spec.rb +4 -2
- data/spec/cli/status_spec.rb +7 -5
- data/spec/cli/token_spec.rb +7 -5
- data/spec/cli/version_spec.rb +2 -0
- data/spec/cli/whoami_spec.rb +9 -7
- data/spec/client/account_spec.rb +28 -20
- data/spec/client/auto_login_spec.rb +12 -9
- data/spec/client/broadcast_spec.rb +5 -3
- data/spec/client/build_spec.rb +28 -24
- data/spec/client/commit_spec.rb +17 -14
- data/spec/client/job_spec.rb +27 -23
- data/spec/client/methods_spec.rb +8 -4
- data/spec/client/namespace_spec.rb +8 -4
- data/spec/client/repository_spec.rb +33 -30
- data/spec/client/session_spec.rb +71 -67
- data/spec/client/user_spec.rb +13 -10
- data/spec/client_spec.rb +6 -4
- data/spec/pro_spec.rb +5 -3
- data/spec/spec_helper.rb +3 -1
- data/spec/support/fake_api.rb +662 -662
- data/spec/support/fake_github.rb +6 -3
- data/spec/support/helpers.rb +13 -8
- data/spec/travis_spec.rb +5 -3
- data/travis.gemspec +400 -399
- metadata +30 -50
data/spec/cli/help_spec.rb
CHANGED
@@ -1,33 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Help do
|
4
|
-
example
|
6
|
+
example 'travis help' do
|
5
7
|
run_cli('help').should be_success
|
6
|
-
stdout.should include(
|
8
|
+
stdout.should include('Usage: travis COMMAND')
|
7
9
|
end
|
8
10
|
|
9
|
-
example
|
11
|
+
example 'travis --help' do
|
10
12
|
run_cli('--help').should be_success
|
11
|
-
stdout.should include(
|
13
|
+
stdout.should include('Usage: travis COMMAND')
|
12
14
|
end
|
13
15
|
|
14
|
-
example
|
16
|
+
example 'travis -h' do
|
15
17
|
run_cli('-h').should be_success
|
16
|
-
stdout.should include(
|
18
|
+
stdout.should include('Usage: travis COMMAND')
|
17
19
|
end
|
18
20
|
|
19
|
-
example
|
21
|
+
example 'travis -?' do
|
20
22
|
run_cli('-?').should be_success
|
21
|
-
stdout.should include(
|
23
|
+
stdout.should include('Usage: travis COMMAND')
|
22
24
|
end
|
23
25
|
|
24
|
-
example
|
26
|
+
example 'travis help endpoint' do
|
25
27
|
run_cli('help', 'endpoint').should be_success
|
26
|
-
stdout.should include(
|
28
|
+
stdout.should include('Usage: travis endpoint [OPTIONS]')
|
27
29
|
end
|
28
30
|
|
29
|
-
example
|
31
|
+
example 'travis endpoint --help' do
|
30
32
|
run_cli('endpoint', '--help').should be_success
|
31
|
-
stdout.should include(
|
33
|
+
stdout.should include('Usage: travis endpoint [OPTIONS]')
|
32
34
|
end
|
33
35
|
end
|
data/spec/cli/history_spec.rb
CHANGED
data/spec/cli/init_spec.rb
CHANGED
@@ -1,20 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Init do
|
4
6
|
old_path = Dir.pwd
|
5
7
|
tmp_path = File.expand_path('travis-spec-init', Dir.tmpdir)
|
6
8
|
|
7
|
-
before
|
9
|
+
before do
|
8
10
|
FileUtils.mkdir_p(tmp_path)
|
9
11
|
Dir.chdir(tmp_path)
|
10
12
|
FileUtils.rm('.travis.yml') if File.exist?('.travis.yml')
|
11
13
|
end
|
12
14
|
|
13
|
-
after
|
15
|
+
after do
|
14
16
|
Dir.chdir(old_path)
|
15
17
|
end
|
16
18
|
|
17
|
-
example
|
19
|
+
example 'travis init fakelanguage' do
|
18
20
|
run_cli('init', 'fakelanguage', '--skip-enable', '-r', 'travis-ci/travis.rb').should_not be_success
|
19
21
|
stderr.should be == "unknown language fakelanguage\n"
|
20
22
|
end
|
@@ -29,28 +31,28 @@ describe Travis::CLI::Init do
|
|
29
31
|
end
|
30
32
|
|
31
33
|
example "travis init #{language} (.travis.yml already exists, using --force)" do
|
32
|
-
File.open(
|
34
|
+
File.open('.travis.yml', 'w') { |f| f << 'old file' }
|
33
35
|
run_cli('init', language, '--force', '--skip-enable', '-r', 'travis-ci/travis.rb').should be_success
|
34
36
|
stdout.should be == ".travis.yml file created!\n"
|
35
|
-
File.read(
|
37
|
+
File.read('.travis.yml').should_not be == 'old file'
|
36
38
|
end
|
37
39
|
|
38
40
|
example "travis init #{language} (.travis.yml already exists, not using --force)" do
|
39
|
-
File.open(
|
41
|
+
File.open('.travis.yml', 'w') { |f| f << 'old file' }
|
40
42
|
run_cli('init', language, '--skip-enable', '-r', 'travis-ci/travis.rb').should_not be_success
|
41
43
|
stderr.should be == ".travis.yml already exists, use --force to override\n"
|
42
|
-
File.read('.travis.yml').should be ==
|
44
|
+
File.read('.travis.yml').should be == 'old file'
|
43
45
|
end
|
44
46
|
end
|
45
47
|
|
46
48
|
describe 'travis init c' do
|
47
|
-
it_should_behave_like 'travis init', 'c'
|
48
|
-
|
49
49
|
let :result do
|
50
50
|
run_cli('init', 'c', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
51
51
|
YAML.load_file('.travis.yml')
|
52
52
|
end
|
53
53
|
|
54
|
+
it_behaves_like 'travis init', 'c'
|
55
|
+
|
54
56
|
it 'sets compiler' do
|
55
57
|
result.should include('compiler')
|
56
58
|
result['compiler'].should include('clang')
|
@@ -59,17 +61,17 @@ describe Travis::CLI::Init do
|
|
59
61
|
end
|
60
62
|
|
61
63
|
describe 'travis init clojure' do
|
62
|
-
|
64
|
+
it_behaves_like 'travis init', 'clojure'
|
63
65
|
end
|
64
66
|
|
65
67
|
describe 'travis init cpp' do
|
66
|
-
it_should_behave_like 'travis init', 'cpp'
|
67
|
-
|
68
68
|
let :result do
|
69
69
|
run_cli('init', 'cpp', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
70
70
|
YAML.load_file('.travis.yml')
|
71
71
|
end
|
72
72
|
|
73
|
+
it_behaves_like 'travis init', 'cpp'
|
74
|
+
|
73
75
|
it 'sets compiler' do
|
74
76
|
result.should include('compiler')
|
75
77
|
result['compiler'].should include('clang')
|
@@ -78,13 +80,13 @@ describe Travis::CLI::Init do
|
|
78
80
|
end
|
79
81
|
|
80
82
|
describe 'travis init erlang' do
|
81
|
-
it_should_behave_like 'travis init', 'erlang'
|
82
|
-
|
83
83
|
let :result do
|
84
84
|
run_cli('init', 'erlang', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
85
85
|
YAML.load_file('.travis.yml')
|
86
86
|
end
|
87
87
|
|
88
|
+
it_behaves_like 'travis init', 'erlang'
|
89
|
+
|
88
90
|
it 'sets compiler' do
|
89
91
|
result.should include('otp_release')
|
90
92
|
result['otp_release'].should include('R16B')
|
@@ -92,13 +94,13 @@ describe Travis::CLI::Init do
|
|
92
94
|
end
|
93
95
|
|
94
96
|
describe 'travis init go' do
|
95
|
-
it_should_behave_like 'travis init', 'go'
|
96
|
-
|
97
97
|
let :result do
|
98
98
|
run_cli('init', 'go', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
99
99
|
YAML.load_file('.travis.yml')
|
100
100
|
end
|
101
101
|
|
102
|
+
it_behaves_like 'travis init', 'go'
|
103
|
+
|
102
104
|
it 'sets compiler' do
|
103
105
|
result.should include('go')
|
104
106
|
result['go'].should include('1.0')
|
@@ -107,21 +109,21 @@ describe Travis::CLI::Init do
|
|
107
109
|
end
|
108
110
|
|
109
111
|
describe 'travis init groovy' do
|
110
|
-
|
112
|
+
it_behaves_like 'travis init', 'groovy'
|
111
113
|
end
|
112
114
|
|
113
115
|
describe 'travis init haskell' do
|
114
|
-
|
116
|
+
it_behaves_like 'travis init', 'haskell'
|
115
117
|
end
|
116
118
|
|
117
119
|
describe 'travis init java' do
|
118
|
-
it_should_behave_like 'travis init', 'java'
|
119
|
-
|
120
120
|
let :result do
|
121
121
|
run_cli('init', 'java', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
122
122
|
YAML.load_file('.travis.yml')
|
123
123
|
end
|
124
124
|
|
125
|
+
it_behaves_like 'travis init', 'java'
|
126
|
+
|
125
127
|
it 'sets compiler' do
|
126
128
|
result.should include('jdk')
|
127
129
|
result['jdk'].should include('oraclejdk7')
|
@@ -130,13 +132,13 @@ describe Travis::CLI::Init do
|
|
130
132
|
end
|
131
133
|
|
132
134
|
describe 'travis init node_js' do
|
133
|
-
it_should_behave_like 'travis init', 'node_js'
|
134
|
-
|
135
135
|
let :result do
|
136
136
|
run_cli('init', 'node_js', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
137
137
|
YAML.load_file('.travis.yml')
|
138
138
|
end
|
139
139
|
|
140
|
+
it_behaves_like 'travis init', 'node_js'
|
141
|
+
|
140
142
|
it 'sets compiler' do
|
141
143
|
result.should include('node_js')
|
142
144
|
result['node_js'].should include('stable')
|
@@ -146,17 +148,17 @@ describe Travis::CLI::Init do
|
|
146
148
|
end
|
147
149
|
|
148
150
|
describe 'travis init objective-c' do
|
149
|
-
|
151
|
+
it_behaves_like 'travis init', 'objective-c'
|
150
152
|
end
|
151
153
|
|
152
154
|
describe 'travis init perl' do
|
153
|
-
it_should_behave_like 'travis init', 'perl'
|
154
|
-
|
155
155
|
let :result do
|
156
156
|
run_cli('init', 'perl', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
157
157
|
YAML.load_file('.travis.yml')
|
158
158
|
end
|
159
159
|
|
160
|
+
it_behaves_like 'travis init', 'perl'
|
161
|
+
|
160
162
|
it 'sets compiler' do
|
161
163
|
result.should include('perl')
|
162
164
|
result['perl'].should include('5.16')
|
@@ -165,13 +167,13 @@ describe Travis::CLI::Init do
|
|
165
167
|
end
|
166
168
|
|
167
169
|
describe 'travis init php' do
|
168
|
-
it_should_behave_like 'travis init', 'php'
|
169
|
-
|
170
170
|
let :result do
|
171
171
|
run_cli('init', 'php', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
172
172
|
YAML.load_file('.travis.yml')
|
173
173
|
end
|
174
174
|
|
175
|
+
it_behaves_like 'travis init', 'php'
|
176
|
+
|
175
177
|
it 'sets compiler' do
|
176
178
|
result.should include('php')
|
177
179
|
result['php'].should include('5.5')
|
@@ -180,13 +182,13 @@ describe Travis::CLI::Init do
|
|
180
182
|
end
|
181
183
|
|
182
184
|
describe 'travis init python' do
|
183
|
-
it_should_behave_like 'travis init', 'python'
|
184
|
-
|
185
185
|
let :result do
|
186
186
|
run_cli('init', 'python', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
187
187
|
YAML.load_file('.travis.yml')
|
188
188
|
end
|
189
189
|
|
190
|
+
it_behaves_like 'travis init', 'python'
|
191
|
+
|
190
192
|
it 'sets compiler' do
|
191
193
|
result.should include('python')
|
192
194
|
result['python'].should include('2.7')
|
@@ -195,13 +197,13 @@ describe Travis::CLI::Init do
|
|
195
197
|
end
|
196
198
|
|
197
199
|
describe 'travis init ruby' do
|
198
|
-
it_should_behave_like 'travis init', 'ruby'
|
199
|
-
|
200
200
|
let :result do
|
201
201
|
run_cli('init', 'ruby', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
202
202
|
YAML.load_file('.travis.yml')
|
203
203
|
end
|
204
204
|
|
205
|
+
it_behaves_like 'travis init', 'ruby'
|
206
|
+
|
205
207
|
it 'sets compiler' do
|
206
208
|
result.should include('rvm')
|
207
209
|
result['rvm'].should include('1.9.3')
|
@@ -211,13 +213,13 @@ describe Travis::CLI::Init do
|
|
211
213
|
end
|
212
214
|
|
213
215
|
describe 'travis init scala' do
|
214
|
-
it_should_behave_like 'travis init', 'scala'
|
215
|
-
|
216
216
|
let :result do
|
217
217
|
run_cli('init', 'scala', '--skip-enable', '-r', 'travis-ci/travis.rb')
|
218
218
|
YAML.load_file('.travis.yml')
|
219
219
|
end
|
220
220
|
|
221
|
+
it_behaves_like 'travis init', 'scala'
|
222
|
+
|
221
223
|
it 'sets compiler' do
|
222
224
|
result.should include('scala')
|
223
225
|
result['scala'].should include('2.10.1')
|
data/spec/cli/logs_spec.rb
CHANGED
data/spec/cli/open_spec.rb
CHANGED
@@ -1,24 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Open do
|
4
6
|
example 'travis open -p' do
|
5
7
|
run_cli('open', '-p').should be_success
|
6
|
-
stdout.should match(
|
8
|
+
stdout.should match(%r{https://travis-ci.org/[\w\W]*/travis\.rb})
|
7
9
|
end
|
8
10
|
|
9
11
|
example 'travis open 6180 -p' do
|
10
12
|
run_cli('open', '6180', '-p').should be_success
|
11
|
-
stdout.should match(
|
13
|
+
stdout.should match(%r{https://travis-ci.org/[\w\W]*/travis\.rb/builds/4125095})
|
12
14
|
end
|
13
15
|
|
14
16
|
example 'travis open 6180.1 -p' do
|
15
17
|
run_cli('open', '6180.1', '-p').should be_success
|
16
|
-
stdout.should match(
|
18
|
+
stdout.should match(%r{https://travis-ci.org/[\w\W]*/travis\.rb/jobs/4125096})
|
17
19
|
end
|
18
20
|
|
19
21
|
example 'travis open -pg' do
|
20
22
|
run_cli('open', '-pg').should be_success
|
21
|
-
stdout.should match(
|
23
|
+
stdout.should match(%r{https://github.com/[\w\W]*/travis\.rb})
|
22
24
|
end
|
23
25
|
|
24
26
|
example 'travis open 6180 -pg' do
|
@@ -1,25 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
require 'uri'
|
3
5
|
|
4
6
|
describe Travis::CLI::RepoCommand do
|
5
7
|
describe '#parse_remote' do
|
8
|
+
subject(:repo_command) { described_class.new }
|
9
|
+
|
6
10
|
it 'handles git@github.com URIs' do
|
7
|
-
path =
|
11
|
+
path = repo_command.send(:parse_remote, 'git@github.com:travis-ci/travis.rb.git')
|
8
12
|
path.should be == '/travis-ci/travis.rb.git'
|
9
13
|
end
|
10
14
|
|
11
15
|
it 'handles GitHub Enterprise URIS' do
|
12
|
-
path =
|
16
|
+
path = repo_command.send(:parse_remote, 'git@example.com:travis-ci/travis.rb.git')
|
13
17
|
path.should be == '/travis-ci/travis.rb.git'
|
14
18
|
end
|
15
19
|
|
16
20
|
it 'handles HTTPS URIs' do
|
17
|
-
path =
|
21
|
+
path = repo_command.send(:parse_remote, 'https://github.com/travis-ci/travis.rb.git')
|
18
22
|
path.should be == '/travis-ci/travis.rb.git'
|
19
23
|
end
|
20
24
|
|
21
25
|
it 'raises URI::InvalidURIError for invalid URIs' do
|
22
|
-
expect {
|
26
|
+
expect { repo_command.send(:parse_remote, 'foo@example.com:baz/bar.git') }.to raise_error(URI::InvalidURIError)
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
data/spec/cli/restart_spec.rb
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Restart do
|
4
6
|
example 'travis restart' do
|
5
7
|
run_cli('restart', '-t', 'token').should be_success
|
6
|
-
$params['id'].should be == "4125095"
|
7
|
-
$params['entity'].should be == "builds"
|
8
8
|
end
|
9
9
|
|
10
10
|
example 'travis restart 6180.1' do
|
11
11
|
run_cli('restart', '6180.1', '-t', 'token').should be_success
|
12
|
-
$params['entity'].should be == "jobs"
|
13
|
-
$params['id'].should be == "4125096"
|
14
12
|
end
|
15
13
|
end
|
@@ -1,53 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Setup::Service do
|
4
6
|
subject :service do
|
5
|
-
repository = double('repository',{:
|
6
|
-
setup = double('Setup', :
|
7
|
+
repository = double('repository', { slug: 'test_slug' })
|
8
|
+
setup = double('Setup', repository:)
|
7
9
|
described_class.new(setup)
|
8
10
|
end
|
9
|
-
|
11
|
+
|
10
12
|
describe '#deploy' do
|
11
|
-
|
12
13
|
subject :deploy_config do
|
13
|
-
{'provider' => 'dummy'}
|
14
|
+
{ 'provider' => 'dummy' }
|
14
15
|
end
|
15
|
-
|
16
|
+
|
16
17
|
before do
|
17
18
|
allow(service).to receive(:configure).and_yield(deploy_config)
|
18
19
|
allow(service).to receive(:on).and_return(nil)
|
19
20
|
end
|
20
|
-
|
21
|
+
|
21
22
|
context 'with no existing deploy section' do
|
22
|
-
|
23
23
|
it 'creates section contents without optional items' do
|
24
24
|
service.send(:deploy, 'dummy') { |_| }
|
25
25
|
expect(deploy_config).to include(
|
26
|
-
|
27
|
-
|
26
|
+
'provider' => 'dummy',
|
27
|
+
'skip_cleanup' => 'true'
|
28
28
|
)
|
29
29
|
end
|
30
30
|
end
|
31
|
-
|
31
|
+
|
32
32
|
context 'with existing deploy section' do
|
33
33
|
it 'doesn\'t overwrite existing skip_cleanup' do
|
34
|
-
deploy_config['skip_cleanup']='false'
|
34
|
+
deploy_config['skip_cleanup'] = 'false'
|
35
35
|
service.send(:deploy, 'dummy') { |_| }
|
36
|
-
expect(deploy_config).to include('skip_cleanup'
|
36
|
+
expect(deploy_config).to include('skip_cleanup' => 'false')
|
37
37
|
end
|
38
38
|
|
39
39
|
it 'doesn\'t set skip_cleanup for v2' do
|
40
|
-
deploy_config['edge']='true'
|
40
|
+
deploy_config['edge'] = 'true'
|
41
41
|
service.send(:deploy, 'dummy') { |_| }
|
42
42
|
expect(deploy_config).not_to include('skip_cleanup')
|
43
43
|
end
|
44
|
-
|
44
|
+
|
45
45
|
it 'sets skip_cleanup for explicit v1' do
|
46
|
-
deploy_config['edge']='false'
|
46
|
+
deploy_config['edge'] = 'false'
|
47
47
|
service.send(:deploy, 'dummy') { |_| }
|
48
|
-
expect(deploy_config).to include('skip_cleanup'
|
48
|
+
expect(deploy_config).to include('skip_cleanup' => 'true')
|
49
49
|
end
|
50
50
|
end
|
51
|
-
|
52
51
|
end
|
53
52
|
end
|
data/spec/cli/setup_spec.rb
CHANGED
data/spec/cli/show_spec.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Show do
|
4
6
|
example 'show 6180.1' do
|
5
7
|
run_cli('show', '6180.1', '-E').should be_success
|
6
|
-
stdout.should include(
|
7
|
-
stdout.should include(
|
8
|
+
stdout.should include('Config: ')
|
9
|
+
stdout.should include('env: GEM=railties')
|
8
10
|
end
|
9
11
|
end
|
data/spec/cli/status_spec.rb
CHANGED
@@ -1,27 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Status do
|
4
|
-
example
|
6
|
+
example 'travis status' do
|
5
7
|
run_cli('status').should be_success
|
6
8
|
stdout.should be == "failed\n"
|
7
9
|
end
|
8
10
|
|
9
|
-
example
|
11
|
+
example 'travis status -x' do
|
10
12
|
run_cli('status', '-x').should_not be_success
|
11
13
|
stdout.should be == "failed\n"
|
12
14
|
end
|
13
15
|
|
14
|
-
example
|
16
|
+
example 'travis status -q' do
|
15
17
|
run_cli('status', '-q').should be_success
|
16
18
|
stdout.should be_empty
|
17
19
|
end
|
18
20
|
|
19
|
-
example
|
21
|
+
example 'travis status -pqx' do
|
20
22
|
run_cli('endpoint', '-pqx').should_not be_success
|
21
23
|
stdout.should be_empty
|
22
24
|
end
|
23
25
|
|
24
|
-
example
|
26
|
+
example 'travis status -i' do
|
25
27
|
run_cli('status', '-i', '--skip-completion-check', '-r', 'travis-ci/travis.rb').should be_success
|
26
28
|
stdout.should be == "build #6180 failed\n"
|
27
29
|
end
|
data/spec/cli/token_spec.rb
CHANGED
@@ -1,15 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Token do
|
4
|
-
example
|
6
|
+
example 'travis token (access token set)' do
|
5
7
|
run_cli('token', '-t', 'super-secret').should be_success
|
6
|
-
stdout.should
|
8
|
+
stdout.should
|
7
9
|
stderr.should be_empty
|
8
10
|
end
|
9
11
|
|
10
|
-
example
|
12
|
+
example 'travis token -i (access token set)' do
|
11
13
|
run_cli('token', '-it', 'super-secret').should be_success
|
12
|
-
stdout.should
|
14
|
+
stdout.should
|
13
15
|
stderr.should be_empty
|
14
16
|
end
|
15
17
|
|
@@ -17,6 +19,6 @@ describe Travis::CLI::Token do
|
|
17
19
|
run_cli('token').should_not be_success
|
18
20
|
|
19
21
|
stdout.should be_empty
|
20
|
-
stderr.should == "not logged in, please run #{File.basename($
|
22
|
+
stderr.should == "not logged in, please run #{File.basename($PROGRAM_NAME)} login\n"
|
21
23
|
end
|
22
24
|
end
|
data/spec/cli/version_spec.rb
CHANGED
data/spec/cli/whoami_spec.rb
CHANGED
@@ -1,32 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::CLI::Whoami do
|
4
|
-
example
|
6
|
+
example 'travis whoami' do
|
5
7
|
run_cli('whoami').should_not be_success
|
6
8
|
stdout.should be_empty
|
7
|
-
stderr.should be == "not logged in, please run #{File.basename $
|
9
|
+
stderr.should be == "not logged in, please run #{File.basename $PROGRAM_NAME} login\n"
|
8
10
|
end
|
9
11
|
|
10
|
-
example
|
12
|
+
example 'travis whoami --pro' do
|
11
13
|
run_cli('whoami', '--pro').should_not be_success
|
12
14
|
stdout.should be_empty
|
13
|
-
stderr.should be == "not logged in, please run #{File.basename $
|
15
|
+
stderr.should be == "not logged in, please run #{File.basename $PROGRAM_NAME} login\n"
|
14
16
|
end
|
15
17
|
|
16
|
-
example
|
18
|
+
example 'travis whoami -t token' do
|
17
19
|
run_cli('whoami', '-t', 'token').should be_success
|
18
20
|
stdout.should be == "rkh\n"
|
19
21
|
stderr.should be_empty
|
20
22
|
end
|
21
23
|
|
22
|
-
example
|
24
|
+
example 'TRAVIS_TOKEN=token travis whoami' do
|
23
25
|
ENV['TRAVIS_TOKEN'] = 'token'
|
24
26
|
run_cli('whoami').should be_success
|
25
27
|
stdout.should be == "rkh\n"
|
26
28
|
stderr.should be_empty
|
27
29
|
end
|
28
30
|
|
29
|
-
example
|
31
|
+
example 'travis whoami -t token -i' do
|
30
32
|
run_cli('whoami', '-t', 'token', '-i').should be_success
|
31
33
|
stdout.should be == "You are rkh (Konstantin Haase)\n"
|
32
34
|
stderr.should be_empty
|
data/spec/client/account_spec.rb
CHANGED
@@ -1,32 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Travis::Client::Account do
|
4
|
-
context
|
5
|
-
let(:session) { Travis::Client.new }
|
6
|
+
context 'with all accounts' do
|
6
7
|
subject { session.accounts.first }
|
7
|
-
its(:name) { should be == 'Konstantin Haase' }
|
8
|
-
its(:login) { should be == 'rkh' }
|
9
|
-
its(:type) { should be == 'user' }
|
10
|
-
its(:repos_count) { should be == 200 }
|
11
|
-
its(:inspect) { should be == "#<Travis::Client::Account: rkh>" }
|
12
|
-
end
|
13
8
|
|
14
|
-
context "known account" do
|
15
9
|
let(:session) { Travis::Client.new }
|
16
|
-
|
17
|
-
its(:name) {
|
18
|
-
its(:login) {
|
19
|
-
its(:type) {
|
20
|
-
its(:repos_count) {
|
21
|
-
its(:inspect) {
|
10
|
+
|
11
|
+
its(:name) { is_expected.to be == 'Konstantin Haase' }
|
12
|
+
its(:login) { is_expected.to be == 'rkh' }
|
13
|
+
its(:type) { is_expected.to be == 'user' }
|
14
|
+
its(:repos_count) { is_expected.to be == 200 }
|
15
|
+
its(:inspect) { is_expected.to be == '#<Travis::Client::Account: rkh>' }
|
22
16
|
end
|
23
17
|
|
24
|
-
context
|
18
|
+
context 'with known account' do
|
19
|
+
subject { session.account('rkh') }
|
20
|
+
|
25
21
|
let(:session) { Travis::Client.new }
|
22
|
+
|
23
|
+
its(:name) { is_expected.to be == 'Konstantin Haase' }
|
24
|
+
its(:login) { is_expected.to be == 'rkh' }
|
25
|
+
its(:type) { is_expected.to be == 'user' }
|
26
|
+
its(:repos_count) { is_expected.to be == 200 }
|
27
|
+
its(:inspect) { is_expected.to be == '#<Travis::Client::Account: rkh>' }
|
28
|
+
end
|
29
|
+
|
30
|
+
context 'with known account and nil name' do
|
26
31
|
subject { session.account('foo') }
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
its(:
|
32
|
+
|
33
|
+
let(:session) { Travis::Client.new }
|
34
|
+
|
35
|
+
its(:name) { is_expected.to be_nil }
|
36
|
+
its(:login) { is_expected.to be == 'foo' }
|
37
|
+
its(:type) { is_expected.to be_nil }
|
38
|
+
its(:inspect) { is_expected.to be == '#<Travis::Client::Account: foo>' }
|
31
39
|
end
|
32
40
|
end
|