| package _self.projects |
|
|
| import Settings |
| import _self.bashNodeScript |
| import _self.lib.customBuildType.E2EBuildType |
| import _self.lib.utils.* |
| import jetbrains.buildServer.configs.kotlin.v2019_2.BuildStep |
| import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType |
| import jetbrains.buildServer.configs.kotlin.v2019_2.Project |
| import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.commitStatusPublisher |
| import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.notifications |
| import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.perfmon |
| import jetbrains.buildServer.configs.kotlin.v2019_2.failureConditions.BuildFailureOnMetric |
| import jetbrains.buildServer.configs.kotlin.v2019_2.failureConditions.failOnMetricChange |
| import jetbrains.buildServer.configs.kotlin.v2019_2.projectFeatures.buildReportTab |
| import jetbrains.buildServer.configs.kotlin.v2019_2.Triggers |
| import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.schedule |
| import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs |
| import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.finishBuildTrigger |
| import jetbrains.buildServer.configs.kotlin.v2019_2.ParameterDisplay |
| import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.exec |
| import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.ScriptBuildStep |
|
|
| object WPComTests : Project({ |
| id("WPComTests") |
| name = "WPCom Tests" |
| description = "Builds which test WordPress.com functionality, such as the Gutenberg plugin." |
|
|
| params { |
| param("docker_image", "%docker_image_e2e%") |
| param("build.prefix", "1") |
| } |
|
|
| features { |
| buildReportTab { |
| title = "VR Report" |
| startPage= "vr-report.zip!vr-report.zip!/test/visual/backstop_data/html_report/index.html" |
| } |
| } |
|
|
| |
| buildType(gutenbergPlaywrightBuildType("desktop", "fab2e82e-d27b-4ba2-bbd7-232df944e75c", atomic=false, edge=false)); |
| buildType(gutenbergPlaywrightBuildType("mobile", "77a5a0f1-9644-4c04-9d27-0066cd2d4ada", atomic=false, edge=false)); |
| |
| buildType(gutenbergPlaywrightBuildType("desktop", "e8817ab4-ec4e-4d58-a215-d1f87b2227b6", atomic=false, edge=true)); |
| buildType(gutenbergPlaywrightBuildType("mobile", "a655d304-4dcf-4864-8d82-8b22dba29feb", atomic=false, edge=true)); |
| |
| buildType(gutenbergPlaywrightBuildType("desktop", "c341e9b9-1118-48e9-a569-325100f5fd9" , atomic=true, edge=false)); |
| buildType(gutenbergPlaywrightBuildType("mobile", "e0f7e412-ae6c-41d3-9eec-c57c94dd8385", atomic=true, edge=false)); |
| |
| buildType(gutenbergPlaywrightBuildType("desktop", "4c66d90d-99c6-4ecb-9507-18bc2f44b551" , atomic=true, edge=true)); |
| buildType(gutenbergPlaywrightBuildType("mobile", "ba0f925b-497b-4156-977e-5bfbe94f5744", atomic=true, edge=true)); |
| |
| buildType(gutenbergPlaywrightBuildType("desktop", "a3f58555-56bb-42c6-8543-ab27213d3085" , atomic=true, nightly=true)); |
| buildType(gutenbergPlaywrightBuildType("mobile", "8191e677-0682-4709-9201-66a7788980f0", atomic=true, nightly=true)); |
|
|
| |
| buildType(jetpackSimpleDeploymentE2eBuildType("desktop", "3007d7a1-5642-4dbf-9935-d93f3cdb4dcc")); |
| buildType(jetpackSimpleDeploymentE2eBuildType("mobile", "ccfe7d2c-8f04-406b-8b83-3db6c8475661")); |
|
|
| |
| |
| buildType(jetpackAtomicDeploymentE2eBuildType("desktop", "81015cf6-27e7-40bd-a52d-df6bd19ffb01")); |
|
|
| |
| |
| buildType(jetpackAtomicBuildSmokeE2eBuildType("desktop", "f39587ab-f526-42aa-a88b-814702135af3")); |
|
|
| buildType(I18NTests); |
| buildType(P2E2ETests) |
| }) |
|
|
| fun gutenbergPlaywrightBuildType( targetDevice: String, buildUuid: String, atomic: Boolean = false, edge: Boolean = false, nightly: Boolean = false): E2EBuildType { |
| var siteType = if (atomic) "atomic" else "simple"; |
| var releaseType = when { |
| nightly -> "nightly" |
| edge -> "edge" |
| else -> "production" |
| } |
|
|
| val buildName = "Gutenberg $siteType E2E tests $releaseType ($targetDevice)" |
|
|
| return E2EBuildType ( |
| buildId = "WPComTests_gutenberg_${siteType}_${releaseType}_$targetDevice", |
| buildUuid = buildUuid, |
| buildName = buildName, |
| buildDescription = "Runs Gutenberg $siteType E2E tests on $targetDevice size", |
| testGroup = "gutenberg", |
| buildParams = { |
| text( |
| name = "env.CALYPSO_BASE_URL", |
| value = "https://wordpress.com", |
| label = "Test URL", |
| description = "URL to test against", |
| allowEmpty = false |
| ) |
| checkbox( |
| name = "env.COBLOCKS_EDGE", |
| value = "false", |
| label = "Use coblocks-edge", |
| description = "Use a blog with coblocks-edge sticker", |
| checked = "true", |
| unchecked = "false" |
| ) |
| param("env.AUTHENTICATE_ACCOUNTS", "gutenbergSimpleSiteEdgeUser,gutenbergSimpleSiteUser,coBlocksSimpleSiteEdgeUser,simpleSitePersonalPlanUser,gutenbergAtomicSiteUser,gutenbergAtomicSiteEdgeUser,gutenbergAtomicSiteEdgeNightliesUser") |
| param("env.VIEWPORT_NAME", "$targetDevice") |
| if (atomic) { |
| param("env.TEST_ON_ATOMIC", "true") |
| |
| |
| |
| param("JEST_E2E_WORKERS", "1") |
|
|
| } |
|
|
| if (nightly) { |
| param("env.GUTENBERG_NIGHTLY", "true"); |
| } |
|
|
| if (edge) { |
| param("env.GUTENBERG_EDGE", "true") |
| } |
|
|
| password("GB_E2E_ANNOUNCEMENT_SLACK_API_TOKEN", "credentialsJSON:8196e9b8-cf0a-4ab5-9547-95145134f04a", display = ParameterDisplay.HIDDEN); |
| |
| |
| |
| password("GB_E2E_ANNOUNCEMENT_SLACK_CHANNEL_ID", "credentialsJSON:b8ca97ea-322f-499f-aa21-ecdb8b373527", display = ParameterDisplay.HIDDEN); |
| text("GB_E2E_ANNOUNCEMENT_THREAD_TS", value = "", allowEmpty = true, display = ParameterDisplay.HIDDEN); |
| }, |
| buildSteps = { |
| exec { |
| name = "Post Successful Message to Slack" |
| executionMode = BuildStep.ExecutionMode.RUN_ON_SUCCESS |
| path = "./bin/post-threaded-slack-message.sh" |
| arguments = "%GB_E2E_ANNOUNCEMENT_SLACK_CHANNEL_ID% %GB_E2E_ANNOUNCEMENT_THREAD_TS% \"The $buildName passed successfully! <%teamcity.serverUrl%/viewLog.html?buildId=%teamcity.build.id%|View build>\" %GB_E2E_ANNOUNCEMENT_SLACK_API_TOKEN%" |
| } |
|
|
| exec { |
| name = "Post Failure Message to Slack" |
| executionMode = BuildStep.ExecutionMode.RUN_ONLY_ON_FAILURE |
| path = "./bin/post-threaded-slack-message.sh" |
| arguments = "%GB_E2E_ANNOUNCEMENT_SLACK_CHANNEL_ID% %GB_E2E_ANNOUNCEMENT_THREAD_TS% \"The $buildName failed! Could you have a look?! <%teamcity.serverUrl%/viewLog.html?buildId=%teamcity.build.id%|View build>\" %GB_E2E_ANNOUNCEMENT_SLACK_API_TOKEN%" |
| } |
| }, |
| buildFeatures = { |
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#gutenberg-e2e" |
| messageFormat = verboseMessageFormat { |
| addBranch = true |
| addStatusText = true |
| maximumNumberOfChanges = 10 |
| } |
| } |
| branchFilter = "+:<default>" |
| buildFailed = true |
| buildFinishedSuccessfully = true |
| } |
| }, |
| buildTriggers = { |
| schedule { |
| schedulingPolicy = daily { |
| hour = 4 |
| } |
| branchFilter = """ |
| +:trunk |
| """.trimIndent() |
| triggerBuild = always() |
| withPendingChangesOnly = false |
| } |
| } |
| ) |
| } |
|
|
| fun jetpackSimpleDeploymentE2eBuildType( targetDevice: String, buildUuid: String ): BuildType { |
| return BuildType({ |
| id("WPComTests_jetpack_simple_deployment_e2e_$targetDevice") |
| uuid = buildUuid |
| name = "Jetpack Simple Deployment E2E Tests ($targetDevice)" |
| description = "Runs E2E tests validating the deployment of Jetpack on Simple sites on $targetDevice viewport" |
|
|
| artifactRules = defaultE2eArtifactRules(); |
|
|
| vcs { |
| root(Settings.WpCalypso) |
| cleanCheckout = true |
| } |
|
|
| params { |
| defaultE2eParams() |
| calypsoBaseUrlParam() |
| param("env.VIEWPORT_NAME", "$targetDevice") |
| param("env.JETPACK_TARGET", "wpcom-deployment") |
| } |
|
|
| steps { |
| prepareE2eEnvironment() |
|
|
| runE2eTestsWithRetry(testGroup = "jetpack-wpcom-integration") |
|
|
| collectE2eResults() |
| } |
|
|
| features { |
| perfmon {} |
|
|
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#jetpack-alerts" |
| messageFormat = verboseMessageFormat { |
| addStatusText = true |
| } |
| } |
| branchFilter = "+:<default>" |
| buildFailedToStart = true |
| buildFailed = true |
| buildFinishedSuccessfully = false |
| buildProbablyHanging = true |
| } |
| } |
|
|
| failureConditions { |
| defaultE2eFailureConditions() |
| } |
| }); |
| } |
|
|
| fun jetpackAtomicDeploymentE2eBuildType( targetDevice: String, buildUuid: String ): BuildType { |
| val atomicVariations = listOf("default", "php-old", "php-new", "wp-beta", "wp-previous", "private", "ecomm-plan") |
|
|
| return BuildType({ |
| id("WPComTests_jetpack_atomic_deployment_e2e_$targetDevice") |
| uuid = buildUuid |
| name = "Jetpack Atomic Deployment E2E Tests ($targetDevice)" |
| description = "Runs E2E tests validating a Jetpack release candidate for full WPCOM Atomic deployment. Runs all tests on all Atomic environment variations." |
|
|
| artifactRules = defaultE2eArtifactRules(); |
|
|
| vcs { |
| root(Settings.WpCalypso) |
| cleanCheckout = true |
| } |
|
|
| params { |
| defaultE2eParams() |
| calypsoBaseUrlParam() |
| param("env.VIEWPORT_NAME", "$targetDevice") |
| param("env.JETPACK_TARGET", "wpcom-deployment") |
| param("env.TEST_ON_ATOMIC", "true") |
| |
| |
| |
| |
| param("JEST_E2E_WORKERS", "5") |
| } |
|
|
| steps { |
| prepareE2eEnvironment() |
|
|
| atomicVariations.forEach { variation -> |
| runE2eTestsWithRetry( |
| testGroup = "jetpack-wpcom-integration", |
| additionalEnvVars = mapOf( |
| "ATOMIC_VARIATION" to variation, |
| "RUN_ID" to "Atomic: $variation" |
| ), |
| stepName = "Run Atomic Jetpack E2E Tests: $variation", |
| ) |
| } |
|
|
| collectE2eResults() |
| } |
|
|
| features { |
| perfmon {} |
|
|
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#jetpack-alerts" |
| messageFormat = verboseMessageFormat { |
| addStatusText = true |
| } |
| } |
| branchFilter = "+:<default>" |
| buildFailedToStart = true |
| buildFailed = true |
| buildFinishedSuccessfully = false |
| buildProbablyHanging = true |
| } |
| } |
|
|
| failureConditions { |
| defaultE2eFailureConditions() |
| |
| |
| |
| executionTimeoutMin = 51 |
| } |
| }); |
| } |
|
|
| fun jetpackAtomicBuildSmokeE2eBuildType( targetDevice: String, buildUuid: String ): BuildType { |
| return BuildType({ |
| id("WPComTests_jetpack_atomic_build_smoke_e2e_$targetDevice") |
| uuid = buildUuid |
| name = "Jetpack Atomic Build Smoke E2E Tests ($targetDevice)" |
| description = "Runs E2E tests to smoke test the most recent Jetpack build on Atomic staging sites. It uses a randomized mix of Atomic environment variations." |
|
|
| artifactRules = defaultE2eArtifactRules(); |
|
|
| vcs { |
| root(Settings.WpCalypso) |
| cleanCheckout = true |
| } |
|
|
| params { |
| defaultE2eParams() |
| calypsoBaseUrlParam() |
| param("env.VIEWPORT_NAME", "$targetDevice") |
| param("env.JETPACK_TARGET", "wpcom-deployment") |
| param("env.TEST_ON_ATOMIC", "true") |
| param("env.ATOMIC_VARIATION", "mixed") |
| |
| |
| |
| param("JEST_E2E_WORKERS", "14") |
| } |
|
|
| steps { |
| prepareE2eEnvironment() |
|
|
| runE2eTestsWithRetry(testGroup = "jetpack-wpcom-integration") |
|
|
| collectE2eResults() |
| } |
|
|
| features { |
| perfmon {} |
|
|
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#jetpack-alerts" |
| messageFormat = verboseMessageFormat { |
| addStatusText = true |
| } |
| } |
| branchFilter = "+:<default>" |
| buildFailedToStart = true |
| buildFailed = true |
| buildFinishedSuccessfully = false |
| buildProbablyHanging = true |
| } |
| } |
|
|
| failureConditions { |
| defaultE2eFailureConditions() |
| } |
| }); |
| } |
|
|
|
|
| private object I18NTests : E2EBuildType( |
| buildId = "WPComTests_i18n", |
| buildUuid = "2698576f-6ae4-4f05-ae9a-55ce07c9b42f", |
| buildName = "I18N Tests", |
| buildDescription = "Runs tests related to i18n", |
| testGroup = "i18n", |
| buildParams = { |
| text( |
| name = "env.CALYPSO_BASE_URL", |
| value = "https://wordpress.com", |
| label = "Test URL", |
| description = "URL to test against", |
| allowEmpty = false |
| ) |
| text( |
| name = "env.LOCALES", |
| value = "en,es,pt-br,de,fr,he,ja,it,nl,ru,tr,id,zh-cn,zh-tw,ko,ar,sv", |
| label = "Locales to use", |
| description = "Locales to use, separated by comma", |
| allowEmpty = false |
| ) |
| param("env.VIEWPORT_NAME", "desktop") |
| }, |
| buildFeatures = { |
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#i18n-devs" |
| messageFormat = simpleMessageFormat() |
| } |
| branchFilter = "trunk" |
| buildFailed = true |
| buildFinishedSuccessfully = true |
| buildFailedToStart = true |
| firstSuccessAfterFailure = true |
| buildProbablyHanging = true |
| } |
| }, |
| buildTriggers = { |
| schedule { |
| schedulingPolicy = daily { |
| hour = 3 |
| } |
| branchFilter = """ |
| +:trunk |
| """.trimIndent() |
| triggerBuild = always() |
| withPendingChangesOnly = false |
| } |
| } |
| ) |
|
|
| object P2E2ETests : E2EBuildType( |
| buildId = "WPComTests_p2", |
| buildUuid = "086ed775-eee4-4cc0-abc4-bb497979ef48", |
| buildName = "P2 E2E Tests", |
| buildDescription = "Runs end-to-end tests against P2.", |
| testGroup = "p2", |
| buildParams = { |
| param("env.VIEWPORT_NAME", "desktop") |
| param("env.CALYPSO_BASE_URL", "https://wpcalypso.wordpress.com") |
| }, |
| buildFeatures = { |
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#e2eflowtesting-p2" |
| messageFormat = simpleMessageFormat() |
| } |
| branchFilter = "trunk" |
| buildFailedToStart = true |
| buildFailed = true |
| buildFinishedSuccessfully = false |
| buildProbablyHanging = true |
| } |
| notifications { |
| notifierSettings = slackNotifier { |
| connection = "PROJECT_EXT_11" |
| sendTo = "#happytools-alerts" |
| messageFormat = simpleMessageFormat() |
| } |
| branchFilter = "trunk" |
| buildFailed = true |
| } |
| }, |
| buildTriggers = { |
| schedule { |
| schedulingPolicy = cron { |
| hours = "*/3" |
| dayOfWeek = "*" |
| } |
| branchFilter = "+:trunk" |
| triggerBuild = always() |
| withPendingChangesOnly = false |
| } |
| } |
| ) |
|
|