105 lines
3.6 KiB
Ruby
105 lines
3.6 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Settings", type: :request do
|
|
let(:user) { create :user, cn: 'mark', ou: 'kosmos.org' }
|
|
|
|
before do
|
|
login_as user, :scope => :user
|
|
end
|
|
|
|
describe "GET /settings/experiments" do
|
|
it "works" do
|
|
get setting_path(:experiments)
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe "POST /settings/set_nostr_pubkey" do
|
|
before do
|
|
session_stub = { shared_secret: "rMjWEmvcvtTlQkMd" }
|
|
allow_any_instance_of(SettingsController).to receive(:session).and_return(session_stub)
|
|
end
|
|
|
|
context "With valid data" do
|
|
before do
|
|
post set_nostr_pubkey_settings_path, params: {
|
|
signed_event: {
|
|
id: "84f266bbd784551aaa9e35cb0aceb4ee59182a1dab9ab279d9e40dd56ecbbdd3",
|
|
pubkey: "07e188a1ff87ce171d517b8ed2bb7a31b1d3453a0db3b15379ec07b724d232f3",
|
|
created_at: 1678254161,
|
|
kind: 1,
|
|
content: "Connect my public key to mark@kosmos.org (confirmation rMjWEmvcvtTlQkMd)",
|
|
sig: "96796d420547d6e2c7be5de82a2ce7a48be99aac6415464a6081859ac1a9017305accc0228c630466a57d45ec1c3b456376eb538b76dfdaa2397e3258be02fdd"
|
|
}
|
|
}.to_json, headers: {
|
|
"CONTENT_TYPE" => "application/json",
|
|
"HTTP_ACCEPT" => "application/json"
|
|
}
|
|
end
|
|
|
|
it "returns a success status" do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
|
|
it "saves the pubkey" do
|
|
expect(user.nostr_pubkey).to eq("07e188a1ff87ce171d517b8ed2bb7a31b1d3453a0db3b15379ec07b724d232f3")
|
|
end
|
|
end
|
|
|
|
context "With wrong username" do
|
|
before do
|
|
post set_nostr_pubkey_settings_path, params: {
|
|
signed_event: {
|
|
id: "2e1e20ee762d6a5b5b30835eda9ca03146e4baf82490e53fd75794c08de08ac0",
|
|
pubkey: "07e188a1ff87ce171d517b8ed2bb7a31b1d3453a0db3b15379ec07b724d232f3",
|
|
created_at: 1678255391,
|
|
kind: 1,
|
|
content: "Connect my public key to admin@kosmos.org (confirmation rMjWEmvcvtTlQkMd)",
|
|
sig: "2ace19c9db892ac6383848721a3e08b13d90d689fdeac60d9633a623d3f08eb7e0d468f1b3e928d1ea979477c2ec46ee6cdb2d053ef2e4ed3c0630a51d249029"
|
|
}
|
|
}.to_json, headers: {
|
|
"CONTENT_TYPE" => "application/json",
|
|
"HTTP_ACCEPT" => "application/json"
|
|
}
|
|
end
|
|
|
|
it "returns a 422 status" do
|
|
expect(response).to have_http_status(422)
|
|
end
|
|
|
|
it "does not save the pubkey" do
|
|
expect(user.nostr_pubkey).to be_nil
|
|
end
|
|
end
|
|
|
|
context "With wrong shared secret" do
|
|
before do
|
|
session_stub = { shared_secret: "ho-chi-minh" }
|
|
allow_any_instance_of(SettingsController).to receive(:session).and_return(session_stub)
|
|
|
|
post set_nostr_pubkey_settings_path, params: {
|
|
signed_event: {
|
|
id: "84f266bbd784551aaa9e35cb0aceb4ee59182a1dab9ab279d9e40dd56ecbbdd3",
|
|
pubkey: "07e188a1ff87ce171d517b8ed2bb7a31b1d3453a0db3b15379ec07b724d232f3",
|
|
created_at: 1678254161,
|
|
kind: 1,
|
|
content: "Connect my public key to mark@kosmos.org (confirmation rMjWEmvcvtTlQkMd)",
|
|
sig: "96796d420547d6e2c7be5de82a2ce7a48be99aac6415464a6081859ac1a9017305accc0228c630466a57d45ec1c3b456376eb538b76dfdaa2397e3258be02fdd"
|
|
}
|
|
}.to_json, headers: {
|
|
"CONTENT_TYPE" => "application/json",
|
|
"HTTP_ACCEPT" => "application/json"
|
|
}
|
|
end
|
|
|
|
it "returns a 422 status" do
|
|
expect(response).to have_http_status(422)
|
|
end
|
|
|
|
it "does not save the pubkey" do
|
|
expect(user.nostr_pubkey).to be_nil
|
|
end
|
|
end
|
|
end
|
|
end
|