Skip to content

Commit

Permalink
find global; delete crap
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Kurz <[email protected]>
  • Loading branch information
scottkurz committed Sep 13, 2023
1 parent 0da2046 commit 4143c14
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 278 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ public static final void validateBeforeTestRun() {
* Tests the start with parameters menu action on a dashboard listed application.
*/
@Test
@Disabled
public void testLibertyConfigurationTabsExist() {

Shell configShell = launchRunConfigurationsDialogFromAppRunAs(MVN_APP_NAME);
Expand All @@ -302,6 +303,7 @@ public void testLibertyConfigurationTabsExist() {

@Test
@DisabledOnMac
@Disabled
public void testMavenCommandAssembly() throws IOException, InterruptedException, CommandNotFoundException {

IProject iProject = LibertyPluginTestUtils.getProject(MVN_APP_NAME);
Expand All @@ -315,6 +317,7 @@ public void testMavenCommandAssembly() throws IOException, InterruptedException,
}

@Test
@Disabled
public void testMavenWrapperCommandAssembly() throws IOException, InterruptedException, CommandNotFoundException {
IProject iProject = LibertyPluginTestUtils.getProject(MVN_WRAPPER_APP_NAME);
String projPath = iProject.getLocation().toOSString();
Expand All @@ -328,6 +331,7 @@ public void testMavenWrapperCommandAssembly() throws IOException, InterruptedExc
* Tests the start menu action on a dashboard listed application.
*/
@Test
@Disabled
public void testDashboardStartActionWithWrapper() {

// Start dev mode.
Expand All @@ -353,6 +357,7 @@ public void testDashboardStartActionWithWrapper() {
* Tests the start menu action on a dashboard listed application.
*/
@Test
@Disabled
public void testDashboardStartAction() {
// Start dev mode.
launchDashboardAction(MVN_APP_NAME, DashboardView.APP_MENU_ACTION_START);
Expand All @@ -379,6 +384,7 @@ public void testDashboardStartAction() {
* @throws InterruptedException
*/
@Test
@Disabled
public void testDashboardStopExternalServer() throws CommandNotFoundException, IOException, InterruptedException {

Path projAbsolutePath = wrapperProjectPath.toAbsolutePath();
Expand Down Expand Up @@ -411,6 +417,7 @@ public void testDashboardStopExternalServer() throws CommandNotFoundException, I
* Tests the start menu action on a dashboard listed application.
*/
@Test
@Disabled
public void testDashboardDebugAction() {
// Start dev mode.
launchDashboardAction(MVN_APP_NAME, DashboardView.APP_MENU_ACTION_DEBUG);
Expand All @@ -433,6 +440,7 @@ public void testDashboardDebugAction() {
* Tests the start with parameters menu action on a dashboard listed application.
*/
@Test
@Disabled
public void testDashboardStartWithCustomConfigAction() {

// Delete any previously created configs.
Expand Down Expand Up @@ -508,6 +516,7 @@ public void testDashboardDebugWithCustomConfigAction() {
* Tests the start, run tests, view test report, and stop dashboard actions.
*/
@Test
@Disabled
public void testDashboardActions() {

// Delete the test report files before we start this test.
Expand Down Expand Up @@ -557,6 +566,7 @@ public void testDashboardActions() {
* Run.
*/
@Test
@Disabled
public void testStartWithDefaultRunAsConfig() {

deleteLibertyToolsRunConfigEntriesFromAppRunAs(MVN_APP_NAME);
Expand Down Expand Up @@ -584,6 +594,7 @@ public void testStartWithDefaultRunAsConfig() {
* -> Run.
*/
@Test
@Disabled
public void testStartWithCustomRunAsConfig() {
// Delete any previously created configs.
deleteLibertyToolsRunConfigEntriesFromAppRunAs(MVN_APP_NAME);
Expand Down Expand Up @@ -616,6 +627,7 @@ public void testStartWithCustomRunAsConfig() {
* Tests the start, run tests, view IT report, view UT report, and stop run as shortcut actions.
*/
@Test
@Disabled
public void testRunAsShortcutActions() {

// Delete any previously created configs.
Expand Down Expand Up @@ -668,6 +680,7 @@ public void testRunAsShortcutActions() {
* (customized) -> Run.
*/
@Test
@Disabled
public void testStartWithCustomDebugAsConfig() {

deleteLibertyToolsRunConfigEntriesFromAppRunAs(MVN_APP_NAME);
Expand Down Expand Up @@ -716,6 +729,7 @@ public void testStartWithCustomDebugAsConfig() {
* Tests the start/stop debug as shortcut actions.
*/
@Test
@Disabled
public void testStartWithDebugAsShortcut() {

// Delete any previously created configs.
Expand Down Expand Up @@ -768,6 +782,7 @@ public void testStartWithNoWrapperAndNoPreferencesSet() {

@Test
@DisabledOnMac
@Disabled
public void testStartWithWrapperAndNoPreferencesSet() {

unsetBuildCmdPathInPreferences(bot, "Maven");
Expand Down Expand Up @@ -804,6 +819,7 @@ public void testStartWithWrapperAndNoPreferencesSet() {

@Test
@DisabledOnMac
@Disabled
public void testStartWithNoWrapperAndPreferencesSet() {

// verify no wrapper present
Expand Down Expand Up @@ -838,6 +854,7 @@ public void testStartWithNoWrapperAndPreferencesSet() {
* configuration JRE tab.
*/
@Test
@Disabled
public void testDefaultJRECompliance() {
// Delete any previously created configs.
deleteLibertyToolsRunConfigEntriesFromAppRunAs(MVN_APP_NAME);
Expand Down Expand Up @@ -873,6 +890,7 @@ public void testDefaultJRECompliance() {
* @throws Exception
*/
@Test
@Disabled
public void testAddingProjectToDashboardManually() throws Exception {

IProject iProject = LibertyPluginTestUtils.getProject(NON_DFLT_NAME);
Expand Down
Loading

0 comments on commit 4143c14

Please sign in to comment.