use of org.jenkinsci.test.acceptance.junit.WithCredentials in project acceptance-test-harness by jenkinsci.
the class AnalysisCollectorPluginTest method should_open_links_in_folder_dashboard_and_nested_views.
/**
* Sets up a nested view that contains a dashboard view with a warnings-per-project portlet.
* Creates a folder in this view and a multi-branch job in this folder.
* The multi-branch job is based on a git repository with two branches (master and branch).
* Each branch contains a Jenkinsfile and several warnings results files.
* Builds the jobs and verifies that the portlet is correctly filled and that all links open the correct page.
*/
@Test
@Issue({ "JENKINS-39950" })
@WithPlugins({ "dashboard-view", "nested-view", "git", "workflow-job", "workflow-cps", "workflow-basic-steps", "workflow-durable-task-step", "workflow-multibranch" })
@WithDocker
@WithCredentials(credentialType = WithCredentials.SSH_USERNAME_PRIVATE_KEY, values = { "warnings", "/org/jenkinsci/test/acceptance/docker/fixtures/GitContainer/unsafe" })
public void should_open_links_in_folder_dashboard_and_nested_views() {
// avoid JENKINS-49026
checkExtensionAreDeployed("hudson.plugins.analysis.dashboard.AbstractPortlet", Collections.EMPTY_SET);
// Given
NestedView nested = jenkins.getViews().create(NestedView.class);
DashboardView dashboard = nested.getViews().create(DashboardView.class);
dashboard.configure(() -> {
dashboard.matchAllJobs();
dashboard.checkRecurseIntoFolders();
addWarningsPortlet(dashboard);
});
Folder folder = dashboard.jobs.create(Folder.class);
folder.save();
folder.open();
String repoUrl = createGitRepositoryInDockerContainer();
WorkflowMultiBranchJob job = folder.getJobs().create(WorkflowMultiBranchJob.class);
GitBranchSource branchSource = job.addBranchSource(GitBranchSource.class);
branchSource.setRemote(repoUrl);
branchSource.setCredentials("warnings");
job.save();
job.waitForBranchIndexingFinished(20);
// When
List<String> jobs = Arrays.asList("master", "branch");
for (String name : jobs) {
buildBranch(job, name);
}
// Then
dashboard.open();
for (String name : jobs) {
verifyWarningsCountInPortlet(name, dashboard);
}
for (AnalysisPlugin plugin : ANALYSIS_PLUGINS) {
for (String name : jobs) {
dashboard.open();
findPortletLink(dashboard, name, plugin.getId()).click();
assertThat(driver, hasContent(plugin.getName()));
}
}
}
Aggregations