Browse Source

feat: update tests

CLDC-2491-Change-address-bug
natdeanlewissoftwire 1 year ago
parent
commit
6b0820ecfc
  1. 18
      spec/requests/users_controller_spec.rb

18
spec/requests/users_controller_spec.rb

@ -304,7 +304,7 @@ RSpec.describe UsersController, type: :request do
it "allows changing email but not dpo or key_contact" do it "allows changing email but not dpo or key_contact" do
user.reload user.reload
expect(user.unconfirmed_email).to eq(new_email) expect(user.email).to eq(new_email)
expect(user.is_data_protection_officer?).to be false expect(user.is_data_protection_officer?).to be false
expect(user.is_key_contact?).to be false expect(user.is_key_contact?).to be false
end end
@ -702,7 +702,7 @@ RSpec.describe UsersController, type: :request do
it "allows changing email and dpo" do it "allows changing email and dpo" do
user.reload user.reload
expect(user.unconfirmed_email).to eq(new_email) expect(user.email).to eq(new_email)
expect(user.is_data_protection_officer?).to be true expect(user.is_data_protection_officer?).to be true
expect(user.is_key_contact?).to be true expect(user.is_key_contact?).to be true
end end
@ -749,7 +749,7 @@ RSpec.describe UsersController, type: :request do
it "allows changing email, dpo, key_contact" do it "allows changing email, dpo, key_contact" do
patch "/users/#{other_user.id}", headers: headers, params: params patch "/users/#{other_user.id}", headers: headers, params: params
other_user.reload other_user.reload
expect(other_user.unconfirmed_email).to eq(new_email) expect(other_user.email).to eq(new_email)
expect(other_user.is_data_protection_officer?).to be true expect(other_user.is_data_protection_officer?).to be true
expect(other_user.is_key_contact?).to be true expect(other_user.is_key_contact?).to be true
end end
@ -1454,14 +1454,14 @@ RSpec.describe UsersController, type: :request do
it "allows changing email and dpo" do it "allows changing email and dpo" do
request request
user.reload user.reload
expect(user.unconfirmed_email).to eq(new_email) expect(user.email).to eq(new_email)
expect(user.is_data_protection_officer?).to be true expect(user.is_data_protection_officer?).to be true
expect(user.is_key_contact?).to be true expect(user.is_key_contact?).to be true
end end
it "sends a confirmation email to both emails" do it "does not send a confirmation email to either email" do
expect(notify_client).to receive(:send_email).with(email_address: new_email, template_id: User::CONFIRMABLE_TEMPLATE_ID, personalisation:).once expect(notify_client).not_to receive(:send_email).with(email_address: new_email, template_id: User::CONFIRMABLE_TEMPLATE_ID, personalisation:)
expect(notify_client).to receive(:send_email).with(email_address: user.email, template_id: User::CONFIRMABLE_TEMPLATE_ID, personalisation:).once expect(notify_client).not_to receive(:send_email).with(email_address: user.email, template_id: User::CONFIRMABLE_TEMPLATE_ID, personalisation:)
request request
end end
end end
@ -1507,7 +1507,7 @@ RSpec.describe UsersController, type: :request do
it "allows changing email, dpo, key_contact" do it "allows changing email, dpo, key_contact" do
patch "/users/#{other_user.id}", headers: headers, params: params patch "/users/#{other_user.id}", headers: headers, params: params
other_user.reload other_user.reload
expect(other_user.unconfirmed_email).to eq(new_email) expect(other_user.email).to eq(new_email)
expect(other_user.is_data_protection_officer?).to be true expect(other_user.is_data_protection_officer?).to be true
expect(other_user.is_key_contact?).to be true expect(other_user.is_key_contact?).to be true
end end
@ -1564,7 +1564,7 @@ RSpec.describe UsersController, type: :request do
it "allows changing email, dpo, key_contact" do it "allows changing email, dpo, key_contact" do
patch "/users/#{other_user.id}", headers: headers, params: params patch "/users/#{other_user.id}", headers: headers, params: params
other_user.reload other_user.reload
expect(other_user.unconfirmed_email).to eq(new_email) expect(other_user.email).to eq(new_email)
expect(other_user.is_data_protection_officer?).to be true expect(other_user.is_data_protection_officer?).to be true
expect(other_user.is_key_contact?).to be true expect(other_user.is_key_contact?).to be true
end end

Loading…
Cancel
Save