You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2020/12/11 08:04:02 UTC

[ignite] branch master updated: IGNITE-13833 More versions added to PersistenceBasicCompatibilityTest - Fixes #8562.

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

ilyak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 0fa783a  IGNITE-13833 More versions added to PersistenceBasicCompatibilityTest - Fixes #8562.
0fa783a is described below

commit 0fa783a23236fd446c8ca934cc6674bdfaf2bc4a
Author: ibessonov <be...@gmail.com>
AuthorDate: Fri Dec 11 11:03:39 2020 +0300

    IGNITE-13833 More versions added to PersistenceBasicCompatibilityTest - Fixes #8562.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 .../PersistenceBasicCompatibilityTest.java         | 58 ++++++++++++++++++++--
 1 file changed, 54 insertions(+), 4 deletions(-)

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 2a283e5..3c4c163 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
@@ -78,8 +78,8 @@ public class PersistenceBasicCompatibilityTest extends IgnitePersistenceCompatib
      * @throws Exception If failed.
      */
     @Test
-    public void testNodeStartByOldVersionPersistenceData_2_2() throws Exception {
-        doTestStartupWithOldVersion("2.2.0");
+    public void testNodeStartByOldVersionPersistenceData_2_1() throws Exception {
+        doTestStartupWithOldVersion("2.1.0");
     }
 
     /**
@@ -88,8 +88,8 @@ public class PersistenceBasicCompatibilityTest extends IgnitePersistenceCompatib
      * @throws Exception If failed.
      */
     @Test
-    public void testNodeStartByOldVersionPersistenceData_2_1() throws Exception {
-        doTestStartupWithOldVersion("2.1.0");
+    public void testNodeStartByOldVersionPersistenceData_2_2() throws Exception {
+        doTestStartupWithOldVersion("2.2.0");
     }
 
     /**
@@ -135,6 +135,56 @@ public class PersistenceBasicCompatibilityTest extends IgnitePersistenceCompatib
     /**
      * Tests opportunity to read data from previous Ignite DB version.
      *
+     * @throws Exception If failed.
+     */
+    @Test
+    public void testNodeStartByOldVersionPersistenceData_2_7() throws Exception {
+        doTestStartupWithOldVersion("2.7.0");
+    }
+
+    /**
+     * Tests opportunity to read data from previous Ignite DB version.
+     *
+     * @throws Exception If failed.
+     */
+    @Test
+    public void testNodeStartByOldVersionPersistenceData_2_7_6() throws Exception {
+        doTestStartupWithOldVersion("2.7.6");
+    }
+
+    /**
+     * Tests opportunity to read data from previous Ignite DB version.
+     *
+     * @throws Exception If failed.
+     */
+    @Test
+    public void testNodeStartByOldVersionPersistenceData_2_8() throws Exception {
+        doTestStartupWithOldVersion("2.8.0");
+    }
+
+    /**
+     * Tests opportunity to read data from previous Ignite DB version.
+     *
+     * @throws Exception If failed.
+     */
+    @Test
+    public void testNodeStartByOldVersionPersistenceData_2_8_1() throws Exception {
+        doTestStartupWithOldVersion("2.8.1");
+    }
+
+    /**
+     * Tests opportunity to read data from previous Ignite DB version.
+     *
+     * @throws Exception If failed.
+     */
+    @Test
+    public void testNodeStartByOldVersionPersistenceData_2_9() throws Exception {
+        doTestStartupWithOldVersion("2.9.0");
+    }
+
+    /**
+     * Tests opportunity to read data from previous Ignite DB version.
+     *
      * @param igniteVer 3-digits version of ignite
      * @throws Exception If failed.
      */