IGNITE-8379 new compatibility tests added for latest releases.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/d8886a0c Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/d8886a0c Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/d8886a0c Branch: refs/heads/ignite-10044 Commit: d8886a0c69cc9277e6d3142e53a8435b2ffbc340 Parents: bb56dc6 Author: Dmitriy Pavlov <dpav...@apache.org> Authored: Tue Dec 4 20:14:14 2018 +0300 Committer: Dmitriy Pavlov <dpav...@apache.org> Committed: Tue Dec 4 20:14:14 2018 +0300 ---------------------------------------------------------------------- .../PersistenceBasicCompatibilityTest.java | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/d8886a0c/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/PersistenceBasicCompatibilityTest.java ---------------------------------------------------------------------- diff --git a/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/PersistenceBasicCompatibilityTest.java b/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/PersistenceBasicCompatibilityTest.java index f27caa3..a94c459 100644 --- a/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/PersistenceBasicCompatibilityTest.java +++ b/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/PersistenceBasicCompatibilityTest.java @@ -101,6 +101,33 @@ public class PersistenceBasicCompatibilityTest extends IgnitePersistenceCompatib /** * Tests opportunity to read data from previous Ignite DB version. * + * @throws Exception If failed. + */ + public void testNodeStartByOldVersionPersistenceData_2_4() throws Exception { + doTestStartupWithOldVersion("2.4.0"); + } + + /** + * Tests opportunity to read data from previous Ignite DB version. + * + * @throws Exception If failed. + */ + public void testNodeStartByOldVersionPersistenceData_2_5() throws Exception { + doTestStartupWithOldVersion("2.5.0"); + } + + /** + * Tests opportunity to read data from previous Ignite DB version. + * + * @throws Exception If failed. + */ + public void testNodeStartByOldVersionPersistenceData_2_6() throws Exception { + doTestStartupWithOldVersion("2.6.0"); + } + + /** + * Tests opportunity to read data from previous Ignite DB version. + * * @param igniteVer 3-digits version of ignite * @throws Exception If failed. */