|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright 2002-2017 the original author or authors.
|
|
|
+ * Copyright 2002-2020 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.
|
|
@@ -28,6 +28,7 @@ import org.powermock.core.classloader.annotations.PowerMockIgnore;
|
|
|
import org.powermock.core.classloader.annotations.PrepareOnlyThisForTest;
|
|
|
import org.powermock.modules.junit4.PowerMockRunner;
|
|
|
|
|
|
+import org.springframework.context.MessageSource;
|
|
|
import org.springframework.mock.web.MockHttpServletRequest;
|
|
|
import org.springframework.mock.web.MockHttpServletResponse;
|
|
|
import org.springframework.security.authentication.AccountStatusUserDetailsChecker;
|
|
@@ -44,6 +45,11 @@ import org.springframework.util.StringUtils;
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
|
|
|
+import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
|
|
|
+import static org.mockito.ArgumentMatchers.any;
|
|
|
+import static org.mockito.ArgumentMatchers.eq;
|
|
|
+import static org.mockito.Mockito.mock;
|
|
|
+import static org.mockito.Mockito.verify;
|
|
|
|
|
|
/**
|
|
|
* @author Luke Taylor
|
|
@@ -411,6 +417,22 @@ public class AbstractRememberMeServicesTests {
|
|
|
assertThat(cookie.getDomain()).isEqualTo("spring.io");
|
|
|
}
|
|
|
|
|
|
+ @Test
|
|
|
+ public void setMessageSourceWhenNullThenThrowsException() {
|
|
|
+ MockRememberMeServices services = new MockRememberMeServices();
|
|
|
+ assertThatIllegalArgumentException().isThrownBy(() -> services.setMessageSource(null));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void setMessageSourceWhenNotNullThenCanGet() {
|
|
|
+ MessageSource source = mock(MessageSource.class);
|
|
|
+ MockRememberMeServices services = new MockRememberMeServices();
|
|
|
+ services.setMessageSource(source);
|
|
|
+ String code = "code";
|
|
|
+ services.messages.getMessage(code);
|
|
|
+ verify(source).getMessage(eq(code), any(), any());
|
|
|
+ }
|
|
|
+
|
|
|
private Cookie[] createLoginCookie(String cookieToken) {
|
|
|
MockRememberMeServices services = new MockRememberMeServices(this.uds);
|
|
|
Cookie cookie = new Cookie(AbstractRememberMeServices.SPRING_SECURITY_REMEMBER_ME_COOKIE_KEY,
|