@@ -238,7 +238,7 @@ functions:
238
238
fi
239
239
fi
240
240
241
- AUTH=${AUTH} SSL=${SSL} MONGODB_URI="${MONGODB_URI}" TOPOLOGY=${TOPOLOGY} make evg-test
241
+ AUTH=${AUTH} SSL=${SSL} MONGODB_URI="${MONGODB_URI}" TOPOLOGY=${TOPOLOGY} MONGO_GO_DRIVER_COMPRESSOR=${MONGO_GO_DRIVER_COMPRESSOR} make evg-test
242
242
243
243
244
244
send-perf-data :
@@ -262,7 +262,7 @@ functions:
262
262
export GOPATH=$(dirname $(dirname $(dirname $(dirname `pwd`))))
263
263
fi;
264
264
export PATH="${GCC_PATH}:$PATH"
265
- MONGODB_URI="${MONGODB_URI}" make -s evg-test-auth
265
+ MONGODB_URI="${MONGODB_URI}" MONGO_GO_DRIVER_COMPRESSOR="${MONGO_GO_DRIVER_COMPRESSOR}" make -s evg-test-auth
266
266
267
267
run-enterprise-gssapi-auth-tests :
268
268
- command : shell.exec
@@ -285,7 +285,7 @@ functions:
285
285
export MONGODB_URI="${gssapi_auth_linux_mongodb_uri}"
286
286
fi;
287
287
export PATH="${GCC_PATH}:$PATH"
288
- make -s evg-test-auth
288
+ MONGO_GO_DRIVER_COMPRESSOR="${MONGO_GO_DRIVER_COMPRESSOR}" make -s evg-test-auth
289
289
290
290
pre :
291
291
- func : fetch-source
@@ -361,6 +361,21 @@ tasks:
361
361
AUTH : " noauth"
362
362
SSL : " nossl"
363
363
364
+ - name : test-standalone-noauth-nossl-compression
365
+ tags : ["test", "standalone", "compression"]
366
+ commands :
367
+ - func : bootstrap-mongo-orchestration
368
+ vars :
369
+ TOPOLOGY : " server"
370
+ AUTH : " noauth"
371
+ SSL : " nossl"
372
+ - func : run-tests
373
+ vars :
374
+ TOPOLOGY : " server"
375
+ AUTH : " noauth"
376
+ SSL : " nossl"
377
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
378
+
364
379
- name : test-standalone-auth-ssl
365
380
tags : ["test", "standalone"]
366
381
commands :
@@ -375,6 +390,21 @@ tasks:
375
390
AUTH : " auth"
376
391
SSL : " ssl"
377
392
393
+ - name : test-standalone-auth-ssl-compression
394
+ tags : ["test", "standalone"]
395
+ commands :
396
+ - func : bootstrap-mongo-orchestration
397
+ vars :
398
+ topology : " server"
399
+ auth : " auth"
400
+ ssl : " ssl"
401
+ - func : run-tests
402
+ vars :
403
+ topology : " server"
404
+ auth : " auth"
405
+ ssl : " ssl"
406
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
407
+
378
408
- name : test-replicaset-noauth-nossl
379
409
tags : ["test", "replicaset"]
380
410
commands :
@@ -389,6 +419,21 @@ tasks:
389
419
AUTH : " noauth"
390
420
SSL : " nossl"
391
421
422
+ - name : test-replicaset-noauth-nossl-compression
423
+ tags : ["test", "replicaset"]
424
+ commands :
425
+ - func : bootstrap-mongo-orchestration
426
+ vars :
427
+ TOPOLOGY : " replica_set"
428
+ AUTH : " noauth"
429
+ SSL : " nossl"
430
+ - func : run-tests
431
+ vars :
432
+ TOPOLOGY : " replica_set"
433
+ AUTH : " noauth"
434
+ SSL : " nossl"
435
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
436
+
392
437
- name : test-replicaset-auth-ssl
393
438
tags : ["test", "replicaset"]
394
439
commands :
@@ -403,6 +448,21 @@ tasks:
403
448
AUTH : " auth"
404
449
SSL : " ssl"
405
450
451
+ - name : test-replicaset-auth-ssl-compression
452
+ tags : ["test", "replicaset"]
453
+ commands :
454
+ - func : bootstrap-mongo-orchestration
455
+ vars :
456
+ TOPOLOGY : " replica_set"
457
+ AUTH : " auth"
458
+ SSL : " ssl"
459
+ - func : run-tests
460
+ vars :
461
+ TOPOLOGY : " replica_set"
462
+ AUTH : " auth"
463
+ SSL : " ssl"
464
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
465
+
406
466
- name : test-sharded-noauth-nossl
407
467
tags : ["test", "sharded"]
408
468
commands :
@@ -417,6 +477,21 @@ tasks:
417
477
AUTH : " noauth"
418
478
SSL : " nossl"
419
479
480
+ - name : test-sharded-noauth-nossl-compression
481
+ tags : ["test", "sharded"]
482
+ commands :
483
+ - func : bootstrap-mongo-orchestration
484
+ vars :
485
+ TOPOLOGY : " sharded_cluster"
486
+ AUTH : " noauth"
487
+ SSL : " nossl"
488
+ - func : run-tests
489
+ vars :
490
+ TOPOLOGY : " sharded_cluster"
491
+ AUTH : " noauth"
492
+ SSL : " nossl"
493
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
494
+
420
495
- name : test-sharded-auth-ssl
421
496
tags : ["test", "sharded"]
422
497
commands :
@@ -431,17 +506,42 @@ tasks:
431
506
AUTH : " auth"
432
507
SSL : " ssl"
433
508
509
+ - name : test-sharded-auth-ssl-compression
510
+ tags : ["test", "sharded"]
511
+ commands :
512
+ - func : bootstrap-mongo-orchestration
513
+ vars :
514
+ TOPOLOGY : " sharded_cluster"
515
+ AUTH : " auth"
516
+ SSL : " ssl"
517
+ - func : run-tests
518
+ vars :
519
+ TOPOLOGY : " sharded_cluster"
520
+ AUTH : " auth"
521
+ SSL : " ssl"
522
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
523
+
434
524
- name : test-enterprise-auth-plain
435
525
tags : ["test", "enterprise-auth"]
436
526
commands :
437
527
- func : run-enterprise-auth-tests
438
528
vars :
439
529
MONGODB_URI : " ${plain_auth_mongodb_uri}"
440
530
531
+ - name : test-enterprise-auth-plain-compression
532
+ tags : ["test", "enterprise-auth"]
533
+ commands :
534
+ - func : run-enterprise-auth-tests
535
+ vars :
536
+ MONGODB_URI : " ${plain_auth_mongodb_uri}"
537
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
538
+
441
539
- name : test-enterprise-auth-gssapi
442
540
tags : ["test", "enterprise-auth"]
443
541
commands :
444
542
- func : run-enterprise-gssapi-auth-tests
543
+ vars :
544
+ MONGO_GO_DRIVER_COMPRESSOR : " snappy"
445
545
446
546
- name : go1.8-build
447
547
tags : ["compile-check"]
0 commit comments