forked from apache/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IGNITE-20201 Fixed availability to set configuration for unregistered…
… metrics (apache#10903)
- Loading branch information
Showing
7 changed files
with
139 additions
and
7 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
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
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
104 changes: 104 additions & 0 deletions
104
modules/core/src/test/java/org/apache/ignite/internal/metric/MetricConfigurationTest.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,104 @@ | ||
/* | ||
* 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.ignite.internal.metric; | ||
|
||
import org.apache.ignite.IgniteException; | ||
import org.apache.ignite.configuration.DataRegionConfiguration; | ||
import org.apache.ignite.configuration.DataStorageConfiguration; | ||
import org.apache.ignite.configuration.IgniteConfiguration; | ||
import org.apache.ignite.testframework.GridTestUtils; | ||
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; | ||
import org.junit.Test; | ||
|
||
import static org.apache.ignite.cluster.ClusterState.ACTIVE; | ||
import static org.apache.ignite.cluster.ClusterState.INACTIVE; | ||
import static org.apache.ignite.internal.processors.cache.persistence.DataStorageMetricsImpl.DATASTORAGE_METRIC_PREFIX; | ||
|
||
/** */ | ||
public class MetricConfigurationTest extends GridCommonAbstractTest { | ||
/** {@inheritDoc} */ | ||
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { | ||
return super.getConfiguration(igniteInstanceName) | ||
.setDataStorageConfiguration(new DataStorageConfiguration() | ||
.setDefaultDataRegionConfiguration(new DataRegionConfiguration() | ||
.setPersistenceEnabled(true))); | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override protected void beforeTest() throws Exception { | ||
super.beforeTest(); | ||
|
||
cleanPersistenceDir(); | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override protected void afterTest() throws Exception { | ||
super.afterTest(); | ||
|
||
stopAllGrids(); | ||
cleanPersistenceDir(); | ||
} | ||
|
||
/** */ | ||
@Test | ||
public void testInvalidMetricConfigurationName() throws Exception { | ||
startGrid(0); | ||
|
||
grid(0).cluster().state(ACTIVE); | ||
|
||
checkMetricConfigurationUpdateFailed("invalid"); | ||
checkMetricConfigurationUpdateFailed("."); | ||
checkMetricConfigurationUpdateFailed(".invalid"); | ||
checkMetricConfigurationUpdateFailed("invalid.metric.name"); | ||
checkMetricConfigurationUpdateFailed(DATASTORAGE_METRIC_PREFIX); | ||
checkMetricConfigurationUpdateFailed(DATASTORAGE_METRIC_PREFIX + '.'); | ||
|
||
grid(0).cluster().state(INACTIVE); | ||
|
||
stopAllGrids(); | ||
|
||
startGrid(0); | ||
|
||
grid(0).cluster().state(ACTIVE); | ||
} | ||
|
||
/** */ | ||
private void checkMetricConfigurationUpdateFailed(String name) { | ||
GridTestUtils.assertThrowsAnyCause( | ||
log, | ||
() -> { | ||
grid(0).context().metric().configureHistogram(name, new long[] {1, 2, 3}); | ||
|
||
return null; | ||
}, | ||
IgniteException.class, | ||
"Failed to find registered metric with specified name [metricName=" + name + ']' | ||
); | ||
|
||
GridTestUtils.assertThrowsAnyCause( | ||
log, | ||
() -> { | ||
grid(0).context().metric().configureHitRate(name, 1000); | ||
|
||
return null; | ||
}, | ||
IgniteException.class, | ||
"Failed to find registered metric with specified name [metricName=" + name + ']' | ||
); | ||
} | ||
} |
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
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
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