add user_password tests

This commit is contained in:
Kelvin Tan 2024-10-02 20:33:12 +08:00
parent f267cf0502
commit 3d1eb484e5
No known key found for this signature in database
GPG Key ID: 49C85DCE965C53EF
2 changed files with 56 additions and 12 deletions

View File

@ -14,6 +14,7 @@ class UserPassword < ActiveRecord::Base
after_save :clear_raw_password
def password
# this getter method is still required, but we store the set password in @raw_password instead of making it easily accessible from the getter
nil
end

View File

@ -1,22 +1,65 @@
# frozen_string_literal: true
RSpec.describe UserPassword do
context "when saving passwords through User" do
it "should save when first time password" do
pw = "helloworldakjdlakjfalkjfd"
u = Fabricate(:user, password: nil)
u.password = pw
u.save
expect(u.confirm_password?(pw)).to eq true
describe "#confirm_password?" do
context "when input password is same as saved password" do
let(:pw) { SecureRandom.hex }
it "returns true after saving password for the first time" do
u = Fabricate(:user, password: nil)
u.password = pw
u.save!
expect(u.confirm_password?(pw)).to eq true
end
it "returns true after updating existing password" do
pw = SecureRandom.hex
u = Fabricate(:user, password: "initial_password_123")
u.update!(password: pw)
expect(u.confirm_password?(pw)).to eq true
end
it "updates the algorithm if it's outdated and password_hash, and returns true" do
user_password = Fabricate(:user, password: pw).user_password
old_algorithm = "$pbkdf2-sha256$i=5,l=32$"
old_hash =
described_class.new.send(:hash_password, pw, user_password.password_salt, old_algorithm)
user_password.update_columns(password_algorithm: old_algorithm, password_hash: old_hash)
result = nil
expect { result = user_password.confirm_password?(pw) }.to change {
user_password.password_algorithm
}.from(old_algorithm).to(described_class::TARGET_PASSWORD_ALGORITHM)
expect(result).to eq true
new_hash =
described_class.new.send(
:hash_password,
pw,
user_password.password_salt,
user_password.password_algorithm,
)
expect(user_password.password_hash).to eq(new_hash)
end
end
it "should save when updated existing password" do
pw = SecureRandom.hex
u = Fabricate(:user, password: "lajdlaksjfalkfjaelkfj")
u.update!(password: pw)
expect(u.confirm_password?(pw)).to eq true
context "when input password is not the same as saved password" do
let(:actual_pw) { SecureRandom.hex }
it "returns false" do
u = Fabricate(:user, password: actual_pw)
expect(u.confirm_password?(SecureRandom.hex)).to eq false
end
end
context "when used on an unpersisted record" do
it "returns false" do
user_password = Fabricate.build(:user_password, user: nil)
expect(user_password.confirm_password?(user_password.password)).to eq false
end
end
end
context "for validations" do
it "should validate presence of user_id" do
user_password = Fabricate.build(:user_password, user: nil)