1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
#
# Author:: Seth Falcon (<seth@chef.io>)
# Copyright:: Copyright (c) Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "spec_helper"
require "tmpdir"
# Deploy relies heavily on symlinks, so it doesn't work on windows.
describe Chef::Resource::Git, requires_git: true do
include RecipeDSLHelper
# Some versions of git complains when the deploy directory is
# already created. Here we intentionally don't create the deploy
# directory beforehand.
let(:base_dir_path) { Dir.mktmpdir }
let(:deploy_directory) { File.join(base_dir_path, make_tmpname("git_base")) }
# These tests use git's bundle feature, which is a way to export an entire
# git repo (or subset of commits) as a single file.
#
# Generally you can treat a git bundle as a regular git remote.
#
# See also: http://git-scm.com/2010/03/10/bundles.html
#
# Beware that git bundles don't behave exactly the same as real
# remotes. To get closer to real remotes, we'll create a local clone
# of the bundle to use as a remote for the tests. This at least
# gives the expected responses for ls-remote using git version
# 1.7.12.4
let(:git_bundle_repo) { File.expand_path("git_bundles/example-repo.gitbundle", CHEF_SPEC_DATA) }
let(:origin_repo_dir) { Dir.mktmpdir }
let(:origin_repo) { "#{origin_repo_dir}/example" }
# This is the fourth version
let(:v1_commit) { "bc5ec79931ae74089aeadca6edc173527613e6d9" }
let(:v1_tag) { "9b73fb5e316bfaff7b822b0ccb3e1e08f9885085" }
let(:rev_foo) { "ed181b3419b6f489bedab282348162a110d6d3a1" }
let(:rev_testing) { "972d153654503bccec29f630c5dd369854a561e8" }
let(:rev_head) { "d294fbfd05aa7709ad9a9b8ef6343b17d355bf5f" }
before(:each) do
shell_out!("git", "clone", git_bundle_repo, "example", cwd: origin_repo_dir)
File.open("#{origin_repo}/.git/config", "a+") do |f|
f.print <<~EOF
[user]
name = frodoTbaggins
email = frodo@shire.org
EOF
end
end
after(:each) do
FileUtils.remove_entry_secure deploy_directory if File.exist?(deploy_directory)
FileUtils.remove_entry_secure base_dir_path
FileUtils.remove_entry_secure origin_repo_dir
end
def expect_revision_to_be(revision, version)
rev_ver = shell_out!("git", "rev-parse", revision, cwd: deploy_directory).stdout.strip
expect(rev_ver).to eq(version)
end
def expect_branch_upstream_to_be(branch, upstream)
branch_upstream = shell_out("git", "rev-parse", "--abbrev-ref", "#{branch}@{upstream}", cwd: deploy_directory).stdout.strip
expect(branch_upstream).to eq(upstream)
end
def expect_branch_to_be(branch)
head_branch = shell_out!("git name-rev --name-only HEAD", cwd: deploy_directory).stdout.strip
expect(head_branch).to eq(branch)
end
context "working with pathes with special characters" do
let(:path_with_spaces) { "#{origin_repo_dir}/path with spaces" }
before(:each) do
FileUtils.mkdir(path_with_spaces)
FileUtils.cp(git_bundle_repo, path_with_spaces)
end
it "clones a repository with a space in the path" do
repo = "#{path_with_spaces}/example-repo.gitbundle"
git(deploy_directory) do
repository repo
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
end
end
context "when deploying from an annotated tag" do
it "checks out the revision pointed to by the tag commit, not the tag commit itself" do
git deploy_directory do
repository origin_repo
revision "v1.0.0"
end.should_be_updated
expect_revision_to_be("HEAD", v1_commit)
expect_branch_to_be("tags/v1.0.0^0") # detatched
# also verify the tag commit itself is what we expect as an extra sanity check
expect_revision_to_be("v1.0.0", v1_tag)
end
it "doesn't update if up-to-date" do
git deploy_directory do
repository origin_repo
revision "v1.0.0"
end.should_be_updated
git deploy_directory do
repository origin_repo
revision "v1.0.0"
expect_branch_to_be("tags/v1.0.0^0") # detatched
end.should_not_be_updated
end
end
context "when deploying from a SHA revision" do
it "checks out the expected revision ed18" do
git deploy_directory do
repository git_bundle_repo
revision rev_foo
end.should_be_updated
expect_revision_to_be("HEAD", rev_foo)
expect_branch_to_be("master~1") # detatched
end
it "checks out the expected revision ed18 to a local branch" do
git deploy_directory do
repository git_bundle_repo
revision rev_foo
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_foo)
expect_branch_to_be("deploy") # detatched
end
it "doesn't update if up-to-date" do
git deploy_directory do
repository git_bundle_repo
revision rev_foo
end.should_be_updated
expect_revision_to_be("HEAD", rev_foo)
git deploy_directory do
repository origin_repo
revision rev_foo
end.should_not_be_updated
expect_branch_to_be("master~1") # detatched
end
it "checks out the expected revision 972d" do
git deploy_directory do
repository git_bundle_repo
revision rev_testing
end.should_be_updated
expect_revision_to_be("HEAD", rev_testing)
expect_branch_to_be("master~2") # detatched
end
it "checks out the expected revision 972d to a local branch" do
git deploy_directory do
repository git_bundle_repo
revision rev_testing
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_testing)
expect_branch_to_be("deploy")
end
end
context "when deploying from a revision named 'HEAD'" do
it "checks out the expected revision" do
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the expected revision, and is idempotent" do
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_be_updated
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_not_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the expected revision to a local branch" do
git deploy_directory do
repository origin_repo
revision "HEAD"
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("deploy")
end
end
context "when deploying from the default revision" do
it "checks out HEAD as the default revision" do
git deploy_directory do
repository origin_repo
end.should_be_updated
expect_branch_upstream_to_be("master", "origin/master")
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out HEAD as the default revision, and is idempotent" do
git deploy_directory do
repository origin_repo
end.should_be_updated
git deploy_directory do
repository origin_repo
end.should_not_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out HEAD as the default revision to a local branch" do
git deploy_directory do
repository origin_repo
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("deploy")
end
end
context "when dealing with a repo with a degenerate tag named 'HEAD'" do
before do
shell_out!("git", "tag", "-m\"degenerate tag\"", "HEAD", "ed181b3419b6f489bedab282348162a110d6d3a1", cwd: origin_repo)
end
it "checks out the (master) HEAD revision and ignores the tag" do
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the (master) HEAD revision and ignores the tag, and is idempotent" do
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_be_updated
git deploy_directory do
repository origin_repo
revision "HEAD"
end.should_not_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the (master) HEAD revision and ignores the tag to a local branch" do
git deploy_directory do
repository origin_repo
revision "HEAD"
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("deploy")
end
it "checks out the (master) HEAD revision when no revision is specified (ignores tag)" do
git deploy_directory do
repository origin_repo
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the (master) HEAD revision when no revision is specified (ignores tag), and is idempotent" do
git deploy_directory do
repository origin_repo
end.should_be_updated
git deploy_directory do
repository origin_repo
end.should_not_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("master")
end
it "checks out the (master) HEAD revision when no revision is specified (ignores tag) to a local branch" do
git deploy_directory do
repository origin_repo
checkout_branch "deploy"
end.should_be_updated
expect_revision_to_be("HEAD", rev_head)
expect_branch_to_be("deploy")
end
end
end
|