This is an automated email from the ASF dual-hosted git repository.
jinmeiliao pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 4193787 GEODE-3539: add tests for GetCommand and PutCommand (#966)
4193787 is described below
commit 419378790055a654010146d2b0431c7ae80b59e7
Author: jinmeiliao <[email protected]>
AuthorDate: Thu Oct 26 09:48:26 2017 -0700
GEODE-3539: add tests for GetCommand and PutCommand (#966)
* GEODE-3539: add tests for GetCommand and PutCommand
---
.../cli/commands/GetCommandIntegrationTest.java | 156 +++++++++
...ionWithCacheLoaderDuringCacheMissDUnitTest.java | 390 ---------------------
.../cli/commands/PutCommandIntegrationTest.java | 52 +++
.../cli/commands/CommandOverHttpDUnitTest.java | 1 -
4 files changed, 208 insertions(+), 391 deletions(-)
diff --git
a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandIntegrationTest.java
b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandIntegrationTest.java
new file mode 100644
index 0000000..6df8be9
--- /dev/null
+++
b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandIntegrationTest.java
@@ -0,0 +1,156 @@
+/*
+ * 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.geode.management.internal.cli.commands;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+import java.io.Serializable;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.junit.rules.RuleChain;
+
+import org.apache.geode.cache.Cache;
+import org.apache.geode.cache.CacheLoader;
+import org.apache.geode.cache.CacheLoaderException;
+import org.apache.geode.cache.LoaderHelper;
+import org.apache.geode.cache.Region;
+import org.apache.geode.cache.RegionFactory;
+import org.apache.geode.cache.RegionShortcut;
+import org.apache.geode.test.junit.categories.IntegrationTest;
+import org.apache.geode.test.junit.rules.GfshShellConnectionRule;
+import org.apache.geode.test.junit.rules.ServerStarterRule;
+
+
+@Category(IntegrationTest.class)
+public class GetCommandIntegrationTest {
+
+ private static ServerStarterRule server =
+ new ServerStarterRule().withJMXManager().withAutoStart();
+
+ private static GfshShellConnectionRule gfsh =
+ new GfshShellConnectionRule(server::getJmxPort,
GfshShellConnectionRule.PortType.jmxManager);
+
+ @ClassRule
+ public static RuleChain chain = RuleChain.outerRule(server).around(gfsh);
+
+ @BeforeClass
+ public static void beforeClass() throws Exception {
+ Cache cache = server.getCache();
+ RegionFactory<String, User> regionFactory =
cache.createRegionFactory(RegionShortcut.REPLICATE);
+
+ regionFactory.setCacheLoader(new UserDataStoreCacheLoader());
+ regionFactory.setInitialCapacity(51);
+ regionFactory.setKeyConstraint(String.class);
+ regionFactory.setLoadFactor(0.75f);
+ regionFactory.setStatisticsEnabled(false);
+ regionFactory.setValueConstraint(User.class);
+
+ Region<String, User> users = regionFactory.create("Users");
+ assertThat(users.getName()).isEqualTo("Users");
+ assertThat(users.getFullPath()).isEqualTo("/Users");
+
+ users.put("jonbloom", new User("jonbloom"));
+ assertFalse(users.isEmpty());
+ assertEquals(1, users.size());
+ }
+
+ @Test
+ public void get() throws Exception {
+ gfsh.executeAndVerifyCommand("get --region=Users --key=jonbloom");
+ }
+
+ @Test
+ public void getWithSlashedRegionName() throws Exception {
+ gfsh.executeAndVerifyCommand("get --region=/Users --key=jonbloom");
+ }
+
+ @Test
+ public void getOnCacheMiss() throws Exception {
+ gfsh.executeAndVerifyCommand("get --region=Users --key=jonbloom");
+ assertThat(gfsh.getGfshOutput()).contains("Result : true");
+ gfsh.executeAndVerifyCommand("get --region=Users --key=jondoe
--load-on-cache-miss=false");
+ assertThat(gfsh.getGfshOutput()).contains("Result : false");
+
+ gfsh.executeAndVerifyCommand("get --region=Users --key=jondoe");
+ assertThat(gfsh.getGfshOutput()).contains("Result : true");
+
+ // get something that does not exist
+ gfsh.executeAndVerifyCommand("get --region=Users --key=missingUser
--load-on-cache-miss");
+ assertThat(gfsh.getGfshOutput()).contains("Result : false");
+ }
+
+ private static class User implements Serializable {
+ private final String username;
+
+ public User(final String username) {
+ assert username != null : "The username cannot be null!";
+ this.username = username;
+ }
+
+ public String getUsername() {
+ return username;
+ }
+
+ @Override
+ public boolean equals(final Object obj) {
+ if (obj == this) {
+ return true;
+ }
+
+ if (!(obj instanceof User)) {
+ return false;
+ }
+
+ User that = (User) obj;
+
+ return this.getUsername().equals(that.getUsername());
+ }
+ }
+
+ private static class UserDataStoreCacheLoader implements CacheLoader<String,
User>, Serializable {
+
+ private static final Map<String, User> userDataStore = new HashMap<String,
User>(5);
+
+ static {
+ userDataStore.put("jackhandy", createUser("jackhandy"));
+ userDataStore.put("janedoe", createUser("janedoe"));
+ userDataStore.put("jondoe", createUser("jondoe"));
+ userDataStore.put("piedoe", createUser("piedoe"));
+ userDataStore.put("supertool", createUser("supertool"));
+ }
+
+ protected static User createUser(final String username) {
+ return new User(username);
+ }
+
+ @Override
+ public User load(final LoaderHelper<String, User> helper) throws
CacheLoaderException {
+ return userDataStore.get(helper.getKey());
+ }
+
+ @Override
+ public void close() {
+ userDataStore.clear();
+ }
+ }
+}
diff --git
a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest.java
b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest.java
deleted file mode 100644
index 3f9fa50..0000000
---
a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest.java
+++ /dev/null
@@ -1,390 +0,0 @@
-/*
- * 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.geode.management.internal.cli.commands;
-
-import static org.apache.geode.distributed.ConfigurationProperties.LOG_LEVEL;
-import static org.apache.geode.distributed.ConfigurationProperties.NAME;
-import static org.apache.geode.test.dunit.Assert.assertEquals;
-import static org.apache.geode.test.dunit.Assert.assertFalse;
-import static org.apache.geode.test.dunit.Assert.assertNotNull;
-import static org.apache.geode.test.dunit.Assert.assertNull;
-import static org.apache.geode.test.dunit.Assert.assertTrue;
-import static org.apache.geode.test.dunit.Assert.fail;
-import static org.apache.geode.test.dunit.Host.getHost;
-import static org.apache.geode.test.dunit.LogWriterUtils.getLogWriter;
-import static org.apache.geode.test.dunit.Wait.waitForCriterion;
-
-import java.io.Serializable;
-import java.util.HashMap;
-import java.util.Map;
-import java.util.Properties;
-
-import org.junit.Test;
-import org.junit.experimental.categories.Category;
-
-import org.apache.geode.cache.Cache;
-import org.apache.geode.cache.CacheLoader;
-import org.apache.geode.cache.CacheLoaderException;
-import org.apache.geode.cache.LoaderHelper;
-import org.apache.geode.cache.Region;
-import org.apache.geode.cache.RegionFactory;
-import org.apache.geode.cache.RegionShortcut;
-import org.apache.geode.management.DistributedRegionMXBean;
-import org.apache.geode.management.ManagementService;
-import org.apache.geode.management.ManagerMXBean;
-import org.apache.geode.management.cli.Result;
-import org.apache.geode.management.internal.cli.HeadlessGfsh;
-import org.apache.geode.management.internal.cli.i18n.CliStrings;
-import org.apache.geode.management.internal.cli.result.CommandResult;
-import org.apache.geode.management.internal.cli.result.CompositeResultData;
-import org.apache.geode.management.internal.cli.result.ResultData;
-import org.apache.geode.management.internal.cli.util.CommandStringBuilder;
-import org.apache.geode.test.dunit.SerializableRunnable;
-import org.apache.geode.test.dunit.SerializableRunnableIF;
-import org.apache.geode.test.dunit.VM;
-import org.apache.geode.test.dunit.WaitCriterion;
-import org.apache.geode.test.junit.categories.DistributedTest;
-import org.apache.geode.test.junit.categories.FlakyTest;
-
-/**
- * The GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest class is test
suite of test cases
- * testing the Gfsh 'get' data command when a cache miss occurs on data in a
Region with a
- * CacheLoader defined.
- *
- * @see org.apache.geode.management.internal.cli.commands.CliCommandTestBase
- * @see org.apache.geode.management.internal.cli.commands.GetCommand
- * @since GemFire 8.0
- */
-@Category({DistributedTest.class, FlakyTest.class}) // GEODE-3530
-@SuppressWarnings("serial")
-public class GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest extends
CliCommandTestBase {
-
- private static final String GEMFIRE_MANAGER_NAME = "GemManagerNode";
- private static final String GEMFIRE_SERVER_NAME = "GemServerDataNode";
- private static final String GEMFIRE_LOG_LEVEL =
System.getProperty("logLevel", "config");
- private static final String USERS_REGION_NAME = "Users";
-
- @Override
- public final void postSetUpCliCommandTestBase() throws Exception {
- Properties managerDistributedSystemProperties =
- createDistributedSystemProperties(GEMFIRE_MANAGER_NAME);
- HeadlessGfsh gfsh =
setUpJmxManagerOnVm0ThenConnect(managerDistributedSystemProperties); // vm 0
-
// --
-
// locator/manager
-
- assertNotNull(gfsh); // controller vm -- gfsh
- assertTrue(gfsh.isConnectedAndReady());
-
- setupGemFire(); // vm 1 -- server
- verifyGemFireSetup(createPeer(getHost(0).getVM(0),
managerDistributedSystemProperties));
- }
-
- @Test
- public void testGetOnCacheMiss() {
- doHousekeeping();
-
- CommandStringBuilder command = new CommandStringBuilder(CliStrings.GET);
- command.addOption(CliStrings.GET__REGIONNAME, USERS_REGION_NAME);
- command.addOption(CliStrings.GET__KEY, "jonbloom");
-
- assertResult(true, runCommand(command.toString()));
-
- command = new CommandStringBuilder(CliStrings.GET);
- command.addOption(CliStrings.GET__REGIONNAME, USERS_REGION_NAME);
- command.addOption(CliStrings.GET__KEY, "jondoe");
- command.addOption(CliStrings.GET__LOAD, "false");
-
- assertResult(false, runCommand(command.toString()));
-
- command = new CommandStringBuilder(CliStrings.GET);
- command.addOption(CliStrings.GET__REGIONNAME, USERS_REGION_NAME);
- command.addOption(CliStrings.GET__KEY, "jondoe");
- command.addOption(CliStrings.GET__LOAD, "true");
-
- assertResult(true, runCommand(command.toString()));
-
- // NOTE test the unspecified default value for the --load-on-cache-miss
- command = new CommandStringBuilder(CliStrings.GET);
- command.addOption(CliStrings.GET__REGIONNAME, USERS_REGION_NAME);
- command.addOption(CliStrings.GET__KEY, "janedoe");
-
- assertResult(true, runCommand(command.toString()));
-
- // NOTE now test an absolute cache miss both for in the Region as well as
the CacheLoader
- command = new CommandStringBuilder(CliStrings.GET);
- command.addOption(CliStrings.GET__REGIONNAME, USERS_REGION_NAME);
- command.addOption(CliStrings.GET__KEY, "nonexistinguser");
- command.addOption(CliStrings.GET__LOAD, "true");
-
- assertResult(false, runCommand(command.toString()));
- }
-
- private static String getRegionPath(final String regionName) {
- return (regionName.startsWith(Region.SEPARATOR) ? regionName
- : String.format("%1$s%2$s", Region.SEPARATOR, regionName));
- }
-
- private static String toString(final Result result) {
- assert result != null : "The Result object from the command execution was
null!";
-
- StringBuilder buffer = new
StringBuilder(System.getProperty("line.separator"));
-
- while (result.hasNextLine()) {
- buffer.append(result.nextLine());
- buffer.append(System.getProperty("line.separator"));
- }
-
- return buffer.toString();
- }
-
- private void setupGemFire() throws Exception {
- initializePeer(
- createPeer(getHost(0).getVM(1),
createDistributedSystemProperties(GEMFIRE_SERVER_NAME)));
- }
-
- private Properties createDistributedSystemProperties(final String
gemfireName) {
- Properties distributedSystemProperties = new Properties();
-
- distributedSystemProperties.setProperty(LOG_LEVEL, GEMFIRE_LOG_LEVEL);
- distributedSystemProperties.setProperty(NAME, gemfireName);
-
- return distributedSystemProperties;
- }
-
- private Peer createPeer(final VM vm, final Properties
distributedSystemProperties) {
- return new Peer(vm, distributedSystemProperties);
- }
-
- private void initializePeer(final Peer peer) throws Exception {
- peer.run(new SerializableRunnable(
- String.format("Initializes the '%1$s' with the '%2$s' Region having a
CacheLoader.",
- GEMFIRE_SERVER_NAME, USERS_REGION_NAME)) {
- @Override
- public void run() {
- // create the GemFire Distributed System with custom distribution
configuration properties
- // and settings
- getSystem(peer.getConfiguration());
-
- Cache cache = getCache();
- RegionFactory<String, User> regionFactory =
- cache.createRegionFactory(RegionShortcut.REPLICATE);
-
- regionFactory.setCacheLoader(new UserDataStoreCacheLoader());
- regionFactory.setInitialCapacity(51);
- regionFactory.setKeyConstraint(String.class);
- regionFactory.setLoadFactor(0.75f);
- regionFactory.setStatisticsEnabled(false);
- regionFactory.setValueConstraint(User.class);
-
- Region<String, User> users = regionFactory.create(USERS_REGION_NAME);
-
- assertNotNull(users);
- assertEquals("Users", users.getName());
- assertEquals("/Users", users.getFullPath());
- assertTrue(users.isEmpty());
- assertNull(users.put("jonbloom", new User("jonbloom")));
- assertFalse(users.isEmpty());
- assertEquals(1, users.size());
- assertEquals(new User("jonbloom"), users.get("jonbloom"));
- }
- });
- }
-
- private void verifyGemFireSetup(final Peer manager) throws Exception {
- manager.run(new SerializableRunnable(
- "Verifies the GemFire Cluster was properly configured and
initialized!") {
- @Override
- public void run() {
- final ManagementService managementService =
- ManagementService.getExistingManagementService(getCache());
-
- WaitCriterion waitOnManagerCriterion = new WaitCriterion() {
- @Override
- public boolean done() {
- ManagerMXBean managerBean = managementService.getManagerMXBean();
- DistributedRegionMXBean usersRegionBean =
-
managementService.getDistributedRegionMXBean(getRegionPath(USERS_REGION_NAME));
-
- return !(managerBean == null || usersRegionBean == null);
- }
-
- @Override
- public String description() {
- return String.format(
- "Probing for the GemFire Manager '%1$s' and '%2$s' Region
MXBeans...",
- manager.getName(), USERS_REGION_NAME);
- }
- };
-
- waitForCriterion(waitOnManagerCriterion, 30000, 2000, true);
- }
- });
- }
-
- private void doHousekeeping() {
- runCommand(CliStrings.LIST_MEMBER);
-
- runCommand(new CommandStringBuilder(CliStrings.DESCRIBE_MEMBER)
- .addOption(CliStrings.DESCRIBE_MEMBER__IDENTIFIER,
GEMFIRE_SERVER_NAME).toString());
-
- runCommand(CliStrings.LIST_REGION);
-
- runCommand(new CommandStringBuilder(CliStrings.DESCRIBE_REGION)
- .addOption(CliStrings.DESCRIBE_REGION__NAME,
USERS_REGION_NAME).toString());
- }
-
- private void log(final Result result) {
- log("Result", toString(result));
- }
-
- private void log(final String tag, final String message) {
- // System.out.printf("%1$s (%2$s)%n", tag, message);
- getLogWriter().info(String.format("%1$s (%2$s)%n", tag, message));
- }
-
- private CommandResult runCommand(final String command) {
- CommandResult result = executeCommand(command);
-
- assertNotNull(result);
- assertEquals(Result.Status.OK, result.getStatus());
-
- log(result);
-
- return result;
- }
-
- private void assertResult(final boolean expectedResult, final CommandResult
commandResult) {
- if (ResultData.TYPE_COMPOSITE.equals(commandResult.getType())) {
- boolean actualResult = (Boolean) ((CompositeResultData)
commandResult.getResultData())
- .retrieveSectionByIndex(0).retrieveObject("Result");
- assertEquals(expectedResult, actualResult);
- } else {
- fail(String.format("Expected composite result data; but was '%1$s'!%n",
- commandResult.getType()));
- }
- }
-
- private static class Peer implements Serializable {
-
- private final Properties distributedSystemProperties;
- private final VM vm;
-
- public Peer(final VM vm, final Properties distributedSystemProperties) {
- assert distributedSystemProperties != null : "The GemFire Distributed
System configuration properties and settings cannot be null!";
- this.vm = vm;
- this.distributedSystemProperties = distributedSystemProperties;
- }
-
- public Properties getConfiguration() {
- return this.distributedSystemProperties;
- }
-
- public String getName() {
- return getConfiguration().getProperty(NAME);
- }
-
- public VM getVm() {
- return vm;
- }
-
- public void run(final SerializableRunnableIF runnable) throws Exception {
- if (getVm() == null) {
- runnable.run();
- } else {
- getVm().invoke(runnable);
- }
- }
-
- @Override
- public String toString() {
- StringBuilder buffer = new StringBuilder(getClass().getSimpleName());
-
- buffer.append(" {configuration = ").append(getConfiguration());
- buffer.append(", name = ").append(getName());
- buffer.append(", pid = ").append(getVm().getId());
- buffer.append("}");
-
- return buffer.toString();
- }
- }
-
- private static class User implements Serializable {
-
- private final String username;
-
- public User(final String username) {
- assert username != null : "The username cannot be null!";
- this.username = username;
- }
-
- public String getUsername() {
- return username;
- }
-
- @Override
- public boolean equals(final Object obj) {
- if (obj == this) {
- return true;
- }
-
- if (!(obj instanceof User)) {
- return false;
- }
-
- User that = (User) obj;
-
- return this.getUsername().equals(that.getUsername());
- }
-
- @Override
- public int hashCode() {
- int hashValue = 17;
- hashValue = 37 * hashValue + getUsername().hashCode();
- return hashValue;
- }
-
- @Override
- public String toString() {
- return getUsername();
- }
- }
-
- private static class UserDataStoreCacheLoader implements CacheLoader<String,
User>, Serializable {
-
- private static final Map<String, User> userDataStore = new HashMap<String,
User>(5);
-
- static {
- userDataStore.put("jackhandy", createUser("jackhandy"));
- userDataStore.put("janedoe", createUser("janedoe"));
- userDataStore.put("jondoe", createUser("jondoe"));
- userDataStore.put("piedoe", createUser("piedoe"));
- userDataStore.put("supertool", createUser("supertool"));
- }
-
- protected static User createUser(final String username) {
- return new User(username);
- }
-
- @Override
- public User load(final LoaderHelper<String, User> helper) throws
CacheLoaderException {
- return userDataStore.get(helper.getKey());
- }
-
- @Override
- public void close() {
- userDataStore.clear();
- }
- }
-}
diff --git
a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/PutCommandIntegrationTest.java
b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/PutCommandIntegrationTest.java
new file mode 100644
index 0000000..4dae79f
--- /dev/null
+++
b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/PutCommandIntegrationTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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.geode.management.internal.cli.commands;
+
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.junit.rules.RuleChain;
+
+import org.apache.geode.cache.RegionShortcut;
+import org.apache.geode.test.junit.categories.IntegrationTest;
+import org.apache.geode.test.junit.rules.GfshShellConnectionRule;
+import org.apache.geode.test.junit.rules.ServerStarterRule;
+
+
+@Category(IntegrationTest.class)
+public class PutCommandIntegrationTest {
+
+ private static ServerStarterRule server =
+ new
ServerStarterRule().withJMXManager().withRegion(RegionShortcut.REPLICATE,
"testRegion");
+
+ private static GfshShellConnectionRule gfsh =
+ new GfshShellConnectionRule(server::getJmxPort,
GfshShellConnectionRule.PortType.jmxManager);
+
+ @ClassRule
+ public static RuleChain chain = RuleChain.outerRule(server).around(gfsh);
+
+
+ @Test
+ public void putWithoutSlash() throws Exception {
+ gfsh.executeAndVerifyCommand("put --region=testRegion --key=key1
--value=value1");
+ }
+
+
+ @Test
+ public void putWithSlash() throws Exception {
+ gfsh.executeAndVerifyCommand("put --region=/testRegion --key=key1
--value=value1");
+ }
+}
diff --git
a/geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/CommandOverHttpDUnitTest.java
b/geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/CommandOverHttpDUnitTest.java
index 08be1d5..97a5112 100644
---
a/geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/CommandOverHttpDUnitTest.java
+++
b/geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/CommandOverHttpDUnitTest.java
@@ -28,7 +28,6 @@ import org.apache.geode.test.junit.runners.SuiteRunner;
@RunWith(SuiteRunner.class)
@Suite.SuiteClasses({ChangeLogLevelCommandDUnitTest.class,
DeployWithGroupsDUnitTest.class,
DiskStoreCommandsDUnitTest.class, GcCommandDUnitTest.class,
GemfireDataCommandsDUnitTest.class,
- GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest.class,
ListAndDescribeDiskStoreCommandsDUnitTest.class,
ShutdownCommandDUnitTest.class,
QueueCommandsDUnitTest.class, ShellCommandsDUnitTest.class,
ShowDeadlockDUnitTest.class,
ShowLogCommandDUnitTest.class, ShowMetricsDUnitTest.class,
ShowStackTraceDUnitTest.class})
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].