• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java NodeMatchers类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.testfx.matcher.base.NodeMatchers的典型用法代码示例。如果您正苦于以下问题:Java NodeMatchers类的具体用法?Java NodeMatchers怎么用?Java NodeMatchers使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



NodeMatchers类属于org.testfx.matcher.base包,在下文中一共展示了NodeMatchers类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: testNetworkTableSourceContextMenu

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
@Tag("NonHeadlessTests")
public void testNetworkTableSourceContextMenu() {
  NetworkTableInstance inst = NetworkTableInstance.getDefault();
  inst.getEntry("/testSourceContextMenu").setString("value");
  inst.waitForEntryListenerQueue(-1.0);
  WaitForAsyncUtils.waitForFxEvents();

  rightClickOn(NodeMatchers.hasText("testSourceContextMenu"));
  Node showAsText = lookup(NodeMatchers.hasText("Show as: Text View")).query();
  assertNotNull(showAsText);
  clickOn(showAsText);

  WidgetTile tile = lookup(".tile").query();
  assertNotNull(tile);
  Widget widget = tile.getContent();
  DataSource source = widget.getSources().get(0);
  assertTrue(source.isActive());
  assertEquals("testSourceContextMenu", source.getName());
  assertEquals("value",source.getData());
}
 
开发者ID:wpilibsuite,项目名称:shuffleboard,代码行数:22,代码来源:MainWindowControllerTest.java


示例2: testShouldCreateNewOperationInPipelineView

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testShouldCreateNewOperationInPipelineView() {
  // Given:
  clickOn(addOperation.getDescription().name());

  WaitForAsyncUtils.waitForFxEvents();

  // Then:
  final String cssSelector = "." + StyleClassNameUtility.classNameForStepHolding(addOperation
      .getDescription());
  verifyThat(cssSelector, NodeMatchers.isNotNull());
  verifyThat(cssSelector, NodeMatchers.isVisible());

  assertEquals(STEP_NOT_ADDED_MSG, 1, pipeline.getSteps().size());
  assertEquals("Step added was not this addOperation", AddOperation.DESCRIPTION, pipeline
      .getSteps().get(0).getOperationDescription());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:18,代码来源:MainWindowTest.java


示例3: testDragOperationFromPaletteToPipeline

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testDragOperationFromPaletteToPipeline() {
  // Given:
  drag(addOperation.getDescription().name())
      .dropTo(".steps");

  WaitForAsyncUtils.waitForFxEvents();

  // Then:
  final String cssSelector = "." + StyleClassNameUtility.classNameForStepHolding(addOperation
      .getDescription());
  verifyThat(cssSelector, NodeMatchers.isNotNull());
  verifyThat(cssSelector, NodeMatchers.isVisible());

  assertEquals(STEP_NOT_ADDED_MSG, 1, pipeline.getSteps().size());
  assertEquals("Step added was not this addOperation", AddOperation.DESCRIPTION, pipeline
      .getSteps().get(0).getOperationDescription());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:19,代码来源:MainWindowTest.java


示例4: testDragOperationFromPaletteToLeftOfExistingStep

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testDragOperationFromPaletteToLeftOfExistingStep() {
  // Run the same test as before
  testDragOperationFromPaletteToPipeline();

  // Now add a second step before it
  drag(additionOperation.getDescription().name())
      // We drag to the input socket hint handle because this will always be on the left side
      // of the
      // step. This should cause the UI to put the new step on the left side
      .dropTo(StyleClassNameUtility.cssSelectorForInputSocketHandleOnStepHolding(addOperation
          .getDescription()));

  WaitForAsyncUtils.waitForFxEvents();

  // Then:
  final String cssSelector = "." + StyleClassNameUtility
      .classNameForStepHolding(additionOperation.getDescription());
  verifyThat(cssSelector, NodeMatchers.isNotNull());
  verifyThat(cssSelector, NodeMatchers.isVisible());

  assertEquals(STEP_NOT_ADDED_MSG, 2, pipeline.getSteps().size());
  assertEquals("Step added was not added in the right place in the pipeline",
      AdditionOperation.DESCRIPTION, pipeline.getSteps().get(0).getOperationDescription());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:26,代码来源:MainWindowTest.java


示例5: testDragOperationFromPaletteToRightOfExistingStep

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testDragOperationFromPaletteToRightOfExistingStep() {
  // Run the same test as before
  testDragOperationFromPaletteToPipeline();

  // Now add a second step after it
  drag(additionOperation.getDescription().name())
      // We drag to the output socket hint handle because this will always be on the right side
      // of the
      // step. This should cause the UI to put the new step on the right side
      .dropTo(StyleClassNameUtility.cssSelectorForOutputSocketHandleOnStepHolding(addOperation
          .getDescription()));

  WaitForAsyncUtils.waitForFxEvents();

  // Then:
  final String cssSelector = "." + StyleClassNameUtility
      .classNameForStepHolding(additionOperation.getDescription());
  verifyThat(cssSelector, NodeMatchers.isNotNull());
  verifyThat(cssSelector, NodeMatchers.isVisible());

  assertEquals(STEP_NOT_ADDED_MSG, 2, pipeline.getSteps().size());
  assertEquals("Step added was not added in the right place in the pipeline",
      AdditionOperation.DESCRIPTION, pipeline.getSteps().get(1).getOperationDescription());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:26,代码来源:MainWindowTest.java


示例6: testCreatesSourceStarted

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testCreatesSourceStarted() throws Exception {
  // When
  Platform.runLater(() -> addSourceView.getWebcamButton().fire());
  WaitForAsyncUtils.waitForFxEvents();
  verifyThat("." + AddSourceButton.SOURCE_DIALOG_STYLE_CLASS, NodeMatchers.isVisible());

  clickOn("OK");
  WaitForAsyncUtils.waitForFxEvents();

  // Then
  Optional<CameraSource> cameraSource = mockCameraSourceFactory.lastSourceCreated;
  assertTrue("A source was not constructed", cameraSource.isPresent());
  assertTrue("A source was not created started", cameraSource.get().isRunning());
  verifyThat("." + AddSourceButton.SOURCE_DIALOG_STYLE_CLASS, NodeMatchers.isNull());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:17,代码来源:AddSourceButtonTest.java


示例7: testCreatesSourceStartedFails

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testCreatesSourceStartedFails() throws Exception {
  // When
  Platform.runLater(() -> addSourceView.getWebcamButton().fire());
  WaitForAsyncUtils.waitForFxEvents();
  verifyThat("." + AddSourceButton.SOURCE_DIALOG_STYLE_CLASS, NodeMatchers.isVisible());

  clickOn("OK");
  WaitForAsyncUtils.waitForFxEvents();

  // Then
  Optional<CameraSource> cameraSource = mockCameraSourceFactory.lastSourceCreated;
  assertTrue("A source was not constructed", cameraSource.isPresent());
  assertFalse("A source was not created but should not have been started", cameraSource.get()
      .isRunning());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:17,代码来源:AddSourceButtonTest.java


示例8: testConnectingTwoOperations

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@SuppressWarnings("PMD.JUnitTestsShouldIncludeAssert")
@Test
public void testConnectingTwoOperations() {
  // Given
  Step addStep = addOperation(1, additionOperation);
  Step subtractStep = addOperation(1, subtractionOperation);

  // When
  drag(StyleClassNameUtility.cssSelectorForOutputSocketHandleOn(addStep), MouseButton.PRIMARY)
      .dropTo(StyleClassNameUtility.cssSelectorForInputSocketHandleOn(subtractStep));

  // Then
  Connection connection = assertStepConnected("The add step did not connect to the subtract "
      + "step", addStep, subtractStep);
  verifyThat(".pipeline", NodeMatchers.hasChildren(1, "."
      + StyleClassNameUtility.classNameFor(connection)));

}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:19,代码来源:PipelineUITest.java


示例9: testEditClassMatching

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
public void testEditClassMatching(){
	logger.info("testEditClassMatching started");
	CustomGuiTest.waitUntilLoadingWindowIsClosed("Get classes",500);
	CustomGuiTest.waitUntilNodeIsVisible("#switchModeButton", timeout);
	//Test if manual matching gets loaded
	logger.info("Clicking on Button to get Manual Matching");
	clickOn("#switchModeButton");
	logger.info("Waiting for #sourcePabel to be visible");
	CustomGuiTest.waitUntilNodeIsVisible("#sourcePanel", timeout);
	verifyThat("#sourcePanel", NodeMatchers.isVisible());
	verifyThat("#targetPanel", NodeMatchers.isVisible());
	logger.info("Waiting for #switchModeButton to be visible");
	CustomGuiTest.waitUntilNodeIsVisible("#switchModeButton", timeout);
	logger.info("Clicking on Button to get automated Matching");
	//Continue with automated matching
	clickOn("#switchModeButton");
	logger.info("Waiting for #tableView to be visible");
	CustomGuiTest.waitUntilNodeIsVisible("#tableView", timeout);
	logger.info("Clicking on tableView");
	clickOn("#tableView");
	logger.info("Clicking on NEXT");
	clickOn("Next");
}
 
开发者ID:dice-group,项目名称:LIMES,代码行数:24,代码来源:ConfigurationWizardTest.java


示例10: testVisibility

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testVisibility() {
	assertNotNull(mainView.getGraphBuild());
	assertNotNull(mainView.toolBox);
	verifyThat("#runButton", NodeMatchers.isDisabled());

	assertFalse(itemNew.isDisable());
	assertFalse(itemLoad.isDisable());
	assertFalse(itemExit.isDisable());
	assertFalse(itemLayout.isDisable());
	assertFalse(itemDelete.isDisable());

	assertTrue(itemEdit.isDisable());
	assertTrue(itemSave.isDisable());
	assertTrue(itemActiveLearning.isDisable());
	assertTrue(itemBatchLearning.isDisable());
	assertTrue(itemUnsupervisedLearning.isDisable());
}
 
开发者ID:dice-group,项目名称:LIMES,代码行数:19,代码来源:MainViewTest.java


示例11: testEditClassMatching

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testEditClassMatching() {
	logger.info("Clicking on Configuration");
	clickOn("Configuration");
	logger.info("Clicking on Edit");
	clickOn("Edit");
	logger.info("Clicking on Classes");
	clickOn("Edit Classes");

	logger.info("Waiting for classes to be visible");
	CustomGuiTest.waitUntilLoadingWindowIsClosed("Get classes",500);
	CustomGuiTest.waitUntilNodeIsVisible("Restaurant", 150);
	CustomGuiTest.waitUntilNodeIsVisible("Person", 15);
	verifyThat("Restaurant", NodeMatchers.isVisible());
	verifyThat("Person", NodeMatchers.isVisible());
}
 
开发者ID:dice-group,项目名称:LIMES,代码行数:17,代码来源:EditLoadedConfigClassesTest.java


示例12: testDragSingleNetworkTableSourceToWidgetPane

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testDragSingleNetworkTableSourceToWidgetPane() {
  NetworkTableInstance inst = NetworkTableInstance.getDefault();
  inst.getEntry("/a string source").setString("foo");
  inst.waitForEntryListenerQueue(-1.0);
  WaitForAsyncUtils.waitForFxEvents();

  drag(NodeMatchers.hasText("a string source"), MouseButton.PRIMARY)
      .dropTo(".widget-pane");

  WidgetTile tile = lookup(".widget-pane .tile").query();
  assertNotNull(tile);
}
 
开发者ID:wpilibsuite,项目名称:shuffleboard,代码行数:14,代码来源:MainWindowControllerTest.java


示例13: testInitialState

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testInitialState() {
    verifyThat("#items", hasItems(0));

    verifyThat("#addInput", hasText(""));

    verifyThat("#selectAll", CheckBoxMatchers.isSelected(false));
    verifyThat("#selectAll", NodeMatchers.isInvisible());

    verifyThat("#itemsLeftLabel", LabeledMatchers.hasText("0 items left"));
    verifyThat("#showAll", ButtonMatchers.isSelected(true));
    verifyThat("#showActive", ButtonMatchers.isSelected(false));
    verifyThat("#showCompleted", ButtonMatchers.isSelected(false));
}
 
开发者ID:lestard,项目名称:todomvcFX,代码行数:15,代码来源:AbstractTest.java


示例14: testSwitchEditMode

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testSwitchEditMode() throws Exception {
    // given
    addSomeItems();

    verifyThat(getItemContentBox(1), NodeMatchers.isVisible());
    verifyThat(getItemEditTextField(1), NodeMatchers.isInvisible());



    // when
    doubleClickOn(getItemContentBox(1));

    // then
    verifyThat(getItemContentBox(1), NodeMatchers.isInvisible());
    verifyThat(getItemEditTextField(1), NodeMatchers.isVisible());

    // when
    push(KeyCode.ENTER);

    // then
    verifyThat(getItemContentBox(1), NodeMatchers.isVisible());
    verifyThat(getItemEditTextField(1), NodeMatchers.isInvisible());


    // given
    doubleClickOn(getItemContentBox(1));
    verifyThat(getItemContentBox(1), NodeMatchers.isInvisible());
    verifyThat(getItemEditTextField(1), NodeMatchers.isVisible());

    // when
    clickOn(getItemContentBox(2)); // other label

    // then
    verifyThat(getItemContentBox(1), NodeMatchers.isVisible());
    verifyThat(getItemEditTextField(1), NodeMatchers.isInvisible());
}
 
开发者ID:lestard,项目名称:todomvcFX,代码行数:38,代码来源:AbstractTest.java


示例15: testSelectAllIsInvisibleAfterLastItemIsRemoved

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
public void testSelectAllIsInvisibleAfterLastItemIsRemoved() {
    // given
    clickOn("#addInput");
    write("todo0").push(KeyCode.ENTER);
    write("todo1").push(KeyCode.ENTER);
    verifyThat("#selectAll", NodeMatchers.isVisible());

    // when
    clickOn(getItemDeleteButton(1));
    clickOn(getItemDeleteButton(0));

    // then
    verifyThat("#selectAll", NodeMatchers.isInvisible());
}
 
开发者ID:lestard,项目名称:todomvcFX,代码行数:16,代码来源:AbstractTest.java


示例16: testField

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
/**
 * Test showing a property in the property pane.
 */
@Test
public void testField() {
	togglePane();

	FxAssert.verifyThat("#propertyPane", ParentMatchers.hasChildren(0));

	Map<PropertyType, String> prop = Collections.singletonMap(TestProperties.TITLE, "value");
	Platform.runLater(() -> control.update(() -> prop));
	sleep(1, TimeUnit.SECONDS);

	FxAssert.verifyThat("#propertyPane", NodeMatchers.hasChild("Title"));

	togglePane();
}
 
开发者ID:ProgrammingLife2015,项目名称:dnainator,代码行数:18,代码来源:PropertyPaneControllerTest.java


示例17: testLargeField

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
/**
 * Test showing a large property in the property pane.
 */
@Test
public void testLargeField() {
	togglePane();

	FxAssert.verifyThat("#propertyPane", ParentMatchers.hasChildren(0));

	Map<PropertyType, String> prop = Collections.singletonMap(TestProperties.TITLE, generate());
	Platform.runLater(() -> control.update(() -> prop));
	sleep(1, TimeUnit.SECONDS);

	FxAssert.verifyThat("#propertyPane", NodeMatchers.hasChild("Title"));

	togglePane();
}
 
开发者ID:ProgrammingLife2015,项目名称:dnainator,代码行数:18,代码来源:PropertyPaneControllerTest.java


示例18: testEnable

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
/**
 * Test enabling the load button.
 */
@Test
public void testEnable() {
	togglePane();

	FxAssert.verifyThat("#openButton", NodeMatchers.isDisabled());

	clickOn("#nodeField")
	.clickOn("#newickField")
	.clickOn("#gffField");

	FxAssert.verifyThat("#openButton", NodeMatchers.isEnabled());
}
 
开发者ID:ProgrammingLife2015,项目名称:dnainator,代码行数:16,代码来源:OpenPaneControllerTest.java


示例19: testClickOnCreateWebCameraOpensDialog

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
@SuppressWarnings("PMD.JUnitTestsShouldIncludeAssert")
public void testClickOnCreateWebCameraOpensDialog() throws Exception {
  Platform.runLater(() -> addSourceView.getWebcamButton().fire());
  WaitForAsyncUtils.waitForFxEvents();
  verifyThat('.' + AddSourceButton.SOURCE_DIALOG_STYLE_CLASS, NodeMatchers.isVisible());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:8,代码来源:AddSourceButtonTest.java


示例20: testClickOnCreateIPCameraOpensDialog

import org.testfx.matcher.base.NodeMatchers; //导入依赖的package包/类
@Test
@SuppressWarnings("PMD.JUnitTestsShouldIncludeAssert")
public void testClickOnCreateIPCameraOpensDialog() throws Exception {
  Platform.runLater(() -> addSourceView.getIpcamButton().fire());
  WaitForAsyncUtils.waitForFxEvents();
  verifyThat("." + AddSourceButton.SOURCE_DIALOG_STYLE_CLASS, NodeMatchers.isVisible());
}
 
开发者ID:WPIRoboticsProjects,项目名称:GRIP,代码行数:8,代码来源:AddSourceButtonTest.java



注:本文中的org.testfx.matcher.base.NodeMatchers类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ScriptException类代码示例发布时间:2022-05-22
下一篇:
Java IContext类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap