本文整理汇总了Java中org.jboss.forge.addon.ui.test.UITestHarness类的典型用法代码示例。如果您正苦于以下问题:Java UITestHarness类的具体用法?Java UITestHarness怎么用?Java UITestHarness使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UITestHarness类属于org.jboss.forge.addon.ui.test包,在下文中一共展示了UITestHarness类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: setUp
import org.jboss.forge.addon.ui.test.UITestHarness; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
AddonRegistry addonRegistry = Furnace.instance(getClass().getClassLoader()).getAddonRegistry();
projectFactory = addonRegistry.getServices(ProjectFactory.class).get();
uiTestHarness = addonRegistry.getServices(UITestHarness.class).get();
project = projectFactory.createTempProject();
}
开发者ID:forge,项目名称:springboot-addon,代码行数:8,代码来源:SetupCommandTest.java
示例2: setUp
import org.jboss.forge.addon.ui.test.UITestHarness; //导入依赖的package包/类
@Before
public void setUp() throws Exception
{
AddonRegistry addonRegistry = Furnace.instance(getClass().getClassLoader()).getAddonRegistry();
projectFactory = addonRegistry.getServices(ProjectFactory.class).get();
uiTestHarness = addonRegistry.getServices(UITestHarness.class).get();
shellTest = addonRegistry.getServices(ShellTest.class).get();
project = projectFactory.createTempProject();
}
开发者ID:forge,项目名称:wildfly-swarm-addon,代码行数:10,代码来源:SetupCommandTest.java
示例3: setUp
import org.jboss.forge.addon.ui.test.UITestHarness; //导入依赖的package包/类
@Before
public void setUp() throws Exception
{
AddonRegistry addonRegistry = Furnace.instance(getClass().getClassLoader()).getAddonRegistry();
projectFactory = addonRegistry.getServices(ProjectFactory.class).get();
uiTestHarness = addonRegistry.getServices(UITestHarness.class).get();
shellTest = addonRegistry.getServices(ShellTest.class).get();
project = projectFactory.createTempProject(Arrays.asList(JavaSourceFacet.class, WildFlySwarmFacet.class));
}
开发者ID:forge,项目名称:wildfly-swarm-addon,代码行数:10,代码来源:CreateMainClassCommandTest.java
示例4: testUpdateDistribution
import org.jboss.forge.addon.ui.test.UITestHarness; //导入依赖的package包/类
@Test
@Ignore("The current implementation doesn't work as it tampers with addons loaded at the time."
+ " Even if it replaced all Windup addons, it would still fail on Windows as they keep the .jar's locked.")
public void testUpdateDistribution() throws Exception
{
// Download and unzip an old distribution.
final CoordinateBuilder coords = CoordinateBuilder.create()
.setGroupId("org.jboss.windup")
.setArtifactId("windup-distribution")
.setClassifier("offline")
.setVersion("2.2.0.Final")
.setPackaging("zip");
System.out.println("Downloading " + coords + ", may take a while.");
List<Coordinate> results = resolver.resolveVersions(DependencyQueryBuilder.create(coords));
File windupDir = OperatingSystemUtils.createTempDir();
this.updater.extractArtifact(results.get(0), windupDir);
windupDir = DistributionUpdater.getWindupDistributionSubdir(windupDir);
Assert.assertTrue(windupDir.exists());
System.setProperty(PathUtil.WINDUP_HOME, windupDir.getAbsolutePath());
// Run the upgrader.
distUpdater.replaceWindupDirectoryWithLatestDistribution();
// Check the new version.
String newUiVersion = getInstalledAddonVersion(windupDir.toPath().resolve("addons").toString(), WINDUP_UI_ADDON_NAME);
Assert.assertTrue(SingleVersion.valueOf(newUiVersion).compareTo(SingleVersion.valueOf("2.2.0.Final")) > 0);
// Try to run Windup from there.
// TODO: I need to set the harness addons directory to the freshly created dir.
UITestHarness harness = furnace.getAddonRegistry().getServices(UITestHarness.class).get();
try (CommandController controller = harness.createCommandController(WindupCommand.class))
{
controller.initialize();
controller.setValueFor(InputPathOption.NAME, Collections.singletonList(new File("src/test/resources/test.jar").getAbsolutePath()));
final File resultDir = new File("target/testRunFromUpgraded");
resultDir.mkdirs();
controller.setValueFor(OutputPathOption.NAME, resultDir.getAbsolutePath());
Result result = controller.execute();
Assert.assertTrue(result.getMessage(), !(result instanceof Failed));
}
catch (Throwable ex)
{
throw new WindupException("Failed running Windup from the upgraded directory: " + ex.getMessage(), ex);
}
}
开发者ID:windup,项目名称:windup,代码行数:48,代码来源:WindupUpdateDistributionCommandTest.java
注:本文中的org.jboss.forge.addon.ui.test.UITestHarness类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论