-
Notifications
You must be signed in to change notification settings - Fork 7
/
test_integration_test.go
813 lines (792 loc) · 29.5 KB
/
test_integration_test.go
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
package test_integration_test
import (
"net/smtp"
"os"
"github.com/cloudfoundry-community/gautocloud"
_ "github.com/cloudfoundry-community/gautocloud/connectors/all"
camqp "github.com/cloudfoundry-community/gautocloud/connectors/amqp/client"
coauth2 "github.com/cloudfoundry-community/gautocloud/connectors/auth/config/oauth2"
"github.com/cloudfoundry-community/gautocloud/connectors/databases/client/mongodb"
"github.com/cloudfoundry-community/gautocloud/connectors/databases/client/mssql"
"github.com/cloudfoundry-community/gautocloud/connectors/databases/client/mysql"
"github.com/cloudfoundry-community/gautocloud/connectors/databases/client/postgresql"
credis "github.com/cloudfoundry-community/gautocloud/connectors/databases/client/redis"
"github.com/cloudfoundry-community/gautocloud/connectors/databases/dbtype"
gmssql "github.com/cloudfoundry-community/gautocloud/connectors/databases/gorm/mssql"
gmysql "github.com/cloudfoundry-community/gautocloud/connectors/databases/gorm/mysql"
gpostgres "github.com/cloudfoundry-community/gautocloud/connectors/databases/gorm/postgresql"
cs3goamz "github.com/cloudfoundry-community/gautocloud/connectors/objstorage/client/s3/goamz"
cs3minio "github.com/cloudfoundry-community/gautocloud/connectors/objstorage/client/s3/minio"
"github.com/cloudfoundry-community/gautocloud/connectors/objstorage/objstoretype/miniotype"
csmtp "github.com/cloudfoundry-community/gautocloud/connectors/smtp/client"
. "github.com/cloudfoundry-community/gautocloud/test-utils"
"github.com/go-redis/redis/v7"
"github.com/goamz/goamz/s3"
"github.com/jinzhu/gorm"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
amqp "github.com/rabbitmq/amqp091-go"
log "github.com/sirupsen/logrus"
"golang.org/x/oauth2"
"gopkg.in/mgo.v2"
)
var _ = Describe("Connectors integration", func() {
if os.Getenv("GAUTOCLOUD_HOST_SERVICES") == "" {
return
}
log.SetLevel(log.DebugLevel)
os.Unsetenv("MAIL") // travis set this env var which make connector detect it
os.Setenv("MYSQL_URL", CreateEnvValue(ServiceUrl{
Type: "mysql",
User: "user",
Password: "password",
Port: 3406,
Target: "mydb",
}))
os.Setenv("POSTGRES_URL", CreateEnvValue(ServiceUrl{
Type: "postgres",
User: "user",
Password: "password",
Port: 5532,
Target: "mydb",
Options: "sslmode=disable",
}))
os.Setenv("MSSQL_URL", CreateEnvValue(ServiceUrl{
Type: "sqlserver",
User: "sa",
Password: "password",
Port: 1433,
Target: "test",
}))
os.Setenv("MONGODB_URL", CreateEnvValue(ServiceUrl{
Type: "mongo",
Port: 27017,
Target: "test",
}))
os.Setenv("SSO_TOKEN_URI", "http://localhost/tokenUri")
os.Setenv("SSO_AUTH_URI", "http://localhost/authUri")
os.Setenv("SSO_USER_INFO_URI", "http://localhost/userInfo")
os.Setenv("SSO_CLIENT_ID", "myId")
os.Setenv("SSO_CLIENT_SECRET", "mySecret")
os.Setenv("SSO_GRANT_TYPE", "grant1,grant2")
os.Setenv("SSO_SCOPES", "scope1,scope2")
os.Setenv("REDIS_URL", CreateEnvValue(ServiceUrl{
Type: "redis",
User: "redis",
Password: "redis",
Port: 6379,
}))
os.Setenv("AMQP_URL", CreateEnvValue(ServiceUrl{
Type: "amqp",
User: "user",
Password: "password",
Port: 5672,
}))
os.Setenv("SMTP_URL", CreateEnvValue(ServiceUrl{
Type: "smtp",
Port: 587,
}))
os.Setenv("S3_URL", CreateEnvValue(ServiceUrl{
Type: "http",
User: "accessKey1",
Password: "verySecretKey1",
Port: 8090,
Target: "bucket",
}))
gautocloud.ReloadConnectors()
Context("Mysql", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a MysqlDB when use Get", func() {
var db *dbtype.MysqlDB
err := gautocloud.Inject(&db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of MysqlDB when use Get and slice", func() {
var dbs []*dbtype.MysqlDB
err := gautocloud.Inject(&dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a MysqlDB when use GetWithId", func() {
var db *dbtype.MysqlDB
err := gautocloud.InjectFromId(mysql.MysqlConnector{}.Id(), &db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of MysqlDB when use GetWithId and slice", func() {
var dbs []*dbtype.MysqlDB
err := gautocloud.InjectFromId(mysql.MysqlConnector{}.Id(), &dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a MysqlDB when use GetFirst", func() {
var db *dbtype.MysqlDB
data, err := gautocloud.GetFirst(mysql.MysqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
db = data.(*dbtype.MysqlDB)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should return a slice of MysqlDB when use GetAll", func() {
var db *dbtype.MysqlDB
data, err := gautocloud.GetAll(mysql.MysqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
db = data[0].(*dbtype.MysqlDB)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
})
Context("gorm", func() {
It("should inject a gorm DB when user request it", func() {
var gormDb *gorm.DB
err := gautocloud.InjectFromId(gmysql.GormMysqlConnector{}.Id(), &gormDb)
Expect(err).ToNot(HaveOccurred())
Expect(gormDb).ShouldNot(BeNil())
Expect(gormDb.Dialect().GetName()).Should(Equal("mysql"))
})
})
})
Context("Postgresql", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a PostgresqlDB when use Get", func() {
var db *dbtype.PostgresqlDB
err := gautocloud.Inject(&db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of PostgresqlDB when use Get and slice", func() {
var dbs []*dbtype.PostgresqlDB
err := gautocloud.Inject(&dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a PostgresqlDB when use GetWithId", func() {
var db *dbtype.PostgresqlDB
err := gautocloud.InjectFromId(postgresql.PostgresqlConnector{}.Id(), &db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of PostgresqlDB when use GetWithId and slice", func() {
var dbs []*dbtype.PostgresqlDB
err := gautocloud.InjectFromId(postgresql.PostgresqlConnector{}.Id(), &dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a PostgresqlDB when use GetFirst", func() {
var db *dbtype.PostgresqlDB
data, err := gautocloud.GetFirst(postgresql.PostgresqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
db = data.(*dbtype.PostgresqlDB)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should return a slice of PostgresqlDB when use GetAll", func() {
var db *dbtype.PostgresqlDB
data, err := gautocloud.GetAll(postgresql.PostgresqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
db = data[0].(*dbtype.PostgresqlDB)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
})
Context("gorm", func() {
It("should inject a gorm DB when user request it", func() {
var gormDb *gorm.DB
err := gautocloud.InjectFromId(gpostgres.GormPostgresqlConnector{}.Id(), &gormDb)
Expect(err).ToNot(HaveOccurred())
Expect(gormDb).ShouldNot(BeNil())
Expect(gormDb.Dialect().GetName()).Should(Equal("postgres"))
})
})
})
Context("Mssql", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a MssqlDB when use Get", func() {
var db *dbtype.MssqlDB
err := gautocloud.Inject(&db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
})
It("should inject a slice of MssqlDB when use Get and slice", func() {
var dbs []*dbtype.MssqlDB
err := gautocloud.Inject(&dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
})
It("should inject a MssqlDB when use GetWithId", func() {
var db *dbtype.MssqlDB
err := gautocloud.InjectFromId(mssql.MssqlConnector{}.Id(), &db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
})
It("should inject a slice of MssqlDB when use GetWithId and slice", func() {
var dbs []*dbtype.MssqlDB
err := gautocloud.InjectFromId(mssql.MssqlConnector{}.Id(), &dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
})
})
Context("By return", func() {
It("should return a MssqlDB when use GetFirst", func() {
var db *dbtype.MssqlDB
data, err := gautocloud.GetFirst(mssql.MssqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
db = data.(*dbtype.MssqlDB)
Expect(db).ShouldNot(BeNil())
})
It("should return a slice of MssqlDB when use GetAll", func() {
var db *dbtype.MssqlDB
data, err := gautocloud.GetAll(mssql.MssqlConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
db = data[0].(*dbtype.MssqlDB)
Expect(db).ShouldNot(BeNil())
})
})
})
Context("gorm", func() {
It("should inject a gorm DB when user request it", func() {
var gormDb *gorm.DB
err := gautocloud.InjectFromId(gmssql.GormMssqlConnector{}.Id(), &gormDb)
Expect(err).ToNot(HaveOccurred())
Expect(gormDb).ShouldNot(BeNil())
})
})
})
Context("Redis", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a redis.Client when use Get", func() {
var db *redis.Client
err := gautocloud.Inject(&db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
It("should inject a slice of redis.Client when use Get and slice", func() {
var dbs []*redis.Client
err := gautocloud.Inject(&dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
It("should inject a redis.Client when use GetWithId", func() {
var db *redis.Client
err := gautocloud.InjectFromId(credis.RedisConnector{}.Id(), &db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
It("should inject a slice of redis.Client when use GetWithId and slice", func() {
var dbs []*redis.Client
err := gautocloud.InjectFromId(credis.RedisConnector{}.Id(), &dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
})
Context("By return", func() {
It("should return a redis.Client when use GetFirst", func() {
var db *redis.Client
data, err := gautocloud.GetFirst(credis.RedisConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
db = data.(*redis.Client)
Expect(db).ShouldNot(BeNil())
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
It("should return a slice of redis.Client when use GetAll", func() {
var db *redis.Client
data, err := gautocloud.GetAll(credis.RedisConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
db = data[0].(*redis.Client)
Expect(db).ShouldNot(BeNil())
resp := db.Ping()
Expect(resp).ShouldNot(BeNil())
Expect(resp.Val()).Should(Equal("PONG"))
})
})
})
})
Context("Mongodb", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a mgo.Session when use Get", func() {
var db *mgo.Session
err := gautocloud.Inject(&db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of mgo.Session when use Get and slice", func() {
var dbs []*mgo.Session
err := gautocloud.Inject(&dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a mgo.Session when use GetWithId", func() {
var db *mgo.Session
err := gautocloud.InjectFromId(mongodb.MongodbConnector{}.Id(), &db)
Expect(err).ToNot(HaveOccurred())
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should inject a slice of mgo.Session when use GetWithId and slice", func() {
var dbs []*mgo.Session
err := gautocloud.InjectFromId(mongodb.MongodbConnector{}.Id(), &dbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(dbs)).Should(Equal(1))
db := dbs[0]
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a mgo.Session when use GetFirst", func() {
var db *mgo.Session
data, err := gautocloud.GetFirst(mongodb.MongodbConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
db = data.(*mgo.Session)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
It("should return a slice of mgo.Session when use GetAll", func() {
var db *mgo.Session
data, err := gautocloud.GetAll(mongodb.MongodbConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
db = data[0].(*mgo.Session)
Expect(db).ShouldNot(BeNil())
Expect(db.Ping()).ToNot(HaveOccurred())
})
})
})
})
Context("Amqp", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a amqp.Connection when use Get", func() {
var svc *amqp.Connection
err := gautocloud.Inject(&svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
It("should inject a slice of amqp.Connection when use Get and slice", func() {
var svcs []*amqp.Connection
err := gautocloud.Inject(&svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
It("should inject a amqp.Connection when use GetWithId", func() {
var svc *amqp.Connection
err := gautocloud.InjectFromId(camqp.AmqpConnector{}.Id(), &svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
It("should inject a slice of amqp.Connection when use GetWithId and slice", func() {
var svcs []*amqp.Connection
err := gautocloud.InjectFromId(camqp.AmqpConnector{}.Id(), &svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a amqp.Connection when use GetFirst", func() {
var svc *amqp.Connection
data, err := gautocloud.GetFirst(camqp.AmqpConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
svc = data.(*amqp.Connection)
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
It("should return a slice of amqp.Connection when use GetAll", func() {
var svc *amqp.Connection
data, err := gautocloud.GetAll(camqp.AmqpConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
svc = data[0].(*amqp.Connection)
Expect(svc).ShouldNot(BeNil())
_, err = svc.Channel()
Expect(err).ToNot(HaveOccurred())
})
})
})
})
Context("Smtp", func() {
Context("client", func() {
Context("By injection", func() {
It("should inject a smtp.Client when use Get", func() {
var svc *smtp.Client
err := gautocloud.Inject(&svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
It("should inject a slice of smtp.Client when use Get and slice", func() {
var svcs []*smtp.Client
err := gautocloud.Inject(&svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
It("should inject a smtp.Client when use GetWithId", func() {
var svc *smtp.Client
err := gautocloud.InjectFromId(csmtp.SmtpConnector{}.Id(), &svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
It("should inject a slice of smtp.Client when use GetWithId and slice", func() {
var svcs []*smtp.Client
err := gautocloud.InjectFromId(csmtp.SmtpConnector{}.Id(), &svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a smtp.Client when use GetFirst", func() {
var svc *smtp.Client
data, err := gautocloud.GetFirst(csmtp.SmtpConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
svc = data.(*smtp.Client)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
It("should return a slice of smtp.Client when use GetAll", func() {
var svc *smtp.Client
data, err := gautocloud.GetAll(csmtp.SmtpConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
svc = data[0].(*smtp.Client)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Reset()).ShouldNot(HaveOccurred())
})
})
})
})
Context("S3", func() {
Context("minio", func() {
Context("By injection", func() {
It("should inject a MinioClient when use Get", func() {
var svc *miniotype.MinioClient
err := gautocloud.Inject(&svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
It("should inject a slice of MinioClient when use Get and slice", func() {
var svcs []*miniotype.MinioClient
err := gautocloud.Inject(&svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
It("should inject a MinioClient when use GetWithId", func() {
var svc *miniotype.MinioClient
err := gautocloud.InjectFromId(cs3minio.MinioConnector{}.Id(), &svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
It("should inject a slice of MinioClient when use GetWithId and slice", func() {
var svcs []*miniotype.MinioClient
err := gautocloud.InjectFromId(cs3minio.MinioConnector{}.Id(), &svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a MinioClient when use GetFirst", func() {
var svc *miniotype.MinioClient
data, err := gautocloud.GetFirst(cs3minio.MinioConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
svc = data.(*miniotype.MinioClient)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
It("should return a slice of MinioClient when use GetAll", func() {
var svc *miniotype.MinioClient
data, err := gautocloud.GetAll(cs3minio.MinioConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
svc = data[0].(*miniotype.MinioClient)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Client.MakeBucket(svc.Bucket, "")).ToNot(HaveOccurred())
Expect(svc.Client.RemoveBucket(svc.Bucket)).ToNot(HaveOccurred())
})
})
})
Context("goamz", func() {
BeforeEach(func() {
var s3svcminio *miniotype.MinioClient
err := gautocloud.Inject(&s3svcminio)
if err != nil {
Fail(err.Error())
}
err = s3svcminio.Client.MakeBucket(s3svcminio.Bucket, "")
if err != nil {
Fail(err.Error())
}
})
AfterEach(func() {
var s3svcminio *miniotype.MinioClient
err := gautocloud.Inject(&s3svcminio)
if err != nil {
Fail(err.Error())
}
err = s3svcminio.Client.RemoveBucket(s3svcminio.Bucket)
if err != nil {
Fail(err.Error())
}
})
Context("By injection", func() {
It("should inject a s3.Bucket when use Get", func() {
var svc *s3.Bucket
err := gautocloud.Inject(&svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
It("should inject a slice of s3.Bucket when use Get and slice", func() {
var svcs []*s3.Bucket
err := gautocloud.Inject(&svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
It("should inject a s3.Bucket when use GetWithId", func() {
var svc *s3.Bucket
err := gautocloud.InjectFromId(cs3goamz.AmzS3Connector{}.Id(), &svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
It("should inject a slice of s3.Bucket when use GetWithId and slice", func() {
var svcs []*s3.Bucket
err := gautocloud.InjectFromId(cs3goamz.AmzS3Connector{}.Id(), &svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
})
Context("By return", func() {
It("should return a s3.Bucket when use GetFirst", func() {
var svc *s3.Bucket
data, err := gautocloud.GetFirst(cs3goamz.AmzS3Connector{}.Id())
Expect(err).ToNot(HaveOccurred())
svc = data.(*s3.Bucket)
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
It("should return a slice of s3.Bucket when use GetAll", func() {
var svc *s3.Bucket
data, err := gautocloud.GetAll(cs3goamz.AmzS3Connector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
svc = data[0].(*s3.Bucket)
Expect(svc).ShouldNot(BeNil())
err = svc.Put("myfile.txt", []byte("data"), "", s3.PublicRead, s3.Options{})
Expect(err).ToNot(HaveOccurred())
b, _ := svc.Get("myfile.txt")
Expect(string(b)).Should(Equal("data"))
err = svc.Del("myfile.txt")
Expect(err).ToNot(HaveOccurred())
})
})
})
})
Context("Oauth2", func() {
Context("config", func() {
Context("By injection", func() {
It("should inject a oauth2.Config when use Get", func() {
var svc *oauth2.Config
err := gautocloud.Inject(&svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
It("should inject a slice of oauth2.Config when use Get and slice", func() {
var svcs []*oauth2.Config
err := gautocloud.Inject(&svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
It("should inject a oauth2.Config when use GetWithId", func() {
var svc *oauth2.Config
err := gautocloud.InjectFromId(coauth2.Oauth2ConfigConnector{}.Id(), &svc)
Expect(err).ToNot(HaveOccurred())
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
It("should inject a slice of oauth2.Config when use GetWithId and slice", func() {
var svcs []*oauth2.Config
err := gautocloud.InjectFromId(coauth2.Oauth2ConfigConnector{}.Id(), &svcs)
Expect(err).ToNot(HaveOccurred())
Expect(len(svcs)).Should(Equal(1))
svc := svcs[0]
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
})
Context("By return", func() {
It("should return a oauth2.Config when use GetFirst", func() {
var svc *oauth2.Config
data, err := gautocloud.GetFirst(coauth2.Oauth2ConfigConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
svc = data.(*oauth2.Config)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
It("should return a slice of oauth2.Config when use GetAll", func() {
var svc *oauth2.Config
data, err := gautocloud.GetAll(coauth2.Oauth2ConfigConnector{}.Id())
Expect(err).ToNot(HaveOccurred())
Expect(len(data)).Should(Equal(1))
svc = data[0].(*oauth2.Config)
Expect(svc).ShouldNot(BeNil())
Expect(svc.Scopes).Should(BeEquivalentTo([]string{"scope1", "scope2"}))
Expect(svc.ClientSecret).Should(Equal("mySecret"))
Expect(svc.ClientID).Should(Equal("myId"))
Expect(svc.Endpoint.AuthURL).Should(Equal("http://localhost/authUri"))
Expect(svc.Endpoint.TokenURL).Should(Equal("http://localhost/tokenUri"))
})
})
})
})
Context("Retrieving all gorm object by injection", func() {
It("should inject a slice of gorm DB when user request it", func() {
var gormDbs []*gorm.DB
err := gautocloud.Inject(&gormDbs)
Expect(err).ToNot(HaveOccurred())
Expect(len(gormDbs)).Should(Equal(3))
})
})
})