blob: ad73f72e9f215406c20175f56c59f9a7e1562583 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.mifos.provisioner.security;
import io.mifos.provisioner.AbstractServiceTest;
import io.mifos.provisioner.api.v1.domain.AuthenticationResponse;
import io.mifos.provisioner.api.v1.domain.PasswordPolicy;
import io.mifos.provisioner.config.ProvisionerConstants;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import org.apache.fineract.cn.api.context.AutoUserContext;
import org.apache.fineract.cn.api.util.ApiConstants;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.util.Base64Utils;
/**
* @author Myrle Krantz
*/
public class TestPasswordPolicy extends AbstractServiceTest {
static private String currentPassword = ProvisionerConstants.INITIAL_PWD;
@Test
public void shouldUpdatePassword() {
final PasswordPolicy passwordPolicy = new PasswordPolicy();
passwordPolicy.setNewPassword(Base64Utils.encodeToString("new-pwd".getBytes()));
setPasswordPolicy(passwordPolicy);
currentPassword = Base64Utils.encodeToString("new-pwd".getBytes());
final AuthenticationResponse authenticate =
provisioner.authenticate(this.getClientId(), ApiConstants.SYSTEM_SU, currentPassword);
checkAuthenticationResponse(authenticate);
}
@Test
public void shouldUpdatePasswordExpiration() {
final PasswordPolicy passwordPolicy = new PasswordPolicy();
passwordPolicy.setExpiresInDays(10);
setPasswordPolicy(passwordPolicy);
final AuthenticationResponse authenticate =
provisioner.authenticate(this.getClientId(), ApiConstants.SYSTEM_SU, currentPassword);
checkAuthenticationResponse(authenticate);
}
@Test
public void shouldUpdatePasswordPolicy() {
final PasswordPolicy passwordPolicy = new PasswordPolicy();
passwordPolicy.setNewPassword(Base64Utils.encodeToString("new-pwd".getBytes()));
passwordPolicy.setExpiresInDays(10);
setPasswordPolicy(passwordPolicy);
currentPassword = Base64Utils.encodeToString("new-pwd".getBytes());
final AuthenticationResponse authenticate =
provisioner.authenticate(this.getClientId(), ApiConstants.SYSTEM_SU, currentPassword);
checkAuthenticationResponse(authenticate);
}
private void setPasswordPolicy(final PasswordPolicy passwordPolicy)
{
final AuthenticationResponse authenticate = provisioner.authenticate(this.getClientId(), ApiConstants.SYSTEM_SU, currentPassword);
try (final AutoUserContext ignore = new AutoUserContext(ApiConstants.SYSTEM_SU, authenticate.getToken())) {
provisioner.updatePasswordPolicy(ApiConstants.SYSTEM_SU, passwordPolicy);
}
}
private void checkAuthenticationResponse(final AuthenticationResponse authenticate)
{
Assert.assertNotNull(authenticate.getToken());
final String passwordExpiresAt = authenticate.getAccessTokenExpiration();
Assert.assertNotNull(passwordExpiresAt);
final LocalDateTime expires
= LocalDateTime.parse(passwordExpiresAt, DateTimeFormatter.ISO_LOCAL_DATE_TIME);
Assert.assertTrue(expires.isAfter(LocalDateTime.now(ZoneId.of("UTC"))));
}
}