Search in sources :

Example 6 with ListView

use of org.jenkinsci.test.acceptance.po.ListView in project acceptance-test-harness by jenkinsci.

the class JobDslPluginTest method job_filters_include_jobs_built_at_least_once.

/**
 * This test creates 5 jobs and builds 3 of them immediately. A list view is created with its job filter set to only
 * include jobs that were built at least once.
 */
@Test
@WithPlugins("view-job-filters")
public void job_filters_include_jobs_built_at_least_once() {
    List<Job> notBuiltJobs = createAmountOfJobs(2, false);
    List<Job> builtJobs = createAmountOfJobs(3, true);
    String jobDslScript = "listView('" + LIST_VIEW_NAME + "') {\n" + "  columns {\n" + "    name()\n" + "  }\n" + "  jobFilters {\n" + "    buildTrend {\n" + "      matchType(MatchType.INCLUDE_MATCHED)\n" + "      buildCountType(BuildCountType.AT_LEAST_ONE)\n" + "    }\n" + "  }\n" + "}";
    View view = openNewlyCreatedListView(jobDslScript, LIST_VIEW_NAME);
    assertThat(view, not(containsJob(notBuiltJobs.get(0))));
    assertThat(view, not(containsJob(notBuiltJobs.get(1))));
    assertThat(view, containsJob(builtJobs.get(0)));
    assertThat(view, containsJob(builtJobs.get(1)));
    assertThat(view, containsJob(builtJobs.get(2)));
}
Also used : CoreMatchers.containsString(org.hamcrest.CoreMatchers.containsString) Job(org.jenkinsci.test.acceptance.po.Job) FreeStyleJob(org.jenkinsci.test.acceptance.po.FreeStyleJob) ListView(org.jenkinsci.test.acceptance.po.ListView) View(org.jenkinsci.test.acceptance.po.View) AbstractJUnitTest(org.jenkinsci.test.acceptance.junit.AbstractJUnitTest) Test(org.junit.Test) WithPlugins(org.jenkinsci.test.acceptance.junit.WithPlugins)

Example 7 with ListView

use of org.jenkinsci.test.acceptance.po.ListView in project acceptance-test-harness by jenkinsci.

the class JobDslPluginTest method job_filters_all_jobs_are_added.

/**
 * This test creates a listView and creates two additional jobs. The job filter of the script is set to "all jobs".
 * The two additional jobs as well as the seed job is added to the listView.
 */
@Test
@WithPlugins("view-job-filters")
public void job_filters_all_jobs_are_added() {
    List<Job> jobs = createAmountOfJobs(2, false);
    String jobDslScript = "listView('" + LIST_VIEW_NAME + "') {\n" + "  columns {\n" + "    name()\n" + "  }\n" + "  jobFilters {\n" + "        all()\n" + "  }\n" + "\n" + "}";
    View view = openNewlyCreatedListView(jobDslScript, LIST_VIEW_NAME);
    assertThat(view, containsJob(jobs.get(0)));
    assertThat(view, containsJob(jobs.get(1)));
}
Also used : CoreMatchers.containsString(org.hamcrest.CoreMatchers.containsString) Job(org.jenkinsci.test.acceptance.po.Job) FreeStyleJob(org.jenkinsci.test.acceptance.po.FreeStyleJob) ListView(org.jenkinsci.test.acceptance.po.ListView) View(org.jenkinsci.test.acceptance.po.View) AbstractJUnitTest(org.jenkinsci.test.acceptance.junit.AbstractJUnitTest) Test(org.junit.Test) WithPlugins(org.jenkinsci.test.acceptance.junit.WithPlugins)

Example 8 with ListView

use of org.jenkinsci.test.acceptance.po.ListView in project acceptance-test-harness by jenkinsci.

the class JobDslPluginTest method is_ListView_created.

/**
 * Test if a new ListView is created via Job DSL script TextBox.
 * The created View shall contain a description.
 */
@Test
public void is_ListView_created() {
    String descriptionText = "This is the description of testView";
    String jobDslScript = "listView('" + LIST_VIEW_NAME + "') {\n" + "    description('" + descriptionText + "')\n" + "}";
    View view = openNewlyCreatedListView(jobDslScript, LIST_VIEW_NAME);
    checkDescription(view, descriptionText);
}
Also used : CoreMatchers.containsString(org.hamcrest.CoreMatchers.containsString) ListView(org.jenkinsci.test.acceptance.po.ListView) View(org.jenkinsci.test.acceptance.po.View) AbstractJUnitTest(org.jenkinsci.test.acceptance.junit.AbstractJUnitTest) Test(org.junit.Test)

Example 9 with ListView

use of org.jenkinsci.test.acceptance.po.ListView in project acceptance-test-harness by jenkinsci.

the class JobDslPluginTest method openNewlyCreatedListView.

/**
 * Opens a newly created ListView. The View gets created by a seed job via Job DSL script.
 * @param script The Job DSL script
 */
private View openNewlyCreatedListView(String script, String viewName) {
    FreeStyleJob seed = createJobAndSetJobDslScript(script, true);
    seed.scheduleBuild().shouldSucceed();
    seed.open();
    View view = getView(viewName);
    view.open();
    return view;
}
Also used : FreeStyleJob(org.jenkinsci.test.acceptance.po.FreeStyleJob) ListView(org.jenkinsci.test.acceptance.po.ListView) View(org.jenkinsci.test.acceptance.po.View)

Example 10 with ListView

use of org.jenkinsci.test.acceptance.po.ListView in project acceptance-test-harness by jenkinsci.

the class JobDslPluginTest method only_jobs_matching_regex_are_added.

/**
 * Test if the created jobs are correctly added to the ListView using a regex.
 */
@Test
public void only_jobs_matching_regex_are_added() {
    Job job1 = createJobWithName(EXAMPLE_DISABLED_NAME);
    Job job2 = createJobWithName(EXAMPLE_ENABLED_NAME);
    List<Job> jobs = createAmountOfJobs(2, false);
    String jobDslScript = "listView('" + LIST_VIEW_NAME + "') {\n" + "  columns {\n" + "    name()\n" + "  }\n" + "  jobs {\n" + "    regex('" + LIST_VIEW_REGEX + "')\n" + "  }\n" + "}";
    View view = openNewlyCreatedListView(jobDslScript, LIST_VIEW_NAME);
    assertThat(view, containsJob(job1));
    assertThat(view, containsJob(job2));
    assertThat(view, not(containsJob(jobs.get(0))));
    assertThat(view, not(containsJob(jobs.get(1))));
}
Also used : CoreMatchers.containsString(org.hamcrest.CoreMatchers.containsString) Job(org.jenkinsci.test.acceptance.po.Job) FreeStyleJob(org.jenkinsci.test.acceptance.po.FreeStyleJob) ListView(org.jenkinsci.test.acceptance.po.ListView) View(org.jenkinsci.test.acceptance.po.View) AbstractJUnitTest(org.jenkinsci.test.acceptance.junit.AbstractJUnitTest) Test(org.junit.Test)

Aggregations

ListView (org.jenkinsci.test.acceptance.po.ListView)31 Test (org.junit.Test)28 FreeStyleJob (org.jenkinsci.test.acceptance.po.FreeStyleJob)27 AbstractJUnitTest (org.jenkinsci.test.acceptance.junit.AbstractJUnitTest)26 CoreMatchers.containsString (org.hamcrest.CoreMatchers.containsString)20 View (org.jenkinsci.test.acceptance.po.View)20 Job (org.jenkinsci.test.acceptance.po.Job)18 WithPlugins (org.jenkinsci.test.acceptance.junit.WithPlugins)13 Build (org.jenkinsci.test.acceptance.po.Build)4 Pattern (java.util.regex.Pattern)3 SmokeTest (org.jenkinsci.test.acceptance.junit.SmokeTest)3 Category (org.junit.experimental.categories.Category)2 WebElement (org.openqa.selenium.WebElement)2 URL (java.net.URL)1 AnalysisCollectorColumn (org.jenkinsci.test.acceptance.plugins.analysis_collector.AnalysisCollectorColumn)1 JobDslBuildStep (org.jenkinsci.test.acceptance.plugins.job_dsl.JobDslBuildStep)1 BuildWithParameters (org.jenkinsci.test.acceptance.po.BuildWithParameters)1 MatrixProject (org.jenkinsci.test.acceptance.po.MatrixProject)1 StringParameter (org.jenkinsci.test.acceptance.po.StringParameter)1 Issue (org.jvnet.hudson.test.Issue)1