-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARTEMIS-4464 Cleanup on Soak and Smoke tests
- removed a few ignored tests - removed some artemis maven plugin usage and using the CLI directly now
- Loading branch information
1 parent
c990ed7
commit 9b56d29
Showing
74 changed files
with
1,662 additions
and
5,358 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
80 changes: 80 additions & 0 deletions
80
...s-test-support/src/main/java/org/apache/activemq/artemis/utils/cli/helper/HelperBase.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,80 @@ | ||
/* | ||
* 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.activemq.artemis.utils.cli.helper; | ||
|
||
import java.io.File; | ||
import java.lang.invoke.MethodHandles; | ||
|
||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
public class HelperBase { | ||
|
||
private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); | ||
|
||
public static final String ARTEMIS_HOME_PROPERTY = "artemis.distribution.output"; | ||
|
||
File artemisHome; | ||
File artemisInstance; | ||
|
||
HelperBase(String homeProperty) { | ||
String propertyHome = System.getProperty(homeProperty); | ||
if (propertyHome == null) { | ||
throw new IllegalArgumentException("System property " + propertyHome + " not defined"); | ||
} | ||
if (propertyHome != null) { | ||
artemisHome = new File(propertyHome); | ||
} | ||
logger.debug("using artemisHome as {}", artemisHome); | ||
if (!artemisHome.exists()) { | ||
throw new IllegalArgumentException(artemisHome + " folder does not exist in the file system"); | ||
} | ||
if (!new File(artemisHome, "/bin").exists() || !new File(artemisHome, "/bin/artemis").exists()) { | ||
throw new IllegalArgumentException("invalid bin folder"); | ||
} | ||
} | ||
|
||
public File getArtemisHome() { | ||
return artemisHome; | ||
} | ||
|
||
public HelperBase setArtemisHome(File artemisHome) { | ||
this.artemisHome = artemisHome; | ||
return this; | ||
} | ||
|
||
public File getArtemisInstance() { | ||
return artemisInstance; | ||
} | ||
|
||
public HelperBase setArtemisInstance(File artemisInstance) { | ||
this.artemisInstance = artemisInstance; | ||
return this; | ||
} | ||
|
||
public String[] getArgs() { | ||
return args; | ||
} | ||
|
||
public HelperBase setArgs(String... args) { | ||
this.args = args; | ||
return this; | ||
} | ||
|
||
String[] args = new String[0]; | ||
} |
Oops, something went wrong.