Skip to content

Commit 08f23fa

Browse files
authored
Update BWC Test Version and Enhance Code Coverage (opensearch-project#1253)
* Update BWC Test Version and Enhance Code Coverage This PR updates the BWC test version to 2.16 in the build.gradle file and includes additional integration and unit tests to improve code coverage. Testing Performed: * Executed gradle build to ensure successful build and integration. Signed-off-by: Kaituo Li <[email protected]> * address comments Signed-off-by: Kaituo Li <[email protected]> --------- Signed-off-by: Kaituo Li <[email protected]>
1 parent 3f0fc8c commit 08f23fa

26 files changed

+1564
-483
lines changed

.github/workflows/benchmark.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
su `id -un 1000` -c "./gradlew ':test' --tests 'org.opensearch.ad.ml.HCADModelPerfTests' \
5959
-Dtests.seed=2AEBDBBAE75AC5E0 -Dtests.security.manager=false \
6060
-Dtests.locale=es-CU -Dtests.timezone=Chile/EasterIsland -Dtest.logs=true \
61-
-Dmodel-benchmark=true"
61+
-Dtests.timeoutSuite=3600000! -Dmodel-benchmark=true"
6262
;;
6363
single_stream)
6464
su `id -un 1000` -c "./gradlew integTest --tests 'org.opensearch.ad.e2e.SingleStreamModelPerfIT' \
6565
-Dtests.seed=60CDDB34427ACD0C -Dtests.security.manager=false \
6666
-Dtests.locale=kab-DZ -Dtests.timezone=Asia/Hebron -Dtest.logs=true \
67-
-Dmodel-benchmark=true"
67+
-Dtests.timeoutSuite=3600000! -Dmodel-benchmark=true"
6868
;;
6969
esac

.github/workflows/test_security.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
- name: Pull and Run Docker
3838
run: |
3939
plugin=`basename $(ls build/distributions/*.zip)`
40-
version=`echo $plugin|awk -F- '{print $5}'| cut -d. -f 1-3`
41-
plugin_version=`echo $plugin|awk -F- '{print $5}'| cut -d. -f 1-4`
42-
qualifier=`echo $plugin|awk -F- '{print $6}'| cut -d. -f 1-1`
40+
version=`echo $plugin|awk -F- '{print $4}'| cut -d. -f 1-3`
41+
plugin_version=`echo $plugin|awk -F- '{print $4}'| cut -d. -f 1-4`
42+
qualifier=`echo $plugin|awk -F- '{print $5}'| cut -d. -f 1-1`
4343
4444
if $qualifier!=SNAPSHOT
4545
then

build-tools/coverage.gradle

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
apply plugin: 'jacoco'
7+
8+
jacoco {
9+
toolVersion = "0.8.10"
10+
}
11+
12+
/**
13+
* This code sets up coverage reporting manually for the AD plugin tests. This is complicated because:
14+
* 1. The OS integTest Task doesn't implement Gradle's JavaForkOptions so we have to manually start the jacoco agent with the test JVM
15+
* 2. The cluster nodes are stopped using 'kill -9' which means jacoco can't dump it's execution output to a file on VM shutdown
16+
* 3. The Java Security Manager prevents JMX from writing execution output to the file.
17+
*
18+
* To workaround these we start the cluster with jmx enabled and then use Jacoco's JMX MBean to get the execution data before the
19+
* cluster is stopped and dump it to a file. Luckily our current security policy seems to allow this. This will also probably
20+
* break if there are multiple nodes in the integTestCluster. But for now... it sorta works.
21+
*/
22+
integTest {
23+
jacoco {
24+
jmx = true
25+
}
26+
27+
systemProperty 'jacoco.dir', project.layout.buildDirectory.get().file("jacoco").asFile.absolutePath
28+
systemProperty 'jmx.serviceUrl', "service:jmx:rmi:///jndi/rmi://127.0.0.1:7777/jmxrmi"
29+
}
30+
31+
jacocoTestReport {
32+
dependsOn integTest, test
33+
executionData.from = [integTest.jacoco.destinationFile, test.jacoco.destinationFile]
34+
reports {
35+
html.getRequired().set(true) // human readable
36+
csv.getRequired().set(true)
37+
xml.getRequired().set(true) // for coverlay
38+
}
39+
}
40+
41+
testClusters.integTest {
42+
jvmArgs " ${integTest.jacoco.getAsJvmArg()}"
43+
44+
systemProperty 'com.sun.management.jmxremote', "true"
45+
systemProperty 'com.sun.management.jmxremote.authenticate', "false"
46+
systemProperty 'com.sun.management.jmxremote.port', "7777"
47+
systemProperty 'com.sun.management.jmxremote.ssl', "false"
48+
systemProperty 'java.rmi.server.hostname', "127.0.0.1"
49+
}

build.gradle

+10-8
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ buildscript {
3535
js_resource_folder = "src/test/resources/job-scheduler"
3636
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
3737
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
38-
bwcVersionShort = "2.15.0"
38+
bwcVersionShort = "2.16.0"
3939
bwcVersion = bwcVersionShort + ".0"
4040
bwcOpenSearchADDownload = 'https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/' + bwcVersionShort + '/latest/linux/x64/tar/builds/' +
4141
'opensearch/plugins/opensearch-anomaly-detection-' + bwcVersion + '.zip'
@@ -662,6 +662,13 @@ task release(type: Copy, group: 'build') {
662662
eachFile { it.path = it.path - "opensearch/" }
663663
}
664664

665+
def usingRemoteCluster = System.properties.containsKey('tests.rest.cluster') || System.properties.containsKey('tests.cluster')
666+
def usingMultiNode = project.properties.containsKey('numNodes')
667+
// Only apply jacoco test coverage if we are running a local single node cluster
668+
if (!usingRemoteCluster && !usingMultiNode) {
669+
apply from: 'build-tools/coverage.gradle'
670+
}
671+
665672
List<String> jacocoExclusions = [
666673
// code for configuration, settings, etc is excluded from coverage
667674
'org.opensearch.timeseries.TimeSeriesAnalyticsPlugin',
@@ -701,6 +708,8 @@ List<String> jacocoExclusions = [
701708

702709

703710
jacocoTestCoverageVerification {
711+
dependsOn(jacocoTestReport)
712+
executionData.from = [integTest.jacoco.destinationFile, test.jacoco.destinationFile]
704713
violationRules {
705714
rule {
706715
element = 'CLASS'
@@ -722,13 +731,6 @@ jacocoTestCoverageVerification {
722731
}
723732
}
724733

725-
jacocoTestReport {
726-
reports {
727-
xml.required = true // for coverlay
728-
html.required = true // human readable
729-
}
730-
}
731-
732734
check.dependsOn jacocoTestCoverageVerification
733735
jacocoTestCoverageVerification.dependsOn jacocoTestReport
734736

dataGeneration/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ numpy==1.23.0
44
opensearch_py==2.0.0
55
retry==0.9.2
66
scipy==1.10.0
7-
urllib3==1.26.18
7+
urllib3==1.26.19

src/main/java/org/opensearch/forecast/settings/ForecastEnabledSetting.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ public class ForecastEnabledSetting extends DynamicNumericSetting {
2727
*/
2828
public static final String FORECAST_ENABLED = "plugins.forecast.enabled";
2929

30-
public static final boolean enabled = false;
31-
3230
public static final Map<String, Setting<?>> settings = unmodifiableMap(new HashMap<String, Setting<?>>() {
3331
{
3432
/**
@@ -55,8 +53,6 @@ public static synchronized ForecastEnabledSetting getInstance() {
5553
* @return whether forecasting is enabled.
5654
*/
5755
public static boolean isForecastEnabled() {
58-
// return ForecastEnabledSetting.getInstance().getSettingValue(ForecastEnabledSetting.FORECAST_ENABLED);
59-
// TODO: enable forecasting before released
60-
return enabled;
56+
return ForecastEnabledSetting.getInstance().getSettingValue(ForecastEnabledSetting.FORECAST_ENABLED);
6157
}
6258
}

src/main/java/org/opensearch/timeseries/JobProcessor.java

+4
Original file line numberDiff line numberDiff line change
@@ -579,5 +579,9 @@ private void releaseLock(Job jobParameter, LockService lockService, LockModel lo
579579
);
580580
}
581581

582+
public Integer getEndRunExceptionCount(String configId) {
583+
return endRunExceptionCount.getOrDefault(configId, 0);
584+
}
585+
582586
protected abstract ResultRequest createResultRequest(String configID, long start, long end);
583587
}

src/main/java/org/opensearch/timeseries/util/TaskUtil.java

-41
This file was deleted.

src/test/java/org/opensearch/action/admin/indices/mapping/get/IndexAnomalyDetectorActionHandlerTests.java

-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ public void setUp() throws Exception {
122122
clientUtil = new SecurityClientUtil(nodeStateManager, settings);
123123
transportService = mock(TransportService.class);
124124

125-
// channel = mock(ActionListener.class);
126-
127125
anomalyDetectionIndices = mock(ADIndexManagement.class);
128126
when(anomalyDetectionIndices.doesConfigIndexExist()).thenReturn(true);
129127

0 commit comments

Comments
 (0)