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 2018/11/26 18:35:48 UTC

[geode] branch GEODE-5547-RegionManagementDUnitTest updated (a9fe65d -> 35e612b)

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

klund pushed a change to branch GEODE-5547-RegionManagementDUnitTest
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard a9fe65d  GEODE-5547: Log info message when canceling ManagementListener
     add 222701a  GEODE-4110: improve junit ClientCacheRule (#2872)
     add 5a8ef65  GEODE-5971: Refactor Start/Status/Stop Locator commands to return ResultModel (#2869)
     add 4c06ba4  GEODE-6059: PR pipeline gets merge-base from resource (#2877)
     add be99d7b  GEODE-6073:  All files have lf endings (#2873)
     add ed28310  GEODE-5076 jmx client should not access or modify internal regions
     add 7cd2f0c  GEODE-6065: Continue event processing when hostname lookup fails (#2883)
     add f2e43b0  GEODE-6064: redact the password in describeConfig command (#2863)
     add b2fac14  GEODE-5998: Using primitive type (LGTM fix) (#2886)
     add 4c8be37  GEODE-6039: deprecate DistributedTestCase and associated. (#2841)
     add 5f53d53  Update javadocs for data-source pool classes (#2870)
     add 3a3697d  GEODE-5943: cleanup vm before each test (#2889)
     add b8d26b1  GEODE-6034 Protobuf clients should not access or modify internal regions
     add 184dd3c  GEODE-6090: Reverting changes, causes new clones to get modified files.
     add 35e612b  GEODE-5547: Log info message when canceling ManagementListener

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (a9fe65d)
            \
             N -- N -- N   refs/heads/GEODE-5547-RegionManagementDUnitTest (35e612b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 ci/scripts/repeat-new-tests.sh                     |  21 +-
 .../internal/web/controllers/RestAPITestBase.java  |   6 +
 .../web/controllers/RestAPIsWithSSLDUnitTest.java  |   4 +-
 .../geode/connectors/jdbc/JdbcDistributedTest.java |   3 +-
 .../jdbc/JdbcPooledDataSourceFactory.java          |  23 +-
 .../jdbc/internal/cli/CreateDataSourceCommand.java |   5 +-
 .../internal/cache/DistributedCacheTestCase.java   |   6 +-
 .../internal/cache/eviction/EvictionDUnitTest.java |  10 +
 .../management/ClientHealthStatsDUnitTest.java     |  19 +-
 .../internal/security/MultiClientDUnitTest.java    |  20 +-
 .../security/MultiUserAuthenticationDUnitTest.java |  47 +--
 .../apache/geode/security/ClientAuthDUnitTest.java |  38 +-
 ...tAuthorizationLegacyConfigurationDUnitTest.java |  74 ++--
 ...aAuthorizationUsingLegacySecurityDUnitTest.java |  16 +-
 ...onUsingLegacySecurityWithFailoverDUnitTest.java |   8 +-
 .../ClientDestroyInvalidateAuthDUnitTest.java      |   9 +-
 .../ClientExecuteFunctionAuthDUnitTest.java        |   9 +-
 .../client/internal/pooling/PooledConnection.java  |   2 +-
 .../geode/datasource/PooledDataSourceFactory.java  |  18 +-
 .../membership/InternalDistributedMember.java      |  22 +-
 .../geode/internal/cache/GemFireCacheImpl.java     |   6 +-
 .../apache/geode/internal/cache/InternalCache.java |   2 +-
 .../cache/InternalCacheForClientAccess.java        |  22 +-
 .../internal/cache/xmlcache/CacheCreation.java     |   3 +-
 .../apache/geode/management/ManagementService.java |   3 +-
 .../apache/geode/management/cli/GfshCommand.java   |   5 +-
 .../management/internal/BaseManagementService.java |   5 +-
 .../management/internal/FederatingManager.java     |   9 +-
 .../management/internal/JmxManagerAdvisee.java     |   6 +-
 .../management/internal/JmxManagerLocator.java     |  12 +-
 .../geode/management/internal/LocalManager.java    |   4 +-
 .../geode/management/internal/ManagementAgent.java |  13 +-
 .../management/internal/ManagementFunction.java    |   3 +-
 .../apache/geode/management/internal/Manager.java  |   5 +-
 .../internal/SystemManagementService.java          |   8 +-
 .../management/internal/beans/BeanUtilFuncs.java   |   4 +-
 .../internal/beans/CacheServerBridge.java          |   3 -
 .../internal/beans/QueryDataFunction.java          |  18 +-
 .../cli/commands/DescribeConfigCommand.java        |  92 +++--
 .../internal/cli/commands/StartLocatorCommand.java |  54 +--
 .../internal/cli/commands/StartServerCommand.java  |  23 +-
 .../commands/lifecycle/StatusLocatorCommand.java   |  24 +-
 .../cli/commands/lifecycle/StopLocatorCommand.java |  13 +-
 .../cli/functions/DataCommandFunction.java         |   3 +-
 .../cli/functions/DestroyIndexFunction.java        |   3 +-
 .../internal/cli/functions/ExportDataFunction.java |   3 +-
 .../internal/cli/functions/ExportLogsFunction.java |  10 +-
 .../GetMemberConfigInformationFunction.java        |   8 +-
 .../functions/GetRegionDescriptionFunction.java    |   3 +-
 .../internal/cli/functions/ImportDataFunction.java |   4 +-
 .../cli/functions/RegionAlterFunction.java         |   3 +-
 .../cli/functions/RegionCreateFunction.java        |   3 +-
 .../cli/functions/RegionDestroyFunction.java       |   3 +-
 .../cli/functions/UserFunctionExecution.java       |   2 +-
 .../internal/cli/modes/CommandModes.java           |  11 +-
 .../internal/configuration/domain/XmlEntity.java   |   3 +-
 .../functions/GetRegionNamesFunction.java          |   3 +-
 .../executor/hash/HIncrByFloatExecutor.java        |   2 +-
 .../executor/sortedset/GeoDistExecutor.java        |   2 +-
 .../cli/commands/DescribeConfigCommandTest.java    |  40 ++
 .../cli/commands/ExportLogsCommandTest.java        |   8 +
 .../cli/functions/RegionDestroyFunctionTest.java   |  10 +-
 .../RollingUpgrade2DUnitTestBase.java              |   5 +-
 .../cache/query/dunit/QueryMonitorDUnitTest.java   |  35 +-
 .../geode/security/ClientCQAuthDUnitTest.java      |  49 ++-
 .../geode/security/MultiUserAPIDUnitTest.java      | 407 ++++++---------------
 ...tartupRuleCanSpecifyOlderVersionsDUnitTest.java |   4 +-
 .../cache/client/internal/LocatorTestBase.java     |   7 +
 .../cache/tier/sockets/CacheServerTestUtil.java    |   7 +
 .../cache/wan/AsyncEventQueueTestBase.java         |   6 +
 .../security/GfshCommandsSecurityTestBase.java     |  12 +-
 .../security/ClientAuthorizationTestCase.java      |   5 +
 .../apache/geode/security/SecurityTestUtil.java    |   7 +
 .../geode/security/query/QuerySecurityBase.java    |   6 +
 .../geode/test/dunit/DistributedTestCase.java      |   7 +
 .../dunit/cache/internal/JUnit4CacheTestCase.java  |   5 +
 .../dunit/internal/DistributedTestFixture.java     |   6 +
 .../dunit/internal/JUnit4DistributedTestCase.java  |   4 +-
 .../geode/test/dunit/rules/ClusterStartupRule.java |  56 +--
 .../apache/geode/test/dunit/rules/MemberVM.java    |   2 +-
 .../geode/test/junit/rules/ClientCacheRule.java    |  80 +++-
 .../geode/test/junit/rules/MemberStarterRule.java  |  39 ++
 .../geode/test/junit/rules/ServerStarterRule.java  |  33 --
 .../experimental/driver/AuthenticationTest.java    |  15 +-
 ...henticationTest.java => AuthorizationTest.java} |  65 ++--
 .../protobuf/v1/AuthenticationIntegrationTest.java |   2 +-
 .../protobuf/v1/AuthorizationIntegrationTest.java  |   2 +-
 .../protobuf/v1/ServerMessageExecutionContext.java |   4 +-
 .../OutputCapturingServerConnectionTest.java       |   5 +-
 .../tier/sockets/ProtobufServerConnectionTest.java |   5 +-
 .../protobuf/ProtobufStreamProcessorTest.java      |   6 +-
 .../protobuf/security/SecureCacheImplTest.java     |  57 +--
 .../security/SecureFunctionServiceImplTest.java    |   5 +-
 ...ionOnGroupRequestOperationHandlerJUnitTest.java |   7 +-
 ...onOnMemberRequestOperationHandlerJUnitTest.java |   7 +-
 ...onOnRegionRequestOperationHandlerJUnitTest.java |   5 +-
 ...egionNamesRequestOperationHandlerJUnitTest.java |   5 +-
 .../GetSizeRequestOperationHandlerJUnitTest.java   |   5 +-
 .../v1/operations/OperationHandlerJUnitTest.java   |   5 +-
 ...SenderEventRemoteDispatcherIntegrationTest.java | 189 ++++++++++
 .../web/controllers/CommonCrudController.java      |   6 +-
 101 files changed, 1166 insertions(+), 832 deletions(-)
 copy geode-experimental-driver/src/integrationTest/java/org/apache/geode/experimental/driver/{AuthenticationTest.java => AuthorizationTest.java} (50%)
 create mode 100644 geode-wan/src/test/java/org/apache/geode/internal/cache/wan/GatewaySenderEventRemoteDispatcherIntegrationTest.java