forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#1654 from shapeblue/jsb/4.8.2.0-version
Updating pom.xml version numbers for release 4.8.2.0-SNAPSHOTOften, patch and security releases do not require schema migrations or data migrations. However, if an empty upgrade class and associated scripts are not defined, the upgrade process will break. With this change, if a release does not have an upgrade, a noop DbUpgrade is added to the upgrade path. This approach allows the upgrade to proceed and for the database to properly reflect the installed version. This change should make the release process simpler as RMs no longer need to rememeber to create this boilerplate code when starting a new release. Beginning with the 4.8.2.0 and 4.9.1.0 releases, the project will formally adopt a four (4) position release number to properly accomodate rekeases that contain only CVE fixes. The DatabaseUpgradeChecker and Version classes made assumptions that they would always parse and compare three (3) position version numbers. This change adds the CloudStackVersion value object that supports both three (3) and four (4) version numbers. It encapsulates version comparsion logic, as well as, the rules to allow three (3) and four (4) to interoperate. * Modifies DatabaseUpgradeChecker to handle derive an upgrade path for a version that was not explicitly specified. It determines the releases the first release before it with database migrations and uses that list as the basis for the list for version being calculated. A noop upgrade is then added to the list which causes no schema changes or data migrations, but will update the database to the version. * Adds unit tests for the upgrade path calculation logic in DatabaseUpgradeChecker * Removes dummy upgrade logic for the 4.8.2.0 introduced in previous versions of this patch * Introduces the CloudStackVersion value object which parses and compares three (3) and four (4) position version numbers. This class is intended to replace com.cloud.maint.Version. * Adds the junit-dataprovider dependency -- allowing test data to be concisely generated separately from the execution of a test case. Used extensively in the CloudStackVersionTest. Signed-off-by: John Burwell <meaux@cockamamy.net> /cc @rhtyd @karuturi * pr/1654: Adds support for four position versions and optional db upgrades Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
- Loading branch information
Showing
131 changed files
with
895 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
413 changes: 257 additions & 156 deletions
413
engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
engine/schema/test/com/cloud/upgrade/DatabaseUpgradeCheckerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
package com.cloud.upgrade; | ||
|
||
import com.cloud.upgrade.dao.DbUpgrade; | ||
import com.cloud.upgrade.dao.Upgrade452to460; | ||
import com.cloud.upgrade.dao.Upgrade460to461; | ||
import com.cloud.upgrade.dao.Upgrade461to470; | ||
import com.cloud.upgrade.dao.Upgrade470to471; | ||
import com.cloud.upgrade.dao.Upgrade471to480; | ||
import com.cloud.upgrade.dao.Upgrade480to481; | ||
import org.apache.cloudstack.utils.CloudStackVersion; | ||
import org.junit.Test; | ||
|
||
import java.util.Arrays; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class DatabaseUpgradeCheckerTest { | ||
|
||
@Test | ||
public void testCalculateUpgradePath480to481() { | ||
|
||
final CloudStackVersion dbVersion = CloudStackVersion.parse("4.8.0"); | ||
assertNotNull(dbVersion); | ||
|
||
final CloudStackVersion currentVersion = CloudStackVersion.parse("4.8.1"); | ||
assertNotNull(currentVersion); | ||
|
||
final DatabaseUpgradeChecker checker = new DatabaseUpgradeChecker(); | ||
final DbUpgrade[] upgrades = checker.calculateUpgradePath(dbVersion, currentVersion); | ||
|
||
assertNotNull(upgrades); | ||
assertEquals(1, upgrades.length); | ||
assertTrue(upgrades[0] instanceof Upgrade480to481); | ||
|
||
} | ||
|
||
@Test | ||
public void testCalculateUpgradePath480to4820() { | ||
|
||
final CloudStackVersion dbVersion = CloudStackVersion.parse("4.8.0"); | ||
assertNotNull(dbVersion); | ||
|
||
final CloudStackVersion currentVersion = CloudStackVersion.parse("4.8.2.0"); | ||
assertNotNull(currentVersion); | ||
|
||
final DatabaseUpgradeChecker checker = new DatabaseUpgradeChecker(); | ||
final DbUpgrade[] upgrades = checker.calculateUpgradePath(dbVersion, currentVersion); | ||
|
||
assertNotNull(upgrades); | ||
assertEquals(2, upgrades.length); | ||
|
||
assertTrue(upgrades[0] instanceof Upgrade480to481); | ||
|
||
assertTrue(Arrays.equals(new String[] { "4.8.1", currentVersion.toString()}, upgrades[1].getUpgradableVersionRange())); | ||
assertEquals(currentVersion.toString(), upgrades[1].getUpgradedVersion()); | ||
|
||
} | ||
|
||
@Test | ||
public void testCalculateUpgradePath481to4820() { | ||
|
||
final CloudStackVersion dbVersion = CloudStackVersion.parse("4.8.1"); | ||
assertNotNull(dbVersion); | ||
|
||
final CloudStackVersion currentVersion = CloudStackVersion.parse("4.8.2.0"); | ||
assertNotNull(currentVersion); | ||
|
||
final DatabaseUpgradeChecker checker = new DatabaseUpgradeChecker(); | ||
final DbUpgrade[] upgrades = checker.calculateUpgradePath(dbVersion, currentVersion); | ||
|
||
assertNotNull(upgrades); | ||
assertEquals(1, upgrades.length); | ||
|
||
assertTrue(Arrays.equals(new String[] { "4.8.1", currentVersion.toString()}, upgrades[0].getUpgradableVersionRange())); | ||
assertEquals(currentVersion.toString(), upgrades[0].getUpgradedVersion()); | ||
|
||
} | ||
|
||
@Test | ||
public void testFindUpgradePath470to481() { | ||
|
||
final CloudStackVersion dbVersion = CloudStackVersion.parse("4.7.0"); | ||
assertNotNull(dbVersion); | ||
|
||
final CloudStackVersion currentVersion = CloudStackVersion.parse("4.8.1"); | ||
assertNotNull(currentVersion); | ||
|
||
final DatabaseUpgradeChecker checker = new DatabaseUpgradeChecker(); | ||
final DbUpgrade[] upgrades = checker.calculateUpgradePath(dbVersion, currentVersion); | ||
|
||
assertNotNull(upgrades); | ||
assertEquals(3, upgrades.length); | ||
|
||
assertTrue(upgrades[0] instanceof Upgrade470to471); | ||
assertTrue(upgrades[1] instanceof Upgrade471to480); | ||
assertTrue(upgrades[2] instanceof Upgrade480to481); | ||
|
||
} | ||
|
||
@Test | ||
public void testFindUpgradePath452to4820() { | ||
|
||
final CloudStackVersion dbVersion = CloudStackVersion.parse("4.5.2"); | ||
assertNotNull(dbVersion); | ||
|
||
final CloudStackVersion currentVersion = CloudStackVersion.parse("4.8.2.0"); | ||
assertNotNull(currentVersion); | ||
|
||
final DatabaseUpgradeChecker checker = new DatabaseUpgradeChecker(); | ||
final DbUpgrade[] upgrades = checker.calculateUpgradePath(dbVersion, currentVersion); | ||
|
||
assertNotNull(upgrades); | ||
assertEquals(7, upgrades.length); | ||
|
||
assertTrue(upgrades[0] instanceof Upgrade452to460); | ||
assertTrue(upgrades[1] instanceof Upgrade460to461); | ||
assertTrue(upgrades[2] instanceof Upgrade461to470); | ||
assertTrue(upgrades[3] instanceof Upgrade470to471); | ||
assertTrue(upgrades[4] instanceof Upgrade471to480); | ||
assertTrue(upgrades[5] instanceof Upgrade480to481); | ||
|
||
assertTrue(Arrays.equals(new String[] { "4.8.1", currentVersion.toString()}, upgrades[6].getUpgradableVersionRange())); | ||
assertEquals(currentVersion.toString(), upgrades[6].getUpgradedVersion()); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.