| 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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
 | require "utils"
describe "globally-scoped helper methods" do
  let(:dir) { mktmpdir }
  def esc(code)
    /(\e\[\d+m)*\e\[#{code}m/
  end
  describe "#ofail" do
    it "sets Homebrew.failed to true" do
      expect {
        ofail "foo"
      }.to output("Error: foo\n").to_stderr
      expect(Homebrew).to have_failed
    end
  end
  describe "#odie" do
    it "exits with 1" do
      expect(self).to receive(:exit).and_return(1)
      expect {
        odie "foo"
      }.to output("Error: foo\n").to_stderr
    end
  end
  describe "#pretty_installed" do
    subject { pretty_installed("foo") }
    context "when $stdout is a TTY" do
      before(:each) { allow($stdout).to receive(:tty?).and_return(true) }
      context "with HOMEBREW_NO_EMOJI unset" do
        before(:each) { ENV.delete("HOMEBREW_NO_EMOJI") }
        it "returns a string with a colored checkmark" do
          expect(subject)
            .to match(/#{esc 1}foo #{esc 32}✔#{esc 0}/)
        end
      end
      context "with HOMEBREW_NO_EMOJI set" do
        before(:each) { ENV["HOMEBREW_NO_EMOJI"] = "1" }
        it "returns a string with colored info" do
          expect(subject)
            .to match(/#{esc 1}foo \(installed\)#{esc 0}/)
        end
      end
    end
    context "when $stdout is not a TTY" do
      before(:each) { allow($stdout).to receive(:tty?).and_return(false) }
      it "returns plain text" do
        expect(subject).to eq("foo")
      end
    end
  end
  describe "#pretty_uninstalled" do
    subject { pretty_uninstalled("foo") }
    context "when $stdout is a TTY" do
      before(:each) { allow($stdout).to receive(:tty?).and_return(true) }
      context "with HOMEBREW_NO_EMOJI unset" do
        before(:each) { ENV.delete("HOMEBREW_NO_EMOJI") }
        it "returns a string with a colored checkmark" do
          expect(subject)
            .to match(/#{esc 1}foo #{esc 31}✘#{esc 0}/)
        end
      end
      context "with HOMEBREW_NO_EMOJI set" do
        before(:each) { ENV["HOMEBREW_NO_EMOJI"] = "1" }
        it "returns a string with colored info" do
          expect(subject)
            .to match(/#{esc 1}foo \(uninstalled\)#{esc 0}/)
        end
      end
    end
    context "when $stdout is not a TTY" do
      before(:each) { allow($stdout).to receive(:tty?).and_return(false) }
      it "returns plain text" do
        expect(subject).to eq("foo")
      end
    end
  end
  describe "#interactive_shell" do
    let(:shell) { dir/"myshell" }
    it "starts an interactive shell session" do
      IO.write shell, <<~EOS
        #!/bin/sh
        echo called > "#{dir}/called"
      EOS
      FileUtils.chmod 0755, shell
      ENV["SHELL"] = shell
      expect { interactive_shell }.not_to raise_error
      expect(dir/"called").to exist
    end
  end
  describe "#with_custom_locale" do
    it "temporarily overrides the system locale" do
      ENV["LC_ALL"] = "en_US.UTF-8"
      with_custom_locale("C") do
        expect(ENV["LC_ALL"]).to eq("C")
      end
      expect(ENV["LC_ALL"]).to eq("en_US.UTF-8")
    end
  end
  describe "#run_as_not_developer" do
    it "temporarily unsets HOMEBREW_DEVELOPER" do
      ENV["HOMEBREW_DEVELOPER"] = "foo"
      run_as_not_developer do
        expect(ENV["HOMEBREW_DEVELOPER"]).to be nil
      end
      expect(ENV["HOMEBREW_DEVELOPER"]).to eq("foo")
    end
  end
  describe "#which" do
    let(:cmd) { dir/"foo" }
    before(:each) { FileUtils.touch cmd }
    it "returns the first executable that is found" do
      cmd.chmod 0744
      expect(which(File.basename(cmd), File.dirname(cmd))).to eq(cmd)
    end
    it "skips non-executables" do
      expect(which(File.basename(cmd), File.dirname(cmd))).to be nil
    end
    it "skips malformed path and doesn't fail" do
      # 'which' should not fail if a path is malformed
      # see https://github.com/Homebrew/legacy-homebrew/issues/32789 for an example
      cmd.chmod 0744
      # ~~ will fail because ~foo resolves to foo's home and there is no '~' user
      path = ["~~", File.dirname(cmd)].join(File::PATH_SEPARATOR)
      expect(which(File.basename(cmd), path)).to eq(cmd)
    end
  end
  describe "#which_all" do
    let(:cmd1) { dir/"foo" }
    let(:cmd2) { dir/"bar/foo" }
    let(:cmd3) { dir/"bar/baz/foo" }
    before(:each) do
      (dir/"bar/baz").mkpath
      FileUtils.touch cmd2
      [cmd1, cmd3].each do |cmd|
        FileUtils.touch cmd
        cmd.chmod 0744
      end
    end
    it "returns an array of all executables that are found" do
      path = [
        "#{dir}/bar/baz",
        "#{dir}/baz:#{dir}",
        "~baduserpath",
      ].join(File::PATH_SEPARATOR)
      expect(which_all("foo", path)).to eq([cmd3, cmd1])
    end
  end
  specify "#which_editor" do
    ENV["HOMEBREW_EDITOR"] = "vemate -w"
    ENV["HOMEBREW_PATH"] = dir
    editor = "#{dir}/vemate"
    FileUtils.touch editor
    FileUtils.chmod 0755, editor
    expect(which_editor).to eq("vemate -w")
  end
  specify "#gzip" do
    mktmpdir do |path|
      somefile = path/"somefile"
      FileUtils.touch somefile
      expect(gzip(somefile)[0].to_s).to eq("#{somefile}.gz")
      expect(Pathname.new("#{somefile}.gz")).to exist
    end
  end
  specify "#capture_stderr" do
    err = capture_stderr do
      $stderr.print "test"
    end
    expect(err).to eq("test")
  end
  describe "#pretty_duration" do
    it "converts seconds to a human-readable string" do
      expect(pretty_duration(1)).to eq("1 second")
      expect(pretty_duration(2.5)).to eq("2 seconds")
      expect(pretty_duration(42)).to eq("42 seconds")
      expect(pretty_duration(240)).to eq("4 minutes")
      expect(pretty_duration(252.45)).to eq("4 minutes 12 seconds")
    end
  end
  specify "#disk_usage_readable" do
    expect(disk_usage_readable(1)).to eq("1B")
    expect(disk_usage_readable(1000)).to eq("1000B")
    expect(disk_usage_readable(1024)).to eq("1KB")
    expect(disk_usage_readable(1025)).to eq("1KB")
    expect(disk_usage_readable(4_404_020)).to eq("4.2MB")
    expect(disk_usage_readable(4_509_715_660)).to eq("4.2GB")
  end
  describe "#number_readable" do
    it "returns a string with thousands separators" do
      expect(number_readable(1)).to eq("1")
      expect(number_readable(1_000)).to eq("1,000")
      expect(number_readable(1_000_000)).to eq("1,000,000")
    end
  end
  specify "#truncate_text_to_approximate_size" do
    glue = "\n[...snip...]\n" # hard-coded copy from truncate_text_to_approximate_size
    n = 20
    long_s = "x" * 40
    s = truncate_text_to_approximate_size(long_s, n)
    expect(s.length).to eq(n)
    expect(s).to match(/^x+#{Regexp.escape(glue)}x+$/)
    s = truncate_text_to_approximate_size(long_s, n, front_weight: 0.0)
    expect(s).to eq(glue + ("x" * (n - glue.length)))
    s = truncate_text_to_approximate_size(long_s, n, front_weight: 1.0)
    expect(s).to eq(("x" * (n - glue.length)) + glue)
  end
  describe "#odeprecated" do
    it "raises a MethodDeprecatedError" do
      ENV.delete("HOMEBREW_DEVELOPER")
      expect {
        odeprecated(
          "method", "replacement",
          caller: ["#{HOMEBREW_LIBRARY}/Taps/homebrew/homebrew-core/"],
          disable: true
        )
      }.to raise_error(MethodDeprecatedError, %r{method.*replacement.*homebrew/homebrew-core.*homebrew/core}m)
    end
  end
  describe "#with_env" do
    it "sets environment variables within the block" do
      expect(ENV["PATH"]).not_to eq("/bin")
      with_env(PATH: "/bin") do
        expect(ENV["PATH"]).to eq("/bin")
      end
    end
    it "restores ENV after the block" do
      with_env(PATH: "/bin") do
        expect(ENV["PATH"]).to eq("/bin")
      end
      expect(ENV["PATH"]).not_to eq("/bin")
    end
    it "restores ENV if an exception is raised" do
      expect {
        with_env(PATH: "/bin") do
          raise StandardError, "boom"
        end
      }.to raise_error(StandardError)
      expect(ENV["PATH"]).not_to eq("/bin")
    end
  end
  describe "#tap_and_name_comparison" do
    describe "both strings are only names" do
      it "alphabetizes the strings" do
        expect(%w[a b].sort(&tap_and_name_comparison)).to eq(%w[a b])
        expect(%w[b a].sort(&tap_and_name_comparison)).to eq(%w[a b])
      end
    end
    describe "both strings include tap" do
      it "alphabetizes the strings" do
        expect(%w[a/z/z b/z/z].sort(&tap_and_name_comparison)).to eq(%w[a/z/z b/z/z])
        expect(%w[b/z/z a/z/z].sort(&tap_and_name_comparison)).to eq(%w[a/z/z b/z/z])
        expect(%w[z/a/z z/b/z].sort(&tap_and_name_comparison)).to eq(%w[z/a/z z/b/z])
        expect(%w[z/b/z z/a/z].sort(&tap_and_name_comparison)).to eq(%w[z/a/z z/b/z])
        expect(%w[z/z/a z/z/b].sort(&tap_and_name_comparison)).to eq(%w[z/z/a z/z/b])
        expect(%w[z/z/b z/z/a].sort(&tap_and_name_comparison)).to eq(%w[z/z/a z/z/b])
      end
    end
    describe "only one string includes tap" do
      it "prefers the string without tap" do
        expect(%w[a/z/z z].sort(&tap_and_name_comparison)).to eq(%w[z a/z/z])
        expect(%w[z a/z/z].sort(&tap_and_name_comparison)).to eq(%w[z a/z/z])
      end
    end
  end
end
 |