This is an automated email from the ASF dual-hosted git repository.
ladyvader pushed a change to branch feature/GEODE-3687
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard f73e995 GEODE-3687: GatewayReceiverImpl constructor and create method
updates
add 8f2ff2b GEODE-3720: clean up SocketCreators in each test VM properly
add 3aaf16e Adding jpf.properties to .gitignore
add 90db66b GEODE-3713: add VM.getId() and fix VM.getPid()
add 03fa46a GEODE-3722: Fixing typo in lucene query command
add 3b6ba91 GEODE-3721: Renabling durable client tests that were ignored
(#840)
add dcb7af0 GEODE-3613: Dumping container logs files in session
replication tests
add bee0afb GEODE-3539: Add tests for 'alter runtime'
add 9d7d55f GEODE-3539: Refactor to put the alter runtime tests in a
separate class
add b0348cd GEODE-3539: Additional test refactoring
add 6e1beb8 GEODE-3715: introduce CacheRule and SharedCountersRule
add 061e07d GEODE-3628: Lucene query only needs DATA:READ
add 75c8a74 GEODE-3715: improve javadocs of DistributedTest rules
add 9614953 GEODE-3647: Fix race condition
add 5cb2a59 Revert "GEODE-3647: Fix race condition"
add 201cc52 Feature/geode 3647 (#852)
add 9fa0e5f GEODE-3673: Refactored Lucene commands test to use new
framework
add 666b2b7 GEODE-3441: Use random port in
Tomcat8SessionsClientServerDUnitTest
new 931e03f GEODE-3687: GatewayReceiverImpl constructor and create method
updates
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 (f73e995)
\
N -- N -- N refs/heads/feature/GEODE-3687 (931e03f)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
.../Tomcat8SessionsClientServerDUnitTest.java | 14 +-
.../apache/geode/session/tests/CargoTestBase.java | 1 +
.../geode/session/tests/ContainerManager.java | 6 +
.../geode/session/tests/ServerContainer.java | 29 ++-
.../geode/internal/cache/PartitionedRegion.java | 49 ++--
.../internal/cache/PartitionedRegionDataStore.java | 14 +-
.../geode/cache30/ClientServerCCEDUnitTest.java | 2 +-
.../geode/cache30/RegionExpirationDUnitTest.java | 3 +-
.../disttx/DistributedTransactionDUnitTest.java | 8 +-
.../geode/internal/cache/BackupDUnitTest.java | 2 +-
.../geode/internal/cache/GIIDeltaDUnitTest.java | 9 +-
.../PartitionedRegionAttributesMutatorTest.java | 211 +++++++++++++++
.../cache/PartitionedRegionDataStoreJUnitTest.java | 63 -----
.../cache/PartitionedRegionQueryDUnitTest.java | 4 +-
.../persistence/PersistentReplicatedTestBase.java | 2 +-
.../rollingupgrade/RollingUpgrade2DUnitTest.java | 8 +-
.../rollingupgrade/RollingUpgradeDUnitTest.java | 6 +-
.../geode/management/ManagementTestRule.java | 2 +-
.../cli/commands/AlterRegionCommandDUnitTest.java | 8 +-
.../cli/commands/DiskStoreCommandsDUnitTest.java | 30 +--
.../cli/commands/FunctionCommandsDUnitTest.java | 4 +-
...ionWithCacheLoaderDuringCacheMissDUnitTest.java | 2 +-
.../cli/commands/QueueCommandsDUnitTest.java | 4 +-
.../cli/commands/ShowMetricsDUnitTest.java | 4 +-
.../org/apache/geode/test/dunit/Disconnect.java | 53 ++++
.../geode/test/dunit/DistributedTestUtils.java | 20 +-
.../java/org/apache/geode/test/dunit/Host.java | 16 +-
.../test/java/org/apache/geode/test/dunit/VM.java | 32 ++-
.../geode/test/dunit/cache/rules/CacheRule.java | 203 +++++++++++++++
.../dunit/cache/rules/tests/CacheRuleTest.java | 287 +++++++++++++++++++++
.../dunit/examples/InvokeCallableExampleTest.java | 2 -
.../dunit/internal/JUnit4DistributedTestCase.java | 21 +-
.../test/dunit/rules/DistributedTestRule.java | 45 +++-
.../geode/test/dunit/rules/RemoteInvoker.java | 2 +-
.../geode/test/dunit/rules/SharedCountersRule.java | 183 +++++++++++++
.../rules/tests/SharedCountersDistributedTest.java | 178 +++++++++++++
.../geode/test/dunit/standalone/BounceResult.java | 10 +-
.../GetPidAndIdAfterBounceDistributedTest.java} | 37 +--
.../GetPidAndIdDistributedTest.java} | 24 +-
.../geode/test/junit/rules/MemberStarterRule.java | 4 +
.../cache/tier/sockets/DurableClientTestCase.java | 19 +-
.../gfsh/command-pages/search.html.md.erb | 12 +-
.../geode/test/junit/runners/TestRunner.java | 22 +-
.../lucene/internal/cli/LuceneCliStrings.java | 3 +-
.../lucene/internal/cli/LuceneIndexCommands.java | 5 +-
.../internal/distributed/LuceneQueryFunction.java | 14 +-
.../distributed/WaitUntilFlushedFunction.java | 13 +-
.../internal/results/LuceneGetPageFunction.java | 14 +-
.../lucene/LuceneClientSecurityDUnitTest.java | 50 +++-
.../LuceneSearchWithRollingUpgradeDUnit.java | 8 +-
.../internal/cli/LuceneIndexCommandsDUnitTest.java | 207 +++++++--------
.../cache/wan/WANRollingUpgradeDUnitTest.java | 5 +-
...Test.java => AlterRuntimeCommandDUnitTest.java} | 256 ++++++++++--------
.../commands/DescribeConfigCommandDUnitTest.java | 91 +++++++
.../cli/commands/ExportConfigCommandDUnitTest.java | 111 ++++++++
56 files changed, 1929 insertions(+), 504 deletions(-)
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/PartitionedRegionAttributesMutatorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/test/dunit/Disconnect.java
create mode 100644
geode-core/src/test/java/org/apache/geode/test/dunit/cache/rules/CacheRule.java
create mode 100644
geode-core/src/test/java/org/apache/geode/test/dunit/cache/rules/tests/CacheRuleTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/test/dunit/rules/SharedCountersRule.java
create mode 100644
geode-core/src/test/java/org/apache/geode/test/dunit/rules/tests/SharedCountersDistributedTest.java
copy
geode-core/src/test/java/org/apache/geode/test/dunit/{examples/InvokeCallableExampleTest.java
=> tests/GetPidAndIdAfterBounceDistributedTest.java} (59%)
copy
geode-core/src/test/java/org/apache/geode/test/dunit/{examples/InvokeCallableExampleTest.java
=> tests/GetPidAndIdDistributedTest.java} (66%)
rename
geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/{ConfigCommandDUnitTest.java
=> AlterRuntimeCommandDUnitTest.java} (68%)
create mode 100644
geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/DescribeConfigCommandDUnitTest.java
create mode 100644
geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/ExportConfigCommandDUnitTest.java
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].