Package org.sonar.api.web

Examples of org.sonar.api.web.Dashboard


    verify(loadedTemplateDao).insert(eq(new LoadedTemplateDto("Fake", LoadedTemplateDto.DASHBOARD_TYPE)));
  }

  @Test
  public void should_activate_dashboard() {
    Dashboard dashboard = Dashboard.create();
    when(fakeDashboardTemplate.createDashboard()).thenReturn(dashboard);

    task.start();

    verify(activeDashboardDao).insert(any(ActiveDashboardDto.class));
View Full Code Here


    verify(activeDashboardDao).insert(any(ActiveDashboardDto.class));
  }

  @Test
  public void should_disable_activation() {
    Dashboard dashboard = Dashboard.create();
    dashboard.setActivated(false);
    when(fakeDashboardTemplate.createDashboard()).thenReturn(dashboard);

    task.start();

    verify(activeDashboardDao, never()).insert(any(ActiveDashboardDto.class));
View Full Code Here

    verify(activeDashboardDao, never()).insert(any(ActiveDashboardDto.class));
  }

  @Test
  public void shouldCreateDtoFromExtension() {
    Dashboard dashboard = Dashboard.create()
      .setGlobal(true)
      .setLayout(DashboardLayout.TWO_COLUMNS_30_70);
    Dashboard.Widget widget = dashboard.addWidget("fake-widget", 1);
    widget.setProperty("fake-property", "fake_metric");
    when(fakeDashboardTemplate.createDashboard()).thenReturn(dashboard);

    DashboardDto dto = task.createDtoFromExtension("Fake", fakeDashboardTemplate.createDashboard());
    assertThat(dto.getUserId()).isNull();
View Full Code Here

TOP

Related Classes of org.sonar.api.web.Dashboard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.