BigW Consortium Gitlab

file_spec.rb 2.03 KB
Newer Older
1 2
require 'spec_helper'

Douwe Maan committed
3
describe Gitlab::Diff::File, lib: true do
4 5
  include RepoHelpers

6
  let(:project) { create(:project, :repository) }
7
  let(:commit) { project.commit(sample_commit.id) }
8
  let(:diff) { commit.raw_diffs.first }
9
  let(:diff_file) { Gitlab::Diff::File.new(diff, diff_refs: commit.diff_refs, repository: project.repository) }
10

11
  describe '#diff_lines' do
12 13
    let(:diff_lines) { diff_file.diff_lines }

14 15
    it { expect(diff_lines.size).to eq(30) }
    it { expect(diff_lines.first).to be_kind_of(Gitlab::Diff::Line) }
16 17
  end

18
  describe '#mode_changed?' do
19
    it { expect(diff_file.mode_changed?).to be_falsey }
20
  end
21 22 23 24 25 26 27 28 29 30 31 32 33 34

  describe '#too_large?' do
    it 'returns true for a file that is too large' do
      expect(diff).to receive(:too_large?).and_return(true)

      expect(diff_file.too_large?).to eq(true)
    end

    it 'returns false for a file that is small enough' do
      expect(diff).to receive(:too_large?).and_return(false)

      expect(diff_file.too_large?).to eq(false)
    end
  end
35 36 37 38 39 40 41 42 43 44 45 46 47 48

  describe '#collapsed?' do
    it 'returns true for a file that is quite big' do
      expect(diff).to receive(:collapsed?).and_return(true)

      expect(diff_file.collapsed?).to eq(true)
    end

    it 'returns false for a file that is small enough' do
      expect(diff).to receive(:collapsed?).and_return(false)

      expect(diff_file.collapsed?).to eq(false)
    end
  end
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

  describe '#old_content_commit' do
    it 'returns base commit' do
      old_content_commit = diff_file.old_content_commit

      expect(old_content_commit.id).to eq('6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9')
    end
  end

  describe '#old_blob' do
    it 'returns blob of commit of base commit' do
      old_data = diff_file.old_blob.data

      expect(old_data).to include('raise "System commands must be given as an array of strings"')
    end
  end

  describe '#blob' do
    it 'returns blob of new commit' do
      data = diff_file.blob.data

      expect(data).to include('raise RuntimeError, "System commands must be given as an array of strings"')
    end
  end
73
end