forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-s3-store.xml
280 lines (229 loc) · 7.24 KB
/
build-test-s3-store.xml
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?xml version="1.0"?>
<project basedir="." name="portal-test-s3-store" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<if>
<not>
<isset property="aws.store.enabled" />
</not>
<then>
<get-testcase-property property.name="aws.store.enabled" />
</then>
</if>
<if>
<not>
<isset property="ibm.store.enabled" />
</not>
<then>
<get-testcase-property property.name="ibm.store.enabled" />
</then>
</if>
<macrodef name="delete-expired-buckets">
<sequential>
<local name="bucket.list" />
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.list">
<arg line="s3api list-buckets" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.list">
<arg line="--endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud --output json s3api list-buckets" />
</exec>
</then>
</if>
<script language="javascript"><![CDATA[
var bucketList = project.getProperty("bucket.list");
var expiredBuckets = [];
var json = JSON.parse(bucketList);
for (var i = 0; i < json.Buckets.length; i++) {
var bucket = json.Buckets[i];
var name = JSON.stringify(bucket.Name);
if (name.indexOf('lfr-qa-poshi-test') > -1) {
var createDate = bucket.CreationDate;
var currentDate = new Date();
var bucketDate = new Date(createDate);
var diffHours = (currentDate - bucketDate) / (1000 * 60 * 60);
if (diffHours > 12) {
expiredBuckets.push(name);
}
}
}
project.setProperty("expired.buckets", expiredBuckets.toString());]]>
</script>
<for list="${expired.buckets}" param="delete.name">
<sequential>
<echo>Expired Bucket: @{delete.name}</echo>
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.list">
<arg line="s3 rb s3://@{delete.name} --force" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.list">
<arg line="--endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud s3 rb s3://@{delete.name} --force" />
</exec>
</then>
</if>
</sequential>
</for>
</sequential>
</macrodef>
<target name="assert-document-in-bucket">
<local name="bucket.objects" />
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.objects">
<arg line="s3api list-objects --bucket lfr-qa-poshi-test-${s3.bucket.id} --prefix ${companyId}/${groupId}" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.objects">
<arg line="--endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud --output json s3api list-objects --bucket lfr-qa-poshi-test-${s3.bucket.id} --prefix ${companyId}/${groupId}" />
</exec>
</then>
</if>
<echo>${bucket.objects}</echo>
<if>
<and>
<contains string="${bucket.objects}" substring="Contents" />
<contains string="${bucket.objects}" substring="1.0" />
</and>
<then>
<echo>Document is in bucket.</echo>
</then>
<else>
<fail>Document is not in bucket.</fail>
</else>
</if>
</target>
<target name="assert-no-document-in-bucket">
<local name="bucket.objects" />
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.objects">
<arg line="s3api list-objects --bucket lfr-qa-poshi-test-${s3.bucket.id} --prefix ${companyId}/${groupId}" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.objects">
<arg line="--endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud --output json s3api list-objects --bucket lfr-qa-poshi-test-${s3.bucket.id} --prefix ${companyId}/${groupId}" />
</exec>
</then>
</if>
<echo>${bucket.objects}</echo>
<if>
<not>
<contains string="${bucket.objects}" substring="Contents" />
</not>
<then>
<echo>The bucket is empty.</echo>
</then>
<else>
<fail>The bucket is not empty.</fail>
</else>
</if>
</target>
<target name="configure-aws-cli">
<exec executable="aws">
<arg line="configure set aws_access_key_id ${aws.s3.access.key.id}" />
</exec>
<exec executable="aws">
<arg line="configure set aws_secret_access_key ${aws.s3.secret.access.key}" />
</exec>
<exec executable="aws">
<arg line="configure set default.region us-west-1" />
</exec>
<exec executable="aws">
<arg line="configure set default.s3.signature_version s3v4" />
</exec>
<local name="bucket.configuration" />
<exec executable="aws" outputproperty="bucket.configuration">
<arg line="configure list" />
</exec>
<echo>${bucket.configuration}</echo>
</target>
<target name="configure-ibm-aws-cli">
<exec executable="aws">
<arg line="configure set aws_access_key_id ${ibm.s3.access.key.id}" />
</exec>
<exec executable="aws">
<arg line="configure set aws_secret_access_key ${ibm.s3.secret.access.key}" />
</exec>
<exec executable="aws">
<arg line="configure set default.region us-east" />
</exec>
<exec executable="aws">
<arg line="configure set default.s3.signature_version s3v4" />
</exec>
<local name="bucket.configuration" />
<exec executable="aws" outputproperty="bucket.configuration">
<arg line="configure list" />
</exec>
<echo>${bucket.configuration}</echo>
</target>
<target name="create-s3-bucket">
<local name="bucket.create.output" />
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.create.output">
<arg line="s3api create-bucket --bucket lfr-qa-poshi-test-${s3.bucket.id} --region us-west-1 --create-bucket-configuration LocationConstraint=us-west-1" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws" outputproperty="bucket.create.output">
<arg line="s3 mb s3://lfr-qa-poshi-test-${s3.bucket.id} --region us-east-standard --endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud" />
</exec>
</then>
</if>
<echo>${bucket.create.output}</echo>
<if>
<not>
<contains string="${bucket.create.output}" substring="lfr-qa-poshi-test-${s3.bucket.id}" />
</not>
<then>
<fail>Bucket was not created.</fail>
</then>
</if>
</target>
<target name="delete-s3-bucket">
<if>
<equals arg1="${aws.store.enabled}" arg2="true" />
<then>
<exec executable="aws">
<arg line="s3 rb s3://lfr-qa-poshi-test-${s3.bucket.id} --force" />
</exec>
</then>
</if>
<if>
<equals arg1="${ibm.store.enabled}" arg2="true" />
<then>
<exec executable="aws">
<arg line="--endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud s3 rb s3://lfr-qa-poshi-test-${s3.bucket.id} --force" />
</exec>
</then>
</if>
<delete-expired-buckets />
</target>
</project>