mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
492d203986
When running passing condition assertions in the same test the user had already been saved at that point. Split out so we have a not yet persisted user. Rename condition tests to improve clarity a bit.
46 lines
1 KiB
Ruby
46 lines
1 KiB
Ruby
require 'cases/helper'
|
|
require 'models/user'
|
|
|
|
class SecureTokenTest < ActiveRecord::TestCase
|
|
setup do
|
|
@user = User.new
|
|
end
|
|
|
|
def test_token_values_are_generated_for_specified_attributes_and_persisted_on_save
|
|
@user.save
|
|
assert_not_nil @user.token
|
|
assert_not_nil @user.auth_token
|
|
end
|
|
|
|
def test_regenerating_the_secure_token
|
|
@user.save
|
|
old_token = @user.token
|
|
old_auth_token = @user.auth_token
|
|
@user.regenerate_token
|
|
@user.regenerate_auth_token
|
|
|
|
assert_not_equal @user.token, old_token
|
|
assert_not_equal @user.auth_token, old_auth_token
|
|
end
|
|
|
|
def test_token_value_not_overwritten_when_present
|
|
@user.token = "custom-secure-token"
|
|
@user.save
|
|
|
|
assert_equal @user.token, "custom-secure-token"
|
|
end
|
|
|
|
def test_failing_if_condition_does_not_set_token
|
|
@user.token_condition = false
|
|
@user.save
|
|
|
|
assert_nil @user.conditional_token
|
|
end
|
|
|
|
def test_passing_if_condition_sets_token
|
|
@user.token_condition = true
|
|
@user.save
|
|
|
|
assert_not_nil @user.conditional_token
|
|
end
|
|
end
|