summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/file_finder.rb
blob: 0dc351b51494f1dbc8a248f136d2b97db8918872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
shared_examples 'file finder' do
  let(:query) { 'files' }
  let(:search_results) { subject.find(query) }

  it 'finds by name' do
    blob = search_results.find { |blob| blob.filename == expected_file_by_name }

    expect(blob.filename).to eq(expected_file_by_name)
    expect(blob).to be_a(Gitlab::Search::FoundBlob)
    expect(blob.ref).to eq(subject.ref)
    expect(blob.data).not_to be_empty
  end

  it 'finds by content' do
    blob = search_results.find { |blob| blob.filename == expected_file_by_content }

    expect(blob.filename).to eq(expected_file_by_content)
    expect(blob).to be_a(Gitlab::Search::FoundBlob)
    expect(blob.ref).to eq(subject.ref)
    expect(blob.data).not_to be_empty
  end
end