summaryrefslogtreecommitdiff
path: root/qa/spec/git/repository_spec.rb
blob: 5c65128d10cfdb67ba8eee188c06b1d9be05582a (plain)
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
describe QA::Git::Repository do
  let(:repository) { described_class.new }

  before do
    cd_empty_temp_directory
    set_bad_uri
    repository.use_default_credentials
  end

  describe '#clone' do
    it 'redacts credentials from the URI in output' do
      output, _ = repository.clone

      expect(output).to include("fatal: unable to access 'http://****@foo/bar.git/'")
    end
  end

  describe '#push_changes' do
    before do
      `git init` # need a repo to push from
    end

    it 'redacts credentials from the URI in output' do
      output, _ = repository.push_changes

      expect(output).to include("error: failed to push some refs to 'http://****@foo/bar.git'")
    end
  end

  def cd_empty_temp_directory
    tmp_dir = 'tmp/git-repository-spec/'
    FileUtils.rm_r(tmp_dir) if ::File.exist?(tmp_dir)
    FileUtils.mkdir_p tmp_dir
    FileUtils.cd tmp_dir
  end

  def set_bad_uri
    repository.uri = 'http://foo/bar.git'
  end
end