File tree Expand file tree Collapse file tree 5 files changed +11
-20
lines changed
tarantool-core/src/test/java/io/tarantool/core/integration
tarantool-pooling/src/test/java/io/tarantool/pool/integration
tarantool-shared-resources
main/java/org/testcontainers/containers/tarantool Expand file tree Collapse file tree 5 files changed +11
-20
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,8 @@ public class MVCCStreamsTest extends BaseTest {
5757 private static final ArrayValue keyB = ValueFactory .newArray (ValueFactory .newString ("key_d" ));
5858
5959 @ Container
60- private static final TarantoolContainerImpl tt = new TarantoolContainerImpl ().withEnv (ENV_MAP );
60+ private static final TarantoolContainerImpl tt =
61+ new TarantoolContainerImpl ().withEnv (ENV_MAP ).withScriptFileName ("server-mvcc.lua" );
6162
6263 @ BeforeAll
6364 public static void setUp () throws Exception {
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ public class ConnectionPoolReconnectsTest extends BasePoolTest {
4040 private static final Logger log = LoggerFactory .getLogger (ConnectionPoolReconnectsTest .class );
4141
4242 @ Container
43- private static TarantoolContainerImpl tt = new TarantoolContainerImpl ().withEnv (ENV_MAP );
43+ private static TarantoolContainerImpl tt = new TarantoolContainerImpl ().withEnv (ENV_MAP )
44+ .withFixedExposedPort (3301 , 3301 );
4445
4546 @ BeforeEach
4647 public void setUp () {
Original file line number Diff line number Diff line change 55 </encoder >
66 </appender >
77
8- <root level =" INFO " >
8+ <root level =" WARN " >
99 <appender-ref ref =" STDOUT" />
1010 </root >
1111 <logger name =" org.springframework" level =" INFO" />
12- <logger name =" org.testcontainers" level =" INFO " />
12+ <logger name =" org.testcontainers" level =" WARN " />
1313 <!-- <logger name="com.github.dockerjava" level="DEBUG"/> -->
1414</configuration >
Original file line number Diff line number Diff line change 1111
1212import static org .testcontainers .containers .utils .PathUtils .normalizePath ;
1313import com .github .dockerjava .api .command .InspectContainerResponse ;
14- import org .testcontainers .containers .*;
14+ import org .testcontainers .containers .BindMode ;
15+ import org .testcontainers .containers .Container ;
16+ import org .testcontainers .containers .GenericContainer ;
17+ import org .testcontainers .containers .TarantoolContainerClientHelper ;
18+ import org .testcontainers .containers .TarantoolContainerOperations ;
1519import org .testcontainers .containers .utils .SslContext ;
1620import org .testcontainers .containers .wait .strategy .Wait ;
1721
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments