deploydb/src/test/groovy/deploydb/DeploymentStartedNotificati...

218 lines
8.6 KiB
Groovy

package deploydb
import spock.lang.*
import dropwizardintegtest.IntegrationModelHelper
import dropwizardintegtest.IntegrationRestApiClient
class DeploymentStartedNotificationsSpec extends Specification {
IntegrationTestAppHelper integAppHelper = new IntegrationTestAppHelper()
IntegrationRestApiClient integrationRestApiClient = new IntegrationRestApiClient()
IntegrationModelHelper integModelHelper = new IntegrationModelHelper(integrationRestApiClient)
private WebhooksModelConfigHelper mcfgHelper = new WebhooksModelConfigHelper()
private long deploymentId = 1L
def setup() {
mcfgHelper.setup()
integAppHelper.startAppWithConfiguration('deploydb.spock.yml')
integAppHelper.startWebhookTestServerWithConfiguration('webhookTestServer.example.yml')
integAppHelper.runner.getApplication().configuration.configDirectory = mcfgHelper.baseCfgDirName
integAppHelper.webhookRunner.requestWebhookObject.contentTypeParam =
"application/vnd.deploydb.deploymentstarted.v1+json"
}
def cleanup() {
integAppHelper.stopApp()
integAppHelper.stopWebhookTestServerApp()
mcfgHelper.cleanup()
}
def "no webhook should be called when you receive deployment started trigger if there is no webhook config" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createEnvironmentNoWebhooksConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 0
}
def "webhook should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createDeploymentStartedWebhookConfigFile()
mcfgHelper.createEnvironmentNoWebhooksConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/notify-deployment-started/build"]
// setup the deployment for started trigger
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 1
}
def "environment webhook should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createDeploymentStartedEnvironmentWebhookConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/basicEnv-deploy-started/build"]
// setup the deployment for started trigger
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 1
}
def "both global and environment webhooks should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createDeploymentStartedWebhookConfigFile()
mcfgHelper.createDeploymentStartedEnvironmentWebhookConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/notify-deployment-started/build","/job/basicEnv-deploy-started/build"]
// setup the deployment for started trigger
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 2
}
def "multiple webhooks should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createMultipleDeploymentStartedWebhooksConfigFile()
mcfgHelper.createEnvironmentNoWebhooksConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/notify-deployment-started-1/build", "/job/notify-deployment-started-2/build"]
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 2
}
def "multiple environments webhook should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createMultipleDeploymentStartedEnvironmentWebhooksConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/basicEnv-deploy-started-1/build", "/job/basicEnv-deploy-started-2/build"]
// setup the deployment for started trigger
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 2
}
def "both multiple global and environment webhooks should be called when you receive deployment started trigger" () {
given:
// Create the required config
mcfgHelper.createServicePromotionPipelineModelsConfigFiles()
mcfgHelper.createMultipleDeploymentStartedWebhooksConfigFile()
mcfgHelper.createMultipleDeploymentStartedEnvironmentWebhooksConfigFile()
// load up the configuration
integAppHelper.runner.getApplication().loadModelConfiguration()
/* set the webhookTestServer's requestWebhookObject. This data will be compare once deploydb
* sends the webhook to the webhookTestServer
*/
integAppHelper.webhookRunner.requestWebhookObject.configuredUriPaths =
["/job/notify-deployment-started-1/build", "/job/notify-deployment-started-2/build",
"/job/basicEnv-deploy-started-1/build", "/job/basicEnv-deploy-started-2/build"]
// setup the deployment for started trigger
integModelHelper.sendCreateArtifact()
when:
boolean success = integModelHelper.sendDeploymentStartedTrigger(deploymentId)
then:
success == true
sleep(1000)
integAppHelper.webhookRunner.requestWebhookObject.requestMessageBodies.size() == 4
}
}