mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
- Extract to Devise custom strategy - Use `SSL_CLIENT_S_DN_CN` env variable instead of `SSL_CLIENT_S_DN` to get ID card data - Remove `database_authenticatable` strategy from `RegistrantUser` Closes #1047
13 lines
No EOL
426 B
Ruby
13 lines
No EOL
426 B
Ruby
require 'test_helper'
|
|
|
|
class IdCardAuthenticatableTest < ActiveSupport::TestCase
|
|
def test_valid_when_id_card_data_is_present_in_env
|
|
strategy = Devise::Strategies::IdCardAuthenticatable.new({ 'SSL_CLIENT_S_DN_CN' => 'some' })
|
|
assert strategy.valid?
|
|
end
|
|
|
|
def test_not_valid_when_id_card_data_is_absent_in_env
|
|
strategy = Devise::Strategies::IdCardAuthenticatable.new({})
|
|
assert_not strategy.valid?
|
|
end
|
|
end |