forked from Azure/azure-storage-fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blobfuse-nightly.yml
executable file
·610 lines (531 loc) · 20.9 KB
/
blobfuse-nightly.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
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
# BlobFuse Nightly Build-Sanity Pipeline
schedules:
# Cron string < minute hour day-of-month month day-of-week>
# * means all like '*' in day of month means everyday
# Run only on master branch
# 'always' controls whether to run only if there is a change or not
- cron: "0 0 * * *"
displayName: Daily midnight BlobFuse build
branches:
include:
- master
always: true
# List of jobs to run in parallel
jobs:
- job: NightlySanity
timeoutInMinutes: 240
# Define on what all OS we want to run this Pipeline
strategy:
matrix:
Ubuntu-16:
imageName: 'ubuntu-16.04'
containerName: 'test-cnt-ubn-16'
quickTestDir: 'ubn16'
Ubuntu-18:
imageName: 'ubuntu-18.04'
containerName: 'test-cnt-ubn-18'
quickTestDir: 'ubn18'
Ubuntu-20:
imageName: 'ubuntu-20.04'
containerName: 'test-cnt-ubn-20'
quickTestDir: 'ubn20'
pool:
vmImage: $(imageName)
variables:
- group: NightlyBlobFuse
- name: MOUNT_DIR
value: "/home/vsts/work/blob_mnt"
- name: TEMP_DIR
value: "/mnt/blobfusetmp"
- name: BLOBFUSE_CFG
value: "/home/vsts/work/blobfuse.cfg"
- name: BLOBFUSE_CFG_ADLS
value: "/home/vsts/work/blobfuse.cfg.adls"
- name: BLOBFUSE_CFG_GTEST
value: "./connection.cfg"
- name: BLOBFUSE_STRESS_DIR
value: "/home/vsts/work/blob_stress"
# Each job has set of steps to be done
steps:
- script: |
sudo apt-get update --fix-missing
sudo apt-get install pkg-config cmake libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20-dev libboost-all-dev gcc g++ -y
displayName: "Basic Tools Setup"
- script: |
sudo apt-get install libfuse-dev -y
#export GOROOT=/usr/local/go
#export GOPATH=$HOME/go
#export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
displayName: "libFuse Setup"
# List commits done
- script: |
echo "Below commits were done in last 12 hours : " `date`
git --no-pager log --since="12 hours ago" --stat
displayName: "List Commits"
# Build the blobFuse binary
- script: |
export INCLUDE_TESTS=1
sudo chmod +x build.sh
. ./build.sh
displayName: "Build BlobFuse"
# Test the binary just to make sure it was built fine
- script: |
./build/blobfuse --version
displayName: "Test the binary"
# Initialize logging for blobfuse
- script: |
sudo cp ./systemd/10-blobfuse.conf /etc/rsyslog.d/
sudo cp ./systemd/blobfuse-logrotate /etc/logrotate.d/blobfuse
displayName: "Copy the syslog filter files"
#continueOnError: true
# Restart rsyslog to init the logging
- script: |
sudo service rsyslog restart
displayName: "Restart rsyslogd service"
#continueOnError: true
# Create directory structures for the basic testing
- script: |
mkdir $(MOUNT_DIR)
echo "Creating Mount dir " $(MOUNT_DIR)
displayName: "Create Mount Directory"
- script: |
sudo mkdir $(TEMP_DIR)
sudo chown -R `whoami` $(TEMP_DIR)
chmod 777 $(TEMP_DIR)
echo "Creating Cache dir " $(TEMP_DIR)
displayName: "Create Cache Directory"
# Set container name based on OS
- script: |
echo "::set-env name=CONT_NAME::$(containerName)"
displayName: "Prepare contianer name"
# --- Create ADLS config for Ubn-18.04 and mount it with ADLS option turn on
- script: |
echo "accountName " $(NIGHTLY_STO_ACC_NAME) > $(BLOBFUSE_CFG_ADLS)
echo "accountKey " $(NIGHTLY_STO_ACC_KEY) >> $(BLOBFUSE_CFG_ADLS)
echo "authType Key" >> $(BLOBFUSE_CFG_ADLS)
echo "containerName " $(containerName) >> $(BLOBFUSE_CFG_ADLS)
cat $(BLOBFUSE_CFG_ADLS)
echo "Account : " $(NIGHTLY_STO_ACC_NAME)
displayName: "Create config file ADLS"
# --- Create Block Blob config for Ubn-16.04 and mount it with ADLS option turn off
- script: |
echo "accountName " $(NIGHTLY_STO_BLOB_ACC_NAME) > $(BLOBFUSE_CFG)
echo "accountKey " $(NIGHTLY_STO_BLOB_ACC_KEY) >> $(BLOBFUSE_CFG)
echo "authType Key" >> $(BLOBFUSE_CFG)
echo "containerName " $(containerName) >> $(BLOBFUSE_CFG)
cat $(BLOBFUSE_CFG)
echo "Account : " $(NIGHTLY_STO_BLOB_ACC_NAME)
displayName: "Create config file BlockBlob"
# Mount container using blobFuse
- script: |
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true --use-attr-cache=true
displayName: "Mount container ADLS"
condition: or(eq(variables.imageName, 'ubuntu-18.04'), eq(variables.imageName, 'ubuntu-20.04'))
timeoutInMinutes: 3
- script: |
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG) --use-attr-cache=true
displayName: "Mount container Block"
condition: eq(variables.imageName, 'ubuntu-16.04')
timeoutInMinutes: 3
# --------------------------------------------------------------------
- script : |
sudo cat /var/log/blobfuse.log
displayName: "Dump Mount Log"
timeoutInMinutes: 1
condition: failed()
# Give some time for system to stablise
- script: sleep 10s
displayName: "Let the mount come online"
# -------------------------------------------------------
# Check the mount went through or not by listing the mounted directory
- script: ls -l $(MOUNT_DIR)
timeoutInMinutes: 5
displayName: "TEST - Directory Listing"
continueOnError: true
# Clear directory form previous failed runs
- script: |
rm -rf $(MOUNT_DIR)/*
displayName: "TEST - Initial cleanup"
timeoutInMinutes: 30
continueOnError: true
# Directory Operation Testing
- script: mkdir $(MOUNT_DIR)/test_dir
displayName: "TEST - Create Directory"
timeoutInMinutes: 5
continueOnError: true
# GetStat on Directory
- script: stat $(MOUNT_DIR)/test_dir
displayName: "TEST - GetStat Directory"
timeoutInMinutes: 3
continueOnError: true
# Delete newly created Directory
- script: rm -rf $(MOUNT_DIR)/test_dir
displayName: "TEST - Delete Directory"
timeoutInMinutes: 5
continueOnError: true
# -------------------------------------------------------
# File Operations Testing
# Create a file in mounted directory
- script: |
touch $(MOUNT_DIR)/test.txt
# dd bs=1000 count=1000000 if=/dev/zero of=$(MOUNT_DIR)/test.txt
displayName: "TEST - Create File (Empty)"
timeoutInMinutes: 10
continueOnError: true
# GetStat on File
- script: stat $(MOUNT_DIR)/test.txt
displayName: "TEST - GetStat File"
timeoutInMinutes: 3
#continueOnError: true
# File Read-Write test
- script: |
sudo cat blobfuse-nightly.yml > $(MOUNT_DIR)/test.log
sudo cat $(MOUNT_DIR)/test.log
stat $(MOUNT_DIR)/test.log
displayName: "TEST - Write to file and Read back"
timeoutInMinutes: 10
#continueOnError: true
# File rename test
- script: |
mv $(MOUNT_DIR)/test.txt $(MOUNT_DIR)/test1.txt
displayName: "TEST - Rename File"
timeoutInMinutes: 5
# File copy test
- script: |
cp -r ./blobfuse/*.* $(MOUNT_DIR)/
displayName: "TEST - Copy File"
timeoutInMinutes: 10
continueOnError: true
# Delete newly created file
- script: |
rm -rf $(MOUNT_DIR)/test.txt
rm -rf $(MOUNT_DIR)/test1.txt
rm -rf $(MOUNT_DIR)/test.log
displayName: "TEST - Delete File"
timeoutInMinutes: 10
#continueOnError: true
# Clear directory
- script: rm -rf $(MOUNT_DIR)/*
displayName: "TEST - Directory Cleaning at End"
timeoutInMinutes: 10
continueOnError: true
# Upload blobs and validate data by comparing
- script: |
cp -R ./blobfuse/* $(MOUNT_DIR)/
touch ./blobfuse/ishallcomeindiff.file
time for i in {1..10}; do ls -l $(MOUNT_DIR); done
diff -qr ./blobfuse/ $(MOUNT_DIR)/
rm -rf $(MOUNT_DIR)/*
displayName: "TEST - Data Validation"
timeoutInMinutes: 10
continueOnError: true
# -------------------------------------------------------
# Basic testing done.....
# Test complete so now unmount the directory
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(MOUNT_DIR)/.*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
displayName: Unmount container
timeoutInMinutes: 20
#continueOnError: true
# -------------------------------------------------------
# BLOCK BLOB TESTS
# Starting gTest
# Create config file for gtest
- script: |
echo "accountName " $(NIGHTLY_STO_BLOB_ACC_NAME) > $(BLOBFUSE_CFG_GTEST)
echo "accountKey " $(NIGHTLY_STO_BLOB_ACC_KEY) >> $(BLOBFUSE_CFG_GTEST)
echo "authType Key" >> $(BLOBFUSE_CFG_GTEST)
echo "containerName " $(containerName) >> $(BLOBFUSE_CFG_GTEST)
cat $(BLOBFUSE_CFG_GTEST)
echo "Account : " $(NIGHTLY_STO_ACC_NAME)
displayName: "TEST - BLOCK gTest Config"
# Run gTest with the config file created earlier
- script: |
cd ./build/
sudo chmod 777 ./blobfusetests
sudo ./blobfusetests
cd -
displayName: TEST - BLOCK gTest
timeoutInMinutes: 30
continueOnError: true
# -------------------------------------------------------
# Starting stressTest
# Mount a directory for stressTest and run it
- script: |
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
sudo mkdir $(BLOBFUSE_STRESS_DIR)
sudo chown -R `whoami` $(BLOBFUSE_STRESS_DIR)
sudo chmod 777 $(BLOBFUSE_STRESS_DIR)
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST) --use-attr-cache=true
cd test
go run stressTest.go $(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK stressTest
timeoutInMinutes: 120
continueOnError: true
- script: |
sudo fusermount -u $(MOUNT_DIR)
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK stressTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# Mount a directory for stressTest and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
sudo mkdir $(BLOBFUSE_STRESS_DIR)
sudo chown -R `whoami` $(BLOBFUSE_STRESS_DIR)
sudo chmod 777 $(BLOBFUSE_STRESS_DIR)
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST)
cd test
go run stressTest.go $(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK stressTest No Attr Cache
timeoutInMinutes: 120
continueOnError: true
- script: |
sudo fusermount -u $(MOUNT_DIR)
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK stressTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# -------------------------------------------------------
# Mount a directory for feature test (Block) and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST)
cd test
go test -v feature_test.go -args -mnt-path=$(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK FeatureTest
timeoutInMinutes: 120
continueOnError: true
- script: |
rm -rf $(MOUNT_DIR)/*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK FeatureTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# -------------------------------------------------------
# ADLS TESTS
# Mount a directory for stressTest (ADLS) and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true --use-attr-cache=true
cd test
go run stressTest.go $(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest
timeoutInMinutes: 120
continueOnError: true
- script: |
rm -rf $(MOUNT_DIR)/*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
sudo rm -rf $(BLOBFUSE_STRESS_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# Mount a directory for stressTest (ADLS) and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true
cd test
go run stressTest.go $(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest No Attr Cache
timeoutInMinutes: 120
continueOnError: true
- script: |
rm -rf $(MOUNT_DIR)/*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
sudo rm -rf $(BLOBFUSE_STRESS_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# Mount a directory for stressTest (ADLS) without symlink and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true --use-attr-cache=true --no_symlinks=true
cd test
go run stressTest.go $(MOUNT_DIR)
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest noSymlinks
timeoutInMinutes: 120
continueOnError: true
- script: |
rm -rf $(MOUNT_DIR)/*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
sudo rm -rf $(BLOBFUSE_STRESS_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS stressTest Cleanup noSymlinks
timeoutInMinutes: 30
continueOnError: true
# -------------------------------------------------------
# Mount a directory for feature test (ADLS) and run it
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true
pidof blobfuse
cd test
go test -v feature_test.go -args -mnt-path=$(MOUNT_DIR) -adls=true
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS FeatureTest
timeoutInMinutes: 120
continueOnError: true
- script: |
rm -rf $(MOUNT_DIR)/*
sudo fusermount -u $(MOUNT_DIR)
sudo rm -rf $(TEMP_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - ADLS FeatureTest Cleanup
timeoutInMinutes: 30
continueOnError: true
# -------------------------------------------------------
# Starting pyTest
# Mount a directory for pyTest and run it
- script: |
sudo rm -rf $(TEMP_DIR)/*
sudo cp $(BLOBFUSE_CFG_ADLS) $(BLOBFUSE_CFG_GTEST)
sudo ./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_ADLS) --use-adls=true --use-attr-cache=true
cd ./test/
sudo python tests.py
cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK pyTest
timeoutInMinutes: 120
continueOnError: true
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(MOUNT_DIR)/.*
sudo fusermount -u $(MOUNT_DIR)
sudo kill -9 `pidof blobfuse`
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(MOUNT_DIR)/.*
sudo rm -rf $(TEMP_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - BLOCK pyTest Cleanup
timeoutInMinutes: 10
continueOnError: true
# -------------------------------------------------------
# - script: |
# sudo rm -rf $(MOUNT_DIR)/*
# sudo rm -rf $(TEMP_DIR)/*
# ./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST)
# cd stresstests/
# make
# chmod 777 ./blobfusestress
# sudo ./blobfusestress $(MOUNT_DIR) $(BLOBFUSE_STRESS_DIR)
# cd -
# condition: eq(variables['Build.SourceBranchName'], 'master')
# displayName: TEST - BLOCK CPP stressTest
# timeoutInMinutes: 120
# continueOnError: true
# - script: |
# sudo fusermount -u $(MOUNT_DIR)
# sudo rm -rf $(BLOBFUSE_STRESS_DIR)/*
# sudo rm -rf $(TEMP_DIR)/*
# condition: eq(variables['Build.SourceBranchName'], 'master')
# displayName: TEST - BLOCK CPP stressTest Cleanup
# timeoutInMinutes: 30
# continueOnError: true
# -------------------------------------------------------
# Create config file for SPN Login
- script: |
echo "accountName " $(NIGHTLY_SPN_ACC_NAME) > $(BLOBFUSE_CFG_GTEST)
echo "authType SPN" >> $(BLOBFUSE_CFG_GTEST)
echo "servicePrincipalClientId " $(NIGHTLY_SPN_CLIENT_ID) >> $(BLOBFUSE_CFG_GTEST)
echo "servicePrincipalTenantId " $(NIGHTLY_SPN_TENANT_ID) >> $(BLOBFUSE_CFG_GTEST)
echo "servicePrincipalClientSecret " $(NIGHTLY_SPN_CLIENT_SECRET) >> $(BLOBFUSE_CFG_GTEST)
echo "containerName " $(NIGHTLY_SPN_CONT_NAME) >> $(BLOBFUSE_CFG_GTEST)
cat $(BLOBFUSE_CFG_GTEST)
echo "Account : " $(NIGHTLY_SPN_ACC_NAME)
displayName: "TEST - Create SPN Config"
condition: eq(variables.imageName, 'ubuntu-18.04')
# List the blobs to verify that the login went successful
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST)
sleep 5s
ls -l $(MOUNT_DIR)
mkdir $(MOUNT_DIR)/A
touch $(MOUNT_DIR)/A/a.txt
echo "ASDF" > $(MOUNT_DIR)/A/b.txt
cp $(MOUNT_DIR)/A/b.txt $(MOUNT_DIR)/A/c.txt
ls -lRt $(MOUNT_DIR)/A
rm -rf $(MOUNT_DIR)/A
sudo fusermount -u $(MOUNT_DIR)
sudo kill -9 `pidof blobfuse`
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - SPN Validation
timeoutInMinutes: 120
continueOnError: true
condition: eq(variables.imageName, 'ubuntu-18.04')
# -------------------------------------------------------
# Create config file for SAS Login
- script: |
echo "accountName " $(NIGHTLY_SPN_ACC_NAME) > $(BLOBFUSE_CFG_GTEST)
echo "sasToken " $(NIGHTLY_SPN_ACC_SAS) >> $(BLOBFUSE_CFG_GTEST)
echo "authType SAS" >> $(BLOBFUSE_CFG_GTEST)
echo "containerName " $(NIGHTLY_SPN_CONT_NAME) >> $(BLOBFUSE_CFG_GTEST)
cat $(BLOBFUSE_CFG_GTEST)
echo "Account : " $(NIGHTLY_SPN_ACC_NAME)
displayName: "TEST - Create SAS Config"
condition: eq(variables.imageName, 'ubuntu-16.04')
# List the blobs to verify that the login went successful
- script: |
sudo rm -rf $(MOUNT_DIR)/*
sudo rm -rf $(TEMP_DIR)/*
./build/blobfuse $(MOUNT_DIR) --tmp-path=$(TEMP_DIR) --config-file=$(BLOBFUSE_CFG_GTEST)
sleep 5s
ls -l $(MOUNT_DIR)
mkdir $(MOUNT_DIR)/B
touch $(MOUNT_DIR)/B/b.txt
echo "ASDF" > $(MOUNT_DIR)/B/c.txt
cp $(MOUNT_DIR)/B/c.txt $(MOUNT_DIR)/B/d.txt
ls -lRt $(MOUNT_DIR)/B
rm -rf $(MOUNT_DIR)/B
sudo fusermount -u $(MOUNT_DIR)
sudo kill -9 `pidof blobfuse`
# condition: eq(variables['Build.SourceBranchName'], 'master')
displayName: TEST - SAS Validation
timeoutInMinutes: 120
continueOnError: true
condition: eq(variables.imageName, 'ubuntu-16.04')
# -------------------------------------------------------
# Cleanup at the end
- script: |
sudo fusermount -u $(MOUNT_DIR)
sudo kill -9 `pidof blobfuse`
sudo rm -rf $(TEMP_DIR)/*
displayName: Cleanup
timeoutInMinutes: 120
continueOnError: true
# Print the log files
- script: sudo cat /var/log/blobfuse.log
displayName: Print the log file
continueOnError: true