Skip to content

Commit 1409ef0

Browse files
committed
Add InMemoryRelyingPartyRegistrationTests
Issue gh-12848
1 parent 9bba1a1 commit 1409ef0

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* Copyright 2002-2023 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.security.saml2.provider.service.registration;
18+
19+
import org.junit.jupiter.api.Test;
20+
21+
import static org.assertj.core.api.Assertions.assertThat;
22+
23+
/**
24+
* Tests for {@link InMemoryRelyingPartyRegistrationRepository}
25+
*/
26+
public class InMemoryRelyingPartyRegistrationRepositoryTests {
27+
28+
@Test
29+
void findByRegistrationIdWhenGivenIdThenReturnsMatchingRegistration() {
30+
RelyingPartyRegistration registration = TestRelyingPartyRegistrations.relyingPartyRegistration().build();
31+
InMemoryRelyingPartyRegistrationRepository registrations = new InMemoryRelyingPartyRegistrationRepository(
32+
registration);
33+
assertThat(registrations.findByRegistrationId(registration.getRegistrationId())).isSameAs(registration);
34+
}
35+
36+
@Test
37+
void findByRegistrationIdWhenGivenWrongIdThenReturnsNull() {
38+
RelyingPartyRegistration registration = TestRelyingPartyRegistrations.relyingPartyRegistration().build();
39+
InMemoryRelyingPartyRegistrationRepository registrations = new InMemoryRelyingPartyRegistrationRepository(
40+
registration);
41+
assertThat(registrations.findByRegistrationId(registration.getRegistrationId() + "wrong")).isNull();
42+
assertThat(registrations.findByRegistrationId(null)).isNull();
43+
}
44+
45+
}

0 commit comments

Comments
 (0)