Disable ApacheDSContainerTests on Windows
Closes gh-10084
This commit is contained in:
parent
715f06c4c2
commit
c71498ae5f
|
|
@ -25,6 +25,8 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.condition.DisabledOnOs;
|
||||||
|
import org.junit.jupiter.api.condition.OS;
|
||||||
import org.junit.jupiter.api.io.TempDir;
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
import org.springframework.core.io.ClassPathResource;
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
|
@ -117,6 +119,7 @@ public class ApacheDSContainerTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@DisabledOnOs(OS.WINDOWS)
|
||||||
public void startWithLdapOverSslWithWrongPassword() throws Exception {
|
public void startWithLdapOverSslWithWrongPassword() throws Exception {
|
||||||
final ClassPathResource keyStoreResource = new ClassPathResource(
|
final ClassPathResource keyStoreResource = new ClassPathResource(
|
||||||
"/org/springframework/security/ldap/server/spring.keystore");
|
"/org/springframework/security/ldap/server/spring.keystore");
|
||||||
|
|
@ -150,6 +153,7 @@ public class ApacheDSContainerTests {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
|
@DisabledOnOs(OS.WINDOWS)
|
||||||
public void startWithLdapOverSsl() throws Exception {
|
public void startWithLdapOverSsl() throws Exception {
|
||||||
|
|
||||||
final ClassPathResource keyStoreResource = new ClassPathResource(
|
final ClassPathResource keyStoreResource = new ClassPathResource(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue