You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2019/01/03 19:00:18 UTC

[geode] branch feature/GEODE-6143-13 updated (ef71a46 -> 529a800)

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

zhouxj pushed a change to branch feature/GEODE-6143-13
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard ef71a46  GEODE-6143: remove PowerMock from TypeUtilsJUnitTest
     add 76c6122  Fixes JAVA_HOME for jstack execution for hung tests.
     add 1895802  GEODE-3205: Fix timestamp warning
     add cbf071d  GEODE-3205: Cleanup and reenable DiskSpaceLimitIntegrationTest
     add 32399f0  GEODE-5955 CacheClientUpdater statistics are created and never closed on failed initialization
     add 176f526  GEODE-5955 CacheClientUpdater statistics not properly closed
     add 62d8daa0 Merge pull request #3043 from apache/feature/GEODE-5955
     add 4d77573  GEODE-6143: Import methods from Mockito instead of PowerMockito
     add 724fdde  GEODE-6221: Cleanup some Protobuf tests (#3039)
     add 9fc8910  GEODE-6037: Move dunit tests to distributedTest
     add 34d45b4  GEODE-6124 Sign distributions
     add 4984450  GEODE-6235 Publish sources and javadoc to maven
     add 5c51bd3  Update README.md (#3026)
     add 787236c  GEODE-6143: Remove PowerMock from ExecuteFunction tests (#3045)
     add 0b22af1  GEODE-6143: remove PowerMock from GatewayReceiverXmlParsingValidationsJUnitTest
     add 09f437b  Merge pull request #3037 from apache/feature/GEODE-6143-12
     add 529a800  GEODE-6143: remove PowerMock from TypeUtilsJUnitTest

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   (ef71a46)
            \
             N -- N -- N   refs/heads/feature/GEODE-6143-13 (529a800)

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:
 README.md                                          |   6 +-
 ci/scripts/execute_build.sh                        |   2 +-
 ci/scripts/execute_tests.sh                        |  10 +-
 geode-assembly/build.gradle                        |   7 +
 .../AutoConnectionSourceImplJUnitTest.java         |   4 +-
 ...ewayReceiverXmlParsingValidationsJUnitTest.java | 110 --------
 .../statistics/DiskSpaceLimitIntegrationTest.java  | 299 ++++++++++++---------
 .../internal/beans/ManagementAdapterTest.java      |   2 +-
 .../cache/execute/InternalFunctionService.java     |   5 +-
 .../internal/cache/tier/ClientSideHandshake.java   |   4 +
 .../cache/tier/sockets/CacheClientUpdater.java     |  75 +++---
 .../tier/sockets/command/ExecuteFunction.java      | 150 +++++++----
 .../tier/sockets/command/ExecuteFunction65.java    | 160 +++++++----
 .../tier/sockets/command/ExecuteFunction66.java    | 272 ++++++++++---------
 .../tier/sockets/command/ExecuteFunction70.java    |  45 ++--
 .../query/internal/types/TypeUtilsJUnitTest.java   |   4 +-
 .../PersistenceInitialImageAdvisorTest.java        |   1 +
 .../tier/sockets/CacheClientUpdaterJUnitTest.java  |  84 ++++++
 .../sockets/command/ExecuteFunction65Test.java     | 236 ++++++++--------
 .../sockets/command/ExecuteFunction66Test.java     | 257 ++++++++++--------
 .../sockets/command/ExecuteFunction70Test.java     |  23 +-
 .../tier/sockets/command/ExecuteFunctionTest.java  | 241 +++++++++--------
 .../cli/commands/ListGatewayCommandTest.java       |   8 +-
 .../geode/pdx/internal/PdxInstanceImplTest.java    |  59 ++--
 .../cache/examples/CacheTestCaseExampleTest.java   |  22 +-
 .../dunit/examples/BeforeClassExampleTest.java     |   0
 .../test/dunit/tests/BasicDistributedTest.java     |   7 +-
 .../cache/examples/CacheTestCaseExampleTest.java   |  33 ---
 .../rules/DistributedRestoreSystemProperties.java  |   2 +-
 .../DoNotHandleUnexpectedExceptionExampleTest.java |  55 ----
 .../LocatorConnectionAuthenticationDUnitTest.java  |  74 ++---
 .../v1/acceptance/LocatorConnectionDUnitTest.java  |  82 +++---
 .../GetAndPutJsonDocumentsDUnitTest.java           |  84 +++---
 ...ewayReceiverXmlParsingValidationsJUnitTest.java | 190 +++++++++++++
 ...nsJUnitTest.correctConfiguration[DTD].cache.xml |   0
 ...nsJUnitTest.correctConfiguration[XSD].cache.xml |   0
 ...pleReceiversShouldThrowException[DTD].cache.xml |   0
 ...pleReceiversShouldThrowException[XSD].cache.xml |   0
 gradle/publish.gradle                              |  10 +
 39 files changed, 1472 insertions(+), 1151 deletions(-)
 delete mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/CacheClientUpdaterJUnitTest.java
 copy geode-junit/src/main/java/org/apache/geode/management/internal/cli/domain/MyCacheListener.java => geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/command/ExecuteFunction70Test.java (63%)
 copy geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/PreconditionException.java => geode-dunit/src/distributedTest/java/org/apache/geode/test/dunit/cache/examples/CacheTestCaseExampleTest.java (65%)
 rename geode-dunit/src/{integrationTest => distributedTest}/java/org/apache/geode/test/dunit/examples/BeforeClassExampleTest.java (100%)
 delete mode 100644 geode-dunit/src/integrationTest/java/org/apache/geode/test/dunit/cache/examples/CacheTestCaseExampleTest.java
 delete mode 100644 geode-dunit/src/test/java/org/apache/geode/test/dunit/examples/DoNotHandleUnexpectedExceptionExampleTest.java
 create mode 100644 geode-wan/src/integrationTest/java/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.java
 rename {geode-core => geode-wan}/src/integrationTest/resources/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.correctConfiguration[DTD].cache.xml (100%)
 rename {geode-core => geode-wan}/src/integrationTest/resources/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.correctConfiguration[XSD].cache.xml (100%)
 rename {geode-core => geode-wan}/src/integrationTest/resources/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.multipleReceiversShouldThrowException[DTD].cache.xml (100%)
 rename {geode-core => geode-wan}/src/integrationTest/resources/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.multipleReceiversShouldThrowException[XSD].cache.xml (100%)