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

chaos_controller_spec.rb « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bafd4a70862016cdca3bcc51d2329bfe90282a3d (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# frozen_string_literal: true

require 'spec_helper'

describe ChaosController do
  describe '#leakmem' do
    it 'calls synchronously' do
      expect(Gitlab::Chaos).to receive(:leak_mem).with(100, 30.seconds)

      get :leakmem

      expect(response).to have_gitlab_http_status(200)
    end

    it 'call synchronously with params' do
      expect(Gitlab::Chaos).to receive(:leak_mem).with(1, 2.seconds)

      get :leakmem, params: { memory_mb: 1, duration_s: 2 }

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls asynchronously' do
      expect(Chaos::LeakMemWorker).to receive(:perform_async).with(100, 30.seconds)

      get :leakmem, params: { async: 1 }

      expect(response).to have_gitlab_http_status(200)
    end
  end

  describe '#cpu_spin' do
    it 'calls synchronously' do
      expect(Gitlab::Chaos).to receive(:cpu_spin).with(30.seconds)

      get :cpu_spin

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls synchronously with params' do
      expect(Gitlab::Chaos).to receive(:cpu_spin).with(3.seconds)

      get :cpu_spin, params: { duration_s: 3 }

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls asynchronously' do
      expect(Chaos::CpuSpinWorker).to receive(:perform_async).with(30.seconds)

      get :cpu_spin, params: { async: 1 }

      expect(response).to have_gitlab_http_status(200)
    end
  end

  describe '#db_spin' do
    it 'calls synchronously' do
      expect(Gitlab::Chaos).to receive(:db_spin).with(30.seconds, 1.second)

      get :db_spin

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls synchronously with params' do
      expect(Gitlab::Chaos).to receive(:db_spin).with(4.seconds, 5.seconds)

      get :db_spin, params: { duration_s: 4, interval_s: 5 }

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls asynchronously' do
      expect(Chaos::DbSpinWorker).to receive(:perform_async).with(30.seconds, 1.second)

      get :db_spin, params: { async: 1 }

      expect(response).to have_gitlab_http_status(200)
    end
  end

  describe '#sleep' do
    it 'calls synchronously' do
      expect(Gitlab::Chaos).to receive(:sleep).with(30.seconds)

      get :sleep

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls synchronously with params' do
      expect(Gitlab::Chaos).to receive(:sleep).with(5.seconds)

      get :sleep, params: { duration_s: 5 }

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls asynchronously' do
      expect(Chaos::SleepWorker).to receive(:perform_async).with(30.seconds)

      get :sleep, params: { async: 1 }

      expect(response).to have_gitlab_http_status(200)
    end
  end

  describe '#kill' do
    it 'calls synchronously' do
      expect(Gitlab::Chaos).to receive(:kill).with(no_args)

      get :kill

      expect(response).to have_gitlab_http_status(200)
    end

    it 'calls asynchronously' do
      expect(Chaos::KillWorker).to receive(:perform_async).with(no_args)

      get :kill, params: { async: 1 }

      expect(response).to have_gitlab_http_status(200)
    end
  end
end