forked from VirtoCommerce/jenkins-pipeline-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMigrationTest
129 lines (123 loc) · 4.42 KB
/
MigrationTest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
def globalLib = library('global-shared-lib').com.test
def Utilities = globalLib.Utilities
def Packaging = globalLib.Packaging
def BRANCH_NAME
def DOCKER_SQL_PORT
def DOCKER_PLATFORM_PORT
def DOCKER_STOREFRONT_PORT
pipeline
{
agent any
options
{
timestamps()
disableConcurrentBuilds()
}
stages
{
stage("Init")
{
steps
{
script
{
powershell script: "Copy-Item .\\resources\\migrationTest\\* ${env.WORKSPACE}\\"
}
}
}
stage('Create Test Environment')
{
steps
{
script
{
// Start docker environment
DOCKER_SQL_PORT = Utilities.getSqlPort(this)
DOCKER_PLATFORM_PORT = Utilities.getPlatformPort(this)
DOCKER_STOREFRONT_PORT = Utilities.getStorefrontPort(this)
echo "DOCKER_PLATFORM_PORT=${DOCKER_PLATFORM_PORT}, DOCKER_STOREFRONT_PORT=${DOCKER_STOREFRONT_PORT}, DOCKER_SQL_PORT=${DOCKER_SQL_PORT}"
// 1. stop containers,
// remove instances including database
// 2. start up new containers
withEnv(["DOCKER_PLATFORM_PORT=${DOCKER_PLATFORM_PORT}", "DOCKER_STOREFRONT_PORT=${DOCKER_STOREFRONT_PORT}", "DOCKER_SQL_PORT=${DOCKER_SQL_PORT}", "COMPOSE_PROJECT_NAME=${env.BUILD_TAG}"]) {
bat "docker-compose up -d"
}
}
}
}
stage('Install Modules')
{
steps
{
script
{
// install modules
Packaging.installModules(this, 1)
// check installed modules
Packaging.checkInstalledModules(this)
}
}
}
stage('Install Sample Data')
{
steps
{
script
{
Packaging.createSampleData(this)
}
}
}
stage('Run Platform 3')
{
steps
{
script
{
def platform2Container = Utilities.getPlatformContainer(this)
bat "docker stop ${platform2Container}"
def conn_str = "Data Source=vc-db;Initial Catalog=VirtoCommerce2;Persist Security Info=True;User ID=sa;Password=v!rto_Labs!;MultipleActiveResultSets=True;Connect Timeout=30;"
bat "docker create --network=${env.BUILD_TAG.toLowerCase()}_virto -e ConnectionStrings:VirtoCommerce=\"${conn_str}\" -e ASPNETCORE_URLS=\"https://+;http://+\" -e ASPNETCORE_HTTPS_PORT=443 -p 9090:443 --name migration_test_platform3 platform-core:dev"
}
}
}
stage('Install Modules v3')
{
steps
{
script
{
def modulesRoot = "${env.SOLUTION_FOLDER}\\vc\\release\\3.0.0\\module"
def platformContainer = "migration_test_platform3"
//powershell "\$files = Get-ChildItem ${modulesRoot} -Recurse; foreach(\$file in \$files){ docker cp \$file.fullname ${platformContainer}:/vc-platform/ }"
bat "docker cp ${modulesRoot} ${platformContainer}:/vc-platform/modules"
bat "docker start ${platformContainer}"
sleep time: 60
//pwsh "${env.WORKSPACE}@libs/resources/azure/v3/vc-check-installed-modules.ps1 -ApiUrl https://localhost:9090 -ErrorAction Stop -Verbose"
Utilities.runSharedPS(this, 'v3/vc-check-installed-modules.ps1', '-ApiUrl https://localhost:9090 -Verbose')
}
}
}
stage('Finish')
{
steps
{
script
{
input message: "Stop"
}
}
}
}
post
{
always
{
withEnv(["DOCKER_PLATFORM_PORT=${DOCKER_PLATFORM_PORT}", "DOCKER_STOREFRONT_PORT=${DOCKER_STOREFRONT_PORT}", "DOCKER_SQL_PORT=${DOCKER_SQL_PORT}", "COMPOSE_PROJECT_NAME=${env.BUILD_TAG}"])
{
bat "docker rm migration_test_platform3 -f"
bat "docker-compose down -v"
}
}
}
}