File tree Expand file tree Collapse file tree 10 files changed +70
-0
lines changed
Expand file tree Collapse file tree 10 files changed +70
-0
lines changed Original file line number Diff line number Diff line change 3434 - K3S
3535 - K6
3636 - Kafka
37+ - LDAP
3738 - LocalStack
3839 - MariaDB
3940 - Milvus
Original file line number Diff line number Diff line change 3434 - K3S
3535 - K6
3636 - Kafka
37+ - LDAP
3738 - LocalStack
3839 - MariaDB
3940 - Milvus
Original file line number Diff line number Diff line change 3434 - K3S
3535 - K6
3636 - Kafka
37+ - LDAP
3738 - LocalStack
3839 - MariaDB
3940 - Milvus
Original file line number Diff line number Diff line change @@ -178,6 +178,11 @@ updates:
178178 schedule :
179179 interval : " weekly"
180180 open-pull-requests-limit : 10
181+ - package-ecosystem : " gradle"
182+ directory : " /modules/ldap"
183+ schedule :
184+ interval : " weekly"
185+ open-pull-requests-limit : 10
181186 - package-ecosystem : " gradle"
182187 directory : " /modules/localstack"
183188 schedule :
Original file line number Diff line number Diff line change 107107 - changed-files :
108108 - any-glob-to-any-file :
109109 - modules/kafka/**/*
110+ " modules/ldap " :
111+ - changed-files :
112+ - any-glob-to-any-file :
113+ - modules/ldap/**/*
110114" modules/localstack " :
111115 - changed-files :
112116 - any-glob-to-any-file :
Original file line number Diff line number Diff line change @@ -169,6 +169,9 @@ labels:
169169 - name : modules/kafka
170170 color : ' #006b75'
171171
172+ - name : modules/ldap
173+ color : ' #006b75'
174+
172175 - name : modules/localstack
173176 color : ' #006b75'
174177
Original file line number Diff line number Diff line change 1+ # LDAP
2+
3+ Testcontainers module for [ LLDAP] ( https://hub.docker.com/r/lldap/lldap ) .
4+
5+ ## LLdapContainer's usage examples
6+
7+ You can start a LLDAP container instance from any Java application by using:
8+
9+ <!-- codeinclude-->
10+ [ LLDAP container] ( ../../modules/ldap/src/test/java/org/testcontainers/ldap/LLdapContainerTest.java ) inside_block: container
11+ <!-- /codeinclude-->
12+
13+ ## Adding this module to your project dependencies
14+
15+ Add the following dependency to your ` pom.xml ` /` build.gradle ` file:
16+
17+ === "Gradle"
18+ ```groovy
19+ testImplementation "org.testcontainers:ldap:{{latest_version}}"
20+ ```
21+
22+ === "Maven"
23+ ```xml
24+ <dependency >
25+ <groupId >org.testcontainers</groupId >
26+ <artifactId >ldap</artifactId >
27+ <version >{{latest_version}}</version >
28+ <scope >test</scope >
29+ </dependency >
30+ ```
Original file line number Diff line number Diff line change 8989 - modules/k3s.md
9090 - modules/k6.md
9191 - modules/kafka.md
92+ - modules/ldap.md
9293 - modules/localstack.md
9394 - modules/milvus.md
9495 - modules/minio.md
Original file line number Diff line number Diff line change 1+ description = " Testcontainers :: LDAP"
2+
3+ dependencies {
4+ api project(' :testcontainers' )
5+
6+ testImplementation ' org.assertj:assertj-core:3.26.3'
7+ testImplementation ' com.unboundid:unboundid-ldapsdk:7.0.2'
8+ }
Original file line number Diff line number Diff line change 1+ <configuration >
2+
3+ <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
4+ <!-- encoders are assigned the type
5+ ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
6+ <encoder >
7+ <pattern >%d{HH:mm:ss.SSS} %-5level %logger - %msg%n</pattern >
8+ </encoder >
9+ </appender >
10+
11+ <root level =" INFO" >
12+ <appender-ref ref =" STDOUT" />
13+ </root >
14+
15+ <logger name =" org.testcontainers" level =" INFO" />
16+ </configuration >
You can’t perform that action at this time.
0 commit comments