use of org.wso2.carbon.identity.application.authentication.framework.context.AuthenticationContext in project identity-outbound-auth-sms-otp by wso2-extensions.
the class SMSOTPUtilsTest method testIsEnableResendCodeFromRegistry.
@Test
public void testIsEnableResendCodeFromRegistry() throws AuthenticationFailedException {
AuthenticationContext authenticationContext = new AuthenticationContext();
authenticationContext.setTenantDomain("wso2.org");
authenticationContext.setProperty(SMSOTPConstants.IS_ENABLED_RESEND, "true");
Assert.assertEquals(SMSOTPUtils.isEnableResendCode(authenticationContext, SMSOTPConstants.AUTHENTICATOR_NAME), true);
}
use of org.wso2.carbon.identity.application.authentication.framework.context.AuthenticationContext in project identity-outbound-auth-sms-otp by wso2-extensions.
the class SMSOTPUtilsTest method testGetConfigurationFromLocalFile.
@Test
public void testGetConfigurationFromLocalFile() throws AuthenticationFailedException {
AuthenticationContext authenticationContext = new AuthenticationContext();
authenticationContext.setTenantDomain("carbon.super");
authenticationContext.setProperty(IdentityHelperConstants.GET_PROPERTY_FROM_REGISTRY, IdentityHelperConstants.GET_PROPERTY_FROM_REGISTRY);
AuthenticatorConfig authenticatorConfig = new AuthenticatorConfig();
Map<String, String> parameters = new HashMap<String, String>();
parameters.put(SMSOTPConstants.IS_SMSOTP_MANDATORY, "true");
parameters.put(SMSOTPConstants.IS_ENABLED_RESEND, "true");
when(FileBasedConfigurationBuilder.getInstance()).thenReturn(fileBasedConfigurationBuilder);
authenticatorConfig.setParameterMap(parameters);
when(fileBasedConfigurationBuilder.getAuthenticatorBean(anyString())).thenReturn(authenticatorConfig);
Assert.assertEquals(SMSOTPUtils.getConfiguration(authenticationContext, SMSOTPConstants.AUTHENTICATOR_NAME, SMSOTPConstants.IS_SMSOTP_MANDATORY), "true");
}
use of org.wso2.carbon.identity.application.authentication.framework.context.AuthenticationContext in project identity-outbound-auth-sms-otp by wso2-extensions.
the class SMSOTPUtilsTest method testGetConfigurationFromRegistry.
@Test
public void testGetConfigurationFromRegistry() throws AuthenticationFailedException {
AuthenticationContext authenticationContext = new AuthenticationContext();
authenticationContext.setTenantDomain("wso2.org");
authenticationContext.setProperty(SMSOTPConstants.IS_SMSOTP_MANDATORY, true);
authenticationContext.setProperty("getPropertiesFromLocal", null);
Assert.assertEquals(SMSOTPUtils.getConfiguration(authenticationContext, SMSOTPConstants.AUTHENTICATOR_NAME, SMSOTPConstants.IS_SMSOTP_MANDATORY), "true");
}
use of org.wso2.carbon.identity.application.authentication.framework.context.AuthenticationContext in project identity-outbound-auth-sms-otp by wso2-extensions.
the class SMSOTPUtilsTest method testIsSendOTPDirectlyToMobileFromRegistry.
@Test
public void testIsSendOTPDirectlyToMobileFromRegistry() throws AuthenticationFailedException {
AuthenticationContext authenticationContext = new AuthenticationContext();
authenticationContext.setTenantDomain("wso2.org");
authenticationContext.setProperty(SMSOTPConstants.IS_SEND_OTP_DIRECTLY_TO_MOBILE, "true");
Assert.assertEquals(SMSOTPUtils.isSendOTPDirectlyToMobile(authenticationContext, SMSOTPConstants.AUTHENTICATOR_NAME), true);
}
Aggregations