-
Notifications
You must be signed in to change notification settings - Fork 0
[improve] Add jdbc common collect e2e code (#3273) #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
eefc9dd
8abb6ef
3ba43cd
76f64f6
62b991d
c2630a6
42aeb83
d073416
729e4a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hertzbeat.collector.collect.basic.database; | ||
|
||
/** | ||
* Database type (image mame) and image tag enumeration class | ||
*/ | ||
public enum DatabaseImagesEnum { | ||
MYSQL("mysql", "8.0.36"), | ||
POSTGRESQL("postgresql", "15"); | ||
|
||
private final String imageName; | ||
private final String defaultTag; | ||
|
||
DatabaseImagesEnum(String imageName, String defaultTag) { | ||
this.imageName = imageName; | ||
this.defaultTag = defaultTag; | ||
} | ||
|
||
public String getImageName() { | ||
return imageName; | ||
} | ||
|
||
public String getDefaultTag() { | ||
return defaultTag; | ||
} | ||
|
||
public String getFullImageName() { | ||
return imageName + ":" + defaultTag; | ||
} | ||
|
||
public static DatabaseImagesEnum fromImageName(String imageName) { | ||
for (DatabaseImagesEnum value : values()) { | ||
if (value.getImageName().equalsIgnoreCase(imageName)) { | ||
return value; | ||
} | ||
} | ||
throw new IllegalArgumentException("Unknown database image name: " + imageName); | ||
} | ||
|
||
public static DatabaseImagesEnum fromFullImageName(String fullImageName) { | ||
for (DatabaseImagesEnum value : values()) { | ||
if (value.getFullImageName().equalsIgnoreCase(fullImageName)) { | ||
return value; | ||
} | ||
} | ||
throw new IllegalArgumentException("Unknown full database image name: " + fullImageName); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "DatabaseImageNameEnum{" + | ||
"imageName='" + imageName + '\'' + | ||
", defaultTag='" + defaultTag + '\'' + | ||
'}'; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hertzbeat.collector.collect.basic.database; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.hertzbeat.collector.collect.AbstractCollectE2eTest; | ||
import org.apache.hertzbeat.collector.collect.database.JdbcCommonCollect; | ||
import org.apache.hertzbeat.collector.util.CollectUtil; | ||
import org.apache.hertzbeat.common.entity.job.Configmap; | ||
import org.apache.hertzbeat.common.entity.job.Job; | ||
import org.apache.hertzbeat.common.entity.job.Metrics; | ||
import org.apache.hertzbeat.common.entity.job.protocol.JdbcProtocol; | ||
import org.apache.hertzbeat.common.entity.job.protocol.Protocol; | ||
import org.apache.hertzbeat.common.entity.message.CollectRep; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import java.util.HashMap; | ||
import java.util.LinkedList; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; | ||
|
||
/** | ||
* E2e test monitored by Jdbc Common | ||
*/ | ||
@Slf4j | ||
@ExtendWith(MockitoExtension.class) | ||
public class JdbcCommonCollectE2eTest extends AbstractCollectE2eTest { | ||
private static final DatabaseImagesEnum databaseImage = DatabaseImagesEnum.fromImageName("postgresql"); | ||
|
||
private static final String DATABASE_IMAGE_NAME = databaseImage.getImageName(); | ||
|
||
private static final String DATABASE_IMAGE_TAG = databaseImage.getDefaultTag(); | ||
|
||
@BeforeEach | ||
public void setUp() throws Exception { | ||
super.setUp(); | ||
collect = new JdbcCommonCollect(); | ||
metrics = new Metrics(); | ||
} | ||
|
||
@Override | ||
protected CollectRep.MetricsData.Builder collectMetrics(Metrics metricsDef) { | ||
JdbcProtocol jdbcProtocol = (JdbcProtocol) buildProtocol(metricsDef); | ||
metrics.setJdbc(jdbcProtocol); | ||
CollectRep.MetricsData.Builder metricsData = CollectRep.MetricsData.newBuilder(); | ||
metricsData.setApp(DATABASE_IMAGE_NAME); | ||
metrics.setAliasFields(metricsDef.getAliasFields()); | ||
return collectMetricsData(metrics, metricsDef, metricsData); | ||
} | ||
|
||
@Override | ||
protected Protocol buildProtocol(Metrics metricsDef) { | ||
JdbcProtocol jdbcProtocol = metricsDef.getJdbc(); | ||
jdbcProtocol.setHost(DATABASE_IMAGE_NAME); | ||
jdbcProtocol.setPort(DATABASE_IMAGE_TAG); | ||
jdbcProtocol.setDatabase("test"); | ||
jdbcProtocol.setPlatform("testcontainers"); | ||
return jdbcProtocol; | ||
} | ||
|
||
@Test | ||
public void testWithJdbcTcUrl() { | ||
Job dockerJob = appService.getAppDefine(DATABASE_IMAGE_NAME); | ||
List<Map<String, Configmap>> configmapFromPreCollectData = new LinkedList<>(); | ||
for (Metrics metricsDef : dockerJob.getMetrics()) { | ||
metricsDef = CollectUtil.replaceCryPlaceholderToMetrics(metricsDef, configmapFromPreCollectData.size() > 0 ? configmapFromPreCollectData.get(0) : new HashMap<>()); | ||
String metricName = metricsDef.getName(); | ||
if ("slow_sql".equals(metricName)) { | ||
Metrics finalMetricsDef = metricsDef; | ||
assertDoesNotThrow(() -> collectMetrics(finalMetricsDef), | ||
String.format("%s failed to collect metrics)", metricName)); | ||
log.info("{} metrics validation passed", metricName); | ||
continue; // skip slow_sql, extra extensions | ||
} | ||
CollectRep.MetricsData metricsData = validateMetricsCollection(metricsDef, metricName, true); | ||
CollectUtil.getConfigmapFromPreCollectData(metricsData); | ||
} | ||
Comment on lines
+95
to
+97
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion The return value of getConfigmapFromPreCollectData is not used Line 96 calls -CollectUtil.getConfigmapFromPreCollectData(metricsData);
+// Extract configmap data for potential use in subsequent test iterations
+Map<String, Configmap> configmap = CollectUtil.getConfigmapFromPreCollectData(metricsData);
+if (!configmap.isEmpty()) {
+ configmapFromPreCollectData.add(configmap);
+}
|
||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Verify if port assignment is correct
Line 75 assigns
DATABASE_IMAGE_TAG
to theport
property, which seems unusual as ports are typically numeric values. Consider verifying if this is the intended behavior or if it should be using an actual port number.🏁 Script executed:
Length of output: 2986
🏁 Script executed:
Length of output: 4427
🏁 Script executed:
Length of output: 6135
Confirm port assignment in buildProtocol
The test currently does:
Here,
DATABASE_IMAGE_TAG
comes fromDatabaseImagesEnum.getDefaultTag()
(e.g."15"
), which is the Docker image version—not a TCP port. SinceJdbcProtocol.port
is the port used to connect to the database, this will direct the driver to port 15 rather than the actual database port (e.g. 5432 or the Testcontainers–mapped port).Please verify and update accordingly:
"5432"
) or inject it via configuration.Location:
hertzbeat-e2e/hertzbeat-collector-basic-e2e/src/test/java/org/apache/hertzbeat/collector/collect/basic/database/JdbcCommonCollectE2eTest.java
protected Protocol buildProtocol(Metrics metricsDef) { … }