create_service_spec.rb 2.4 KB
Newer Older
1 2 3 4 5
require "spec_helper"

describe Files::CreateService do
  let(:project) { create(:project, :repository) }
  let(:repository) { project.repository }
6
  let(:user) { create(:user, :commit_email) }
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
  let(:file_content) { 'Test file content' }
  let(:branch_name) { project.default_branch }
  let(:start_branch) { branch_name }

  let(:commit_params) do
    {
      file_path: file_path,
      commit_message: "Update File",
      file_content: file_content,
      file_content_encoding: "text",
      start_project: project,
      start_branch: start_branch,
      branch_name: branch_name
    }
  end

23 24
  let(:commit) { repository.head_commit }

25 26 27
  subject { described_class.new(project, user, commit_params) }

  before do
28
    project.add_maintainer(user)
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  end

  describe "#execute" do
    context 'when file matches LFS filter' do
      let(:file_path) { 'test_file.lfs' }
      let(:branch_name) { 'lfs' }

      context 'with LFS disabled' do
        it 'skips gitattributes check' do
          expect(repository).not_to receive(:attributes_at)

          subject.execute
        end

        it "doesn't create LFS pointers" do
          subject.execute

          blob = repository.blob_at('lfs', file_path)

48
          expect(blob.data).not_to start_with(Gitlab::Git::LfsPointerFile::VERSION_LINE)
49 50 51 52 53 54 55 56 57 58 59 60 61 62
          expect(blob.data).to eq(file_content)
        end
      end

      context 'with LFS enabled' do
        before do
          allow(project).to receive(:lfs_enabled?).and_return(true)
        end

        it 'creates an LFS pointer' do
          subject.execute

          blob = repository.blob_at('lfs', file_path)

63
          expect(blob.data).to start_with(Gitlab::Git::LfsPointerFile::VERSION_LINE)
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        end

        it "creates an LfsObject with the file's content" do
          subject.execute

          expect(LfsObject.last.file.read).to eq file_content
        end

        it 'links the LfsObject to the project' do
          expect do
            subject.execute
          end.to change { project.lfs_objects.count }.by(1)
        end
      end
    end
  end
80 81 82 83 84 85 86

  context 'commit attribute' do
    let(:file_path) { 'test-commit-attributes.txt' }

    it 'uses the commit email' do
      subject.execute

87
      expect(user.commit_email).not_to eq(user.email)
88 89 90 91
      expect(commit.author_email).to eq(user.commit_email)
      expect(commit.committer_email).to eq(user.commit_email)
    end
  end
92
end