-
Notifications
You must be signed in to change notification settings - Fork 166
238 lines (238 loc) · 10 KB
/
database_write_prohibition_integration_test.yml
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
name: database-write-prohibition integration test
env:
sermantVersion: 1.0.0
on:
push:
pull_request:
branches:
- '*'
paths:
- 'sermant-agentcore/**'
- 'sermant-integration-tests/database-write-prohibition-test/**'
- 'sermant-plugins/sermant-database-write-prohibition/**'
- '.github/workflows/database_write_prohibition_integration_test.yml'
- '.github/actions/common/database-write-prohibition/**'
- '.github/actions/scenarios/database-write-prohibition/**'
- '.github/actions/common/plugin-change-check/action.yml'
- '.github/actions/common/entry/action.yml'
- '.github/actions/common/exit/action.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
set-execution-conditions:
name: set-execution-conditions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: plugin-change-check
id: plugin-change-check
uses: ./.github/actions/common/plugin-change-check
- name: set-outputs
id: set-outputs
run: |
echo "enableMongodbDataBaseWriteProhibitionAction=${{env.enableMongodbDataBaseWriteProhibitionAction}}" >> $GITHUB_OUTPUT
echo "enableMysqlDataBaseWriteProhibitionAction=${{env.enableMysqlDataBaseWriteProhibitionAction}}" >> $GITHUB_OUTPUT
echo "enableOpengaussDataBaseWriteProhibitionAction=${{env.enableOpengaussDataBaseWriteProhibitionAction}}" >> $GITHUB_OUTPUT
echo "enableOpengaussAndPostgresqlDataBaseWriteProhibitionAction=${{env.enableOpengaussAndPostgresqlDataBaseWriteProhibitionAction}}" >> $GITHUB_OUTPUT
outputs:
enableMongodbDataBaseWriteProhibitionAction: ${{ steps.set-outputs.outputs.enableMongodbDataBaseWriteProhibitionAction }}
enableMysqlDataBaseWriteProhibitionAction: ${{ steps.set-outputs.outputs.enableMysqlDataBaseWriteProhibitionAction }}
enableOpengaussDataBaseWriteProhibitionAction: ${{ steps.set-outputs.outputs.enableOpengaussDataBaseWriteProhibitionAction }}
enableOpengaussAndPostgresqlDataBaseWriteProhibitionAction: ${{ steps.set-outputs.outputs.enableOpengaussAndPostgresqlDataBaseWriteProhibitionAction }}
download-midwares-and-cache:
name: download midwares and cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: cache zookeeper
uses: actions/cache@v3
with:
path: apache-zookeeper-3.6.3-bin.tar.gz
key: ${{ runner.os }}-apache-zookeeper-3.6.3
restore-keys: |
${{ runner.os }}-apache-zookeeper-3.6.3
- name: download zookeeper
run: |
export ROOT_PATH=$(pwd)
bash ./sermant-integration-tests/scripts/tryDownloadMidware.sh zk
build-agent-and-cache:
name: build agent and cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- name: cache agent
uses: actions/cache@v3
with:
path: sermant-agent-*/
key: ${{ runner.os }}-agent-${{ github.run_id }}
- name: package agent
run: |
sed -i '/sermant-backend/d' pom.xml
sed -i '/sermant-integration-tests/d' pom.xml
sed -i '/sermant-injector/d' pom.xml
mvn package -DskipTests -Ptest --file pom.xml
test-for-database-write-prohibition-mongodb:
name: Test for database-write-prohibition mongodb
runs-on: ubuntu-latest
if: needs.set-execution-conditions.outputs.enableMongodbDataBaseWriteProhibitionAction == 'true'
needs: [set-execution-conditions, build-agent-and-cache, download-midwares-and-cache]
strategy:
matrix:
include:
- mongodbClientVersion: "3.7.0"
- mongodbClientVersion: "3.8.2"
- mongodbClientVersion: "3.9.1"
- mongodbClientVersion: "3.10.2"
- mongodbClientVersion: "3.11.3"
- mongodbClientVersion: "3.12.14"
- mongodbClientVersion: "4.0.6"
- mongodbClientVersion: "4.1.2"
- mongodbClientVersion: "4.2.3"
- mongodbClientVersion: "4.3.4"
- mongodbClientVersion: "4.4.2"
- mongodbClientVersion: "4.5.1"
- mongodbClientVersion: "4.6.1"
- mongodbClientVersion: "4.7.2"
- mongodbClientVersion: "4.8.2"
- mongodbClientVersion: "4.9.1"
- mongodbClientVersion: "4.10.2"
- mongodbClientVersion: "4.11.1"
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: set java version to environment
run: |
echo "javaVersion=8" >> $GITHUB_ENV
- name: common operations
uses: ./.github/actions/common/database-write-prohibition
- name: database-write-prohibition-mongodb test for mongodbClientVersion=${{ matrix.mongodbClientVersion }}
uses: ./.github/actions/scenarios/database-write-prohibition/mongodb
test-for-database-write-prohibition-mysql:
name: Test for database-write-prohibition mysql
if: needs.set-execution-conditions.outputs.enableMysqlDataBaseWriteProhibitionAction == 'true'
runs-on: ubuntu-latest
needs: [set-execution-conditions, build-agent-and-cache, download-midwares-and-cache]
strategy:
matrix:
include:
- mysqlClientVersion: "2.6.2"
- mysqlClientVersion: "2.7.6"
- mysqlClientVersion: "2.7.12"
- mysqlClientVersion: "3.0.6"
- mysqlClientVersion: "3.0.11"
- mysqlClientVersion: "3.1.4"
- mysqlClientVersion: "3.2.0"
- mysqlClientVersion: "3.3.3"
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: set java version to environment
run: |
echo "javaVersion=8" >> $GITHUB_ENV
- name: common operations
uses: ./.github/actions/common/database-write-prohibition
- name: database-write-prohibition-mysql test for mysqlClientVersion=${{ matrix.mysqlClientVersion }}
uses: ./.github/actions/scenarios/database-write-prohibition/mysql
test-for-postgresql:
name: Test for postgresql
runs-on: ubuntu-latest
if: needs.set-execution-conditions.outputs.enableOpengaussAndPostgresqlDataBaseWriteProhibitionAction == 'true'
needs: [set-execution-conditions, build-agent-and-cache, download-midwares-and-cache]
strategy:
matrix:
include:
- postgresqlVersion: "9.4-1200-jdbc4"
- postgresqlVersion: "9.4-1203-jdbc4"
- postgresqlVersion: "9.4-1206-jdbc4"
- postgresqlVersion: "9.4-1200-jdbc41"
- postgresqlVersion: "9.4-1203-jdbc41"
- postgresqlVersion: "9.4-1206-jdbc41"
- postgresqlVersion: "9.4.1207"
- postgresqlVersion: "9.4.1210"
- postgresqlVersion: "9.4.1212"
- postgresqlVersion: "42.0.0"
- postgresqlVersion: "42.1.0"
- postgresqlVersion: "42.1.2"
- postgresqlVersion: "42.1.4"
- postgresqlVersion: "42.2.0"
- postgresqlVersion: "42.2.3"
- postgresqlVersion: "42.2.6"
- postgresqlVersion: "42.2.9"
- postgresqlVersion: "42.2.12"
- postgresqlVersion: "42.2.15"
- postgresqlVersion: "42.2.18"
- postgresqlVersion: "42.2.21"
- postgresqlVersion: "42.2.24"
- postgresqlVersion: "42.2.27"
- postgresqlVersion: "42.2.29"
- postgresqlVersion: "42.3.0"
- postgresqlVersion: "42.3.3"
- postgresqlVersion: "42.3.6"
- postgresqlVersion: "42.3.8"
- postgresqlVersion: "42.3.10"
- postgresqlVersion: "42.4.0"
- postgresqlVersion: "42.4.3"
- postgresqlVersion: "42.4.5"
- postgresqlVersion: "42.5.0"
- postgresqlVersion: "42.5.3"
- postgresqlVersion: "42.5.6"
- postgresqlVersion: "42.6.0"
- postgresqlVersion: "42.6.2"
- postgresqlVersion: "42.7.0"
- postgresqlVersion: "42.7.2"
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: set java version to environment
run: |
echo "javaVersion=8" >> $GITHUB_ENV
datasourcePassword=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9' | head -c 10)A1a#$
echo "datasourcePassword=$datasourcePassword" >> $GITHUB_ENV
- name: common operations
uses: ./.github/actions/common/database-write-prohibition
- name: database-write-prohibition test for postgresqlVersion=${{ matrix.postgresqlVersion }}
uses: ./.github/actions/scenarios/database-write-prohibition/postgresql/
test-for-opengauss:
name: Test for opengauss
runs-on: ubuntu-latest
if: needs.set-execution-conditions.outputs.enableOpengaussDataBaseWriteProhibitionAction == 'true'
needs: [set-execution-conditions, build-agent-and-cache, download-midwares-and-cache]
strategy:
matrix:
include:
- opengaussVersion: "3.0.0"
- opengaussVersion: "3.0.5"
- opengaussVersion: "3.0.5-og"
- opengaussVersion: "3.1.0"
- opengaussVersion: "3.1.0-og"
- opengaussVersion: "3.1.1"
- opengaussVersion: "3.1.1-og"
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: set java version to environment
run: |
echo "javaVersion=8" >> $GITHUB_ENV
datasourcePassword=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9' | head -c 10)A1a#$
echo "datasourcePassword=$datasourcePassword" >> $GITHUB_ENV
- name: common operations
uses: ./.github/actions/common/database-write-prohibition
- name: database-write-prohibition test for opengaussVersion=${{ matrix.opengaussVersion }}
uses: ./.github/actions/scenarios/database-write-prohibition/opengauss/