Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repository_archive_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2362058cfdeee8f36f0e1ccc39501eafd1ef18e (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
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
require 'spec_helper'

describe RepositoryArchiveWorker do
  let(:project) { create(:project) }
  subject { RepositoryArchiveWorker.new }

  before do
    allow(Project).to receive(:find).and_return(project)
  end

  describe "#perform" do
    it "cleans old archives" do
      expect(project.repository).to receive(:clean_old_archives)

      subject.perform(project.id, "master", "zip")
    end

    context "when the repository doesn't have an archive file path" do
      before do
        allow(project.repository).to receive(:archive_file_path).and_return(nil)
      end

      it "doesn't archive the repo" do
        expect(project.repository).not_to receive(:archive_repo)

        subject.perform(project.id, "master", "zip")
      end
    end

    context "when the repository has an archive file path" do
      let(:file_path)     { "/archive.zip" }
      let(:pid_file_path) { "/archive.zip.pid" }

      before do
        allow(project.repository).to receive(:archive_file_path).and_return(file_path)
        allow(project.repository).to receive(:archive_pid_file_path).and_return(pid_file_path)
      end

      context "when the archive file already exists" do
        before do
          allow(File).to receive(:exist?).with(file_path).and_return(true)
        end

        it "doesn't archive the repo" do
          expect(project.repository).not_to receive(:archive_repo)

          subject.perform(project.id, "master", "zip")
        end
      end

      context "when the archive file doesn't exist yet" do
        before do
          allow(File).to receive(:exist?).with(file_path).and_return(false)
          allow(File).to receive(:exist?).with(pid_file_path).and_return(true)
        end

        context "when the archive pid file doesn't exist yet" do
          before do
            allow(File).to receive(:exist?).with(pid_file_path).and_return(false)
          end

          it "archives the repo" do
            expect(project.repository).to receive(:archive_repo)

            subject.perform(project.id, "master", "zip")
          end
        end

        context "when the archive pid file already exists" do
          it "doesn't archive the repo" do
            expect(project.repository).not_to receive(:archive_repo)

            subject.perform(project.id, "master", "zip")
          end
        end
      end
    end
  end
end