UserDetailsPasswordService

Issue: gh-2778
This commit is contained in:
Rob Winch
2018-07-14 16:59:39 -05:00
parent 02b857d82a
commit cabd0a5579
3 changed files with 86 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
/*
* Copyright 2002-2018 the original author or authors.
*
* Licensed 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 org.springframework.security.provisioning;
import org.junit.Test;
import org.springframework.security.core.userdetails.PasswordEncodedUser;
import org.springframework.security.core.userdetails.UserDetails;
import static org.assertj.core.api.Assertions.*;
/**
* @author Rob Winch
* @since 5.1
*/
public class InMemoryUserDetailsManagerTests {
private final UserDetails user = PasswordEncodedUser.user();
private InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager(this.user);
@Test
public void changePassword() {
String newPassword = "newPassword";
this.manager.updatePassword(this.user, newPassword);
assertThat(this.manager.loadUserByUsername(this.user.getUsername()).getPassword()).isEqualTo(newPassword);
}
}