40
40
import org .testcontainers .containers .GenericContainer ;
41
41
import org .testcontainers .containers .Network ;
42
42
import org .testcontainers .containers .output .Slf4jLogConsumer ;
43
+ import org .testcontainers .containers .wait .strategy .Wait ;
44
+ import org .testcontainers .images .PullPolicy ;
43
45
import org .testcontainers .shaded .com .fasterxml .jackson .core .JsonProcessingException ;
44
46
import org .testcontainers .shaded .com .fasterxml .jackson .databind .ObjectMapper ;
45
47
import org .testcontainers .utility .DockerImageName ;
46
48
import org .testcontainers .utility .MountableFile ;
47
49
48
50
public abstract class AbstractSmokeTest {
49
51
private static final Logger log = LoggerFactory .getLogger (OpenTelemetryStorage .class );
50
- private static final String OTEL_COLLECTOR_IMAGE = "otel/opentelemetry-collector:latest " ;
52
+ private static final String OTEL_COLLECTOR_IMAGE = "otel/opentelemetry-collector:0.21.0 " ;
51
53
private static final String MOCK_BACKEND_IMAGE =
52
54
"ghcr.io/open-telemetry/java-test-containers:smoke-fake-backend-20201128.1734635" ;
53
55
private static final String NETWORK_ALIAS_OTEL_COLLECTOR = "collector" ;
54
- private static final String NETWORK_ALIAS_OTEL_MOCK_STORAGE = "storage " ;
56
+ private static final String NETWORK_ALIAS_OTEL_MOCK_STORAGE = "backend " ;
55
57
private static final String OTEL_EXPORTER_ENDPOINT =
56
58
String .format ("http://%s:9411/api/v2/spans" , NETWORK_ALIAS_OTEL_COLLECTOR );
57
59
@@ -76,22 +78,24 @@ public abstract class AbstractSmokeTest {
76
78
public static void beforeAll () {
77
79
openTelemetryStorage =
78
80
new OpenTelemetryStorage (MOCK_BACKEND_IMAGE )
81
+ .withImagePullPolicy (PullPolicy .alwaysPull ())
82
+ .withExposedPorts (8080 )
83
+ .waitingFor (Wait .forHttp ("/health" ).forPort (8080 ))
79
84
.withNetwork (network )
80
85
.withNetworkAliases (NETWORK_ALIAS_OTEL_MOCK_STORAGE )
81
86
.withLogConsumer (new Slf4jLogConsumer (log ));
82
87
openTelemetryStorage .start ();
83
88
84
89
collector =
85
90
new OpenTelemetryCollector (OTEL_COLLECTOR_IMAGE )
91
+ .withImagePullPolicy (PullPolicy .alwaysPull ())
86
92
.withNetwork (network )
87
93
.withNetworkAliases (NETWORK_ALIAS_OTEL_COLLECTOR )
88
94
.withLogConsumer (new Slf4jLogConsumer (log ))
89
95
.dependsOn (openTelemetryStorage )
90
96
.withCopyFileToContainer (
91
- MountableFile .forClasspathResource ("/otelcol-config.yaml" ),
92
- "/etc/otelcol-config.yaml" )
93
- .withLogConsumer (new Slf4jLogConsumer (log ))
94
- .withCommand ("--config /etc/otelcol-config.yaml" );
97
+ MountableFile .forClasspathResource ("/otel.yaml" ), "/etc/otel.yaml" )
98
+ .withCommand ("--config /etc/otel.yaml" );
95
99
collector .start ();
96
100
}
97
101
0 commit comments