You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/10/13 18:53:05 UTC

[geode] branch develop updated: GEODE-1568: delete useless broken test

This is an automated email from the ASF dual-hosted git repository.

klund 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 4b77b9f  GEODE-1568: delete useless broken test
4b77b9f is described below

commit 4b77b9fd924e8f48ecb26fbb32509faf9d843c06
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Fri Oct 13 11:52:10 2017 -0700

    GEODE-1568: delete useless broken test
---
 .../geode/cache30/PreloadedRegionTestCase.java     | 102 ---------------------
 1 file changed, 102 deletions(-)

diff --git a/geode-core/src/test/java/org/apache/geode/cache30/PreloadedRegionTestCase.java b/geode-core/src/test/java/org/apache/geode/cache30/PreloadedRegionTestCase.java
deleted file mode 100644
index a930ab2..0000000
--- a/geode-core/src/test/java/org/apache/geode/cache30/PreloadedRegionTestCase.java
+++ /dev/null
@@ -1,102 +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.cache30;
-
-import static org.junit.Assert.*;
-
-import org.junit.Ignore;
-import org.junit.Test;
-import org.junit.experimental.categories.Category;
-
-import org.apache.geode.cache.AttributesFactory;
-import org.apache.geode.cache.CacheException;
-import org.apache.geode.cache.DataPolicy;
-import org.apache.geode.cache.Region;
-import org.apache.geode.cache.RegionAttributes;
-import org.apache.geode.cache.Scope;
-import org.apache.geode.test.dunit.Assert;
-import org.apache.geode.test.dunit.Host;
-import org.apache.geode.test.dunit.SerializableRunnable;
-import org.apache.geode.test.dunit.VM;
-import org.apache.geode.test.junit.categories.DistributedTest;
-
-/**
- * This class tests the functionality of a cache {@link Region region} that has a scope of
- * {@link Scope#DISTRIBUTED_ACK distributed ACK}.
- *
- * @since GemFire 3.0
- */
-@Category(DistributedTest.class)
-@Ignore("TODO: test disabled because of GEODE-1568")
-public class PreloadedRegionTestCase extends MultiVMRegionTestCase {
-
-  /**
-   * Returns region attributes for a <code>GLOBAL</code> region
-   */
-  protected RegionAttributes getRegionAttributes() {
-    AttributesFactory factory = new AttributesFactory();
-    factory.setScope(Scope.DISTRIBUTED_ACK);
-    factory.setDataPolicy(DataPolicy.PRELOADED);
-    return factory.create();
-  }
-
-  /**
-   * Tests that created entries are not propagated to other caches
-   */
-  @Test
-  public void testDistributedCreate() throws Exception {
-    final String rgnName = getUniqueName();
-
-    SerializableRunnable create = new SerializableRunnable("testDistributedCreate: Create Region") {
-      public void run() {
-        try {
-          createRegion(rgnName);
-          getSystem().getLogWriter().info("testDistributedCreate: Created Region");
-        } catch (CacheException e) {
-          Assert.fail("While creating region", e);
-        }
-      }
-    };
-
-    SerializableRunnable newKey = new SerializableRunnable("testDistributedCreate: Create Key") {
-      public void run() {
-        try {
-          Region root = getRootRegion("root");
-          Region rgn = root.getSubregion(rgnName);
-          rgn.create("key", null);
-          getSystem().getLogWriter().info("testDistributedCReate: Created Key");
-        } catch (CacheException e) {
-          Assert.fail("While creating region", e);
-        }
-      }
-    };
-
-    Host host = Host.getHost(0);
-    VM vm0 = host.getVM(0);
-
-    // Create empty region
-    vm0.invoke(create);
-
-    // Create empty version locally
-    Region rgn = createRegion(rgnName);
-
-    // Add a key in first cache
-    vm0.invoke(newKey);
-
-    // We should NOT see the update here.
-    assertTrue(rgn.getEntry("key") == null);
-  }
-
-}

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].