about summary refs log tree commit diff
path: root/spec/controllers/admin/webhooks/secrets_controller_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-03-04 11:13:28 -0500
committerGitHub <noreply@github.com>2023-03-04 17:13:28 +0100
commit42ddc451338b7902318ab081218319d56d7150eb (patch)
tree1c67d193c96bb9f5a1d27471eefe0e0490d7b892 /spec/controllers/admin/webhooks/secrets_controller_spec.rb
parentad585fb1959abe38839c30137cf3343737f1d247 (diff)
Admin controllers specs (#23917)
Diffstat (limited to 'spec/controllers/admin/webhooks/secrets_controller_spec.rb')
-rw-r--r--spec/controllers/admin/webhooks/secrets_controller_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/controllers/admin/webhooks/secrets_controller_spec.rb b/spec/controllers/admin/webhooks/secrets_controller_spec.rb
new file mode 100644
index 000000000..291a10fba
--- /dev/null
+++ b/spec/controllers/admin/webhooks/secrets_controller_spec.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe Admin::Webhooks::SecretsController do
+  render_views
+
+  let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
+
+  before do
+    sign_in user, scope: :user
+  end
+
+  describe 'POST #rotate' do
+    let(:webhook) { Fabricate(:webhook) }
+
+    it 'returns http success' do
+      post :rotate, params: { webhook_id: webhook.id }
+
+      expect(response).to redirect_to(admin_webhook_path(webhook))
+    end
+  end
+end