[ https://issues.apache.org/jira/browse/GEODE-8251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17138253#comment-17138253 ]
ASF GitHub Bot commented on GEODE-8251: --------------------------------------- albertogpz commented on a change in pull request #5257: URL: https://github.com/apache/geode/pull/5257#discussion_r441382563 ########## File path: geode-core/src/upgradeTest/java/org/apache/geode/internal/cache/rollingupgrade/RollingUpgradeWithGfshDUnitTest.java ########## @@ -0,0 +1,160 @@ +/* + * 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 org.apache.geode.internal.cache.rollingupgrade; + +/* + * 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. + */ + +import static org.assertj.core.api.Assertions.assertThat; + +import java.io.File; +import java.io.IOException; +import java.util.Collection; +import java.util.List; + +import org.junit.Rule; +import org.junit.Test; +import org.junit.experimental.categories.Category; +import org.junit.rules.TemporaryFolder; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import org.apache.geode.internal.UniquePortSupplier; +import org.apache.geode.test.compiler.ClassBuilder; +import org.apache.geode.test.junit.categories.BackwardCompatibilityTest; +import org.apache.geode.test.junit.rules.gfsh.GfshExecution; +import org.apache.geode.test.junit.rules.gfsh.GfshRule; +import org.apache.geode.test.junit.rules.gfsh.GfshScript; +import org.apache.geode.test.junit.runners.CategoryWithParameterizedRunnerFactory; +import org.apache.geode.test.version.TestVersion; +import org.apache.geode.test.version.VersionManager; + +/** + * This test iterates through the versions of Geode and executes client compatibility with + * the current version of Geode. + */ +@Category({BackwardCompatibilityTest.class}) +@RunWith(Parameterized.class) +@Parameterized.UseParametersRunnerFactory(CategoryWithParameterizedRunnerFactory.class) +public class RollingUpgradeWithGfshDUnitTest { + private final UniquePortSupplier portSupplier = new UniquePortSupplier(); + private final String oldVersion; + + @Parameterized.Parameters(name = "{0}") + public static Collection<String> data() { + List<String> result = VersionManager.getInstance().getVersionsWithoutCurrent(); + result.removeIf(s -> TestVersion.compare(s, "1.10.0") < 0); Review comment: Why start from this version? Is the upgrade from previous versions not supported? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > exception creating domain.Configuration stops locator startup after rolling > upgrade > ----------------------------------------------------------------------------------- > > Key: GEODE-8251 > URL: https://issues.apache.org/jira/browse/GEODE-8251 > Project: Geode > Issue Type: Bug > Components: configuration > Affects Versions: 1.13.0 > Reporter: Bill Burcham > Assignee: Jinmei Liao > Priority: Major > Labels: GeodeOperationAPI > > As reported on the dev@geode mailing list > https://markmail.org/message/qfnnj2s2x7dzbnzx and shown in the > {{testRollingUpgradeOfGeodeWithGfs}} test in PR: > https://github.com/apache/geode/pull/5224, if custom Jars are deployed, the > locator doesn't start after a rolling upgrade and we see: > {code} > org.apache.geode.SerializationException: Could not > create an instance of > org.apache.geode.management.internal.configuration.domain.Configuration > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)