-
Notifications
You must be signed in to change notification settings - Fork 873
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test that statement sanitizer is enabled by default
- Loading branch information
1 parent
c53fe0c
commit c2b2a17
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
...spring/autoconfigure/instrumentation/r2dbc/R2DbcInstrumentationAutoConfigurationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.instrumentation.spring.autoconfigure.instrumentation.r2dbc; | ||
|
||
import io.opentelemetry.api.OpenTelemetry; | ||
import io.opentelemetry.instrumentation.testing.junit.LibraryInstrumentationExtension; | ||
import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties; | ||
import io.opentelemetry.sdk.autoconfigure.spi.internal.DefaultConfigProperties; | ||
import io.opentelemetry.semconv.incubating.DbIncubatingAttributes; | ||
import java.util.Collections; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.springframework.boot.autoconfigure.AutoConfigurations; | ||
import org.springframework.boot.autoconfigure.r2dbc.R2dbcAutoConfiguration; | ||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; | ||
import org.springframework.r2dbc.core.DatabaseClient; | ||
|
||
class R2DbcInstrumentationAutoConfigurationTest { | ||
|
||
@RegisterExtension | ||
static final LibraryInstrumentationExtension testing = LibraryInstrumentationExtension.create(); | ||
|
||
private final ApplicationContextRunner runner = | ||
new ApplicationContextRunner() | ||
.withBean( | ||
ConfigProperties.class, | ||
() -> DefaultConfigProperties.createFromMap(Collections.emptyMap())) | ||
.withConfiguration( | ||
AutoConfigurations.of( | ||
R2dbcInstrumentationAutoConfiguration.class, R2dbcAutoConfiguration.class)) | ||
.withBean("openTelemetry", OpenTelemetry.class, testing::getOpenTelemetry); | ||
|
||
@Test | ||
void statementSanitizerEnabledByDefault() { | ||
runner.run( | ||
context -> { | ||
DatabaseClient client = context.getBean(DatabaseClient.class); | ||
client | ||
.sql( | ||
"CREATE TABLE IF NOT EXISTS player(id INT NOT NULL AUTO_INCREMENT, name VARCHAR(255), age INT, PRIMARY KEY (id))") | ||
.fetch() | ||
.all() | ||
.blockLast(); | ||
client.sql("SELECT * FROM player WHERE id = 1").fetch().all().blockLast(); | ||
testing.waitAndAssertTraces( | ||
trace -> | ||
trace.hasSpansSatisfyingExactly( | ||
span -> | ||
span.hasAttribute( | ||
DbIncubatingAttributes.DB_STATEMENT, | ||
"CREATE TABLE IF NOT EXISTS player(id INT NOT NULL AUTO_INCREMENT, name VARCHAR(?), age INT, PRIMARY KEY (id))")), | ||
trace -> | ||
trace.hasSpansSatisfyingExactly( | ||
span -> | ||
span.hasAttribute( | ||
DbIncubatingAttributes.DB_STATEMENT, | ||
"SELECT * FROM player WHERE id = ?"))); | ||
}); | ||
} | ||
} |