-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathadapter_test.go
More file actions
executable file
·1288 lines (1069 loc) · 38.3 KB
/
adapter_test.go
File metadata and controls
executable file
·1288 lines (1069 loc) · 38.3 KB
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
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2017 The casbin Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gormadapter
import (
"context"
"fmt"
"log"
"os"
"strings"
"sync"
"testing"
"time"
"github.com/casbin/casbin/v3"
"github.com/casbin/casbin/v3/util"
"github.com/glebarez/sqlite"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/sync/errgroup"
"gorm.io/driver/mysql"
"gorm.io/driver/postgres"
"gorm.io/driver/sqlserver"
"gorm.io/gorm"
"gorm.io/gorm/logger"
)
func testGetPolicy(t *testing.T, e *casbin.Enforcer, res [][]string) {
myRes, err := e.GetPolicy()
if err != nil {
panic(err)
}
log.Print("Policy: ", myRes)
if !util.Array2DEquals(res, myRes) {
t.Error("Policy: ", myRes, ", supposed to be ", res)
}
}
func testGetPolicyWithoutOrder(t *testing.T, e *casbin.Enforcer, res [][]string) {
myRes, err := e.GetPolicy()
if err != nil {
panic(err)
}
log.Print("Policy: ", myRes)
if !arrayEqualsWithoutOrder(myRes, res) {
t.Error("Policy: ", myRes, ", supposed to be ", res)
}
}
func arrayEqualsWithoutOrder(a [][]string, b [][]string) bool {
if len(a) != len(b) {
return false
}
mapA := make(map[int]string)
mapB := make(map[int]string)
order := make(map[int]struct{})
l := len(a)
for i := 0; i < l; i++ {
mapA[i] = util.ArrayToString(a[i])
mapB[i] = util.ArrayToString(b[i])
}
for i := 0; i < l; i++ {
for j := 0; j < l; j++ {
if _, ok := order[j]; ok {
if j == l-1 {
return false
} else {
continue
}
}
if mapA[i] == mapB[j] {
order[j] = struct{}{}
break
} else if j == l-1 {
return false
}
}
}
return true
}
func initPolicy(t *testing.T, a *Adapter) {
// Because the DB is empty at first,
// so we need to load the policy from the file adapter (.CSV) first.
e, err := casbin.NewEnforcer("examples/rbac_model.conf", "examples/rbac_policy.csv")
if err != nil {
panic(err)
}
// This is a trick to save the current policy to the DB.
// We can't call e.SavePolicy() because the adapter in the enforcer is still the file adapter.
// The current policy means the policy in the Casbin enforcer (aka in memory).
err = a.SavePolicy(e.GetModel())
if err != nil {
panic(err)
}
// Clear the current policy.
e.ClearPolicy()
testGetPolicy(t, e, [][]string{})
// Load the policy from DB.
err = a.LoadPolicy(e.GetModel())
if err != nil {
panic(err)
}
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
}
func testSaveLoad(t *testing.T, a *Adapter) {
// Initialize some policy in DB.
initPolicy(t, a)
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
// Now the DB has policy, so we can provide a normal use case.
// Create an adapter and an enforcer.
// NewEnforcer() will load the policy automatically.
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
}
func initAdapter(t *testing.T, driverName string, dataSourceName string, params ...interface{}) *Adapter {
// Create an adapter
a, err := NewAdapter(driverName, dataSourceName, params...)
if err != nil {
panic(err)
}
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func initAdapterWithGormInstance(t *testing.T, db *gorm.DB) *Adapter {
// Create an adapter
a, _ := NewAdapterByDB(db)
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func initAdapterWithGormInstanceAndCustomTable(t *testing.T, db *gorm.DB) *Adapter {
type TestCasbinRule struct {
ID uint `gorm:"primaryKey;autoIncrement"`
Ptype string `gorm:"size:128;uniqueIndex:unique_index"`
V0 string `gorm:"size:128;uniqueIndex:unique_index"`
V1 string `gorm:"size:128;uniqueIndex:unique_index"`
V2 string `gorm:"size:128;uniqueIndex:unique_index"`
V3 string `gorm:"size:128;uniqueIndex:unique_index"`
V4 string `gorm:"size:128;uniqueIndex:unique_index"`
V5 string `gorm:"size:128;uniqueIndex:unique_index"`
}
// Create an adapter
a, _ := NewAdapterByDBWithCustomTable(db, &TestCasbinRule{}, "test_casbin_rule")
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func initAdapterWithGormInstanceByName(t *testing.T, db *gorm.DB, name string) *Adapter {
//Create an Adapter
a, _ := NewAdapterByDBUseTableName(db, "", name)
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func initAdapterWithoutAutoMigrate(t *testing.T, db *gorm.DB) *Adapter {
var err error
var customTableName = "without_auto_migrate_custom_table"
hasTable := db.Migrator().HasTable(customTableName)
if hasTable {
err = db.Migrator().DropTable(customTableName)
if err != nil {
panic(err)
}
}
TurnOffAutoMigrate(db)
type CustomCasbinRule struct {
ID uint `gorm:"primaryKey;autoIncrement"`
Ptype string `gorm:"size:50"`
V0 string `gorm:"size:50"`
V1 string `gorm:"size:50"`
V2 string `gorm:"size:50"`
V3 string `gorm:"size:50"`
V4 string `gorm:"size:50"`
V5 string `gorm:"size:50"`
V6 string `gorm:"size:50"`
V7 string `gorm:"size:50"`
}
a, err := NewAdapterByDBWithCustomTable(db, &CustomCasbinRule{}, customTableName)
hasTable = a.db.Migrator().HasTable(a.getFullTableName())
if hasTable {
t.Fatal("AutoMigration has been disabled but tables are still created in NewAdapterWithoutAutoMigrate method")
}
err = a.db.Migrator().CreateTable(&CustomCasbinRule{})
if err != nil {
panic(err)
}
initPolicy(t, a)
return a
}
func initAdapterWithGormInstanceByMulDb(t *testing.T, dbPool DbPool, dbName string, prefix string, tableName string) *Adapter {
//Create an Adapter
a, _ := NewAdapterByMulDb(dbPool, dbName, prefix, tableName)
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func initAdapterWithGormInstanceByPrefixAndName(t *testing.T, db *gorm.DB, prefix, name string) *Adapter {
//Create an Adapter
a, _ := NewAdapterByDBUseTableName(db, prefix, name)
// Initialize some policy in DB.
initPolicy(t, a)
// Now the DB has policy, so we can provide a normal use case.
// Note: you don't need to look at the above code
// if you already have a working DB with policy inside.
return a
}
func TestNilField(t *testing.T) {
a, err := NewAdapter("sqlite3", "test.db")
assert.Nil(t, err)
defer os.Remove("test.db")
e, err := casbin.NewEnforcer("examples/rbac_model.conf", a)
assert.Nil(t, err)
e.EnableAutoSave(false)
ok, err := e.AddPolicy("", "data1", "write")
assert.Nil(t, err)
e.SavePolicy()
assert.Nil(t, e.LoadPolicy())
ok, err = e.Enforce("", "data1", "write")
assert.Nil(t, err)
assert.Equal(t, ok, true)
}
func testAutoSave(t *testing.T, a *Adapter) {
// NewEnforcer() will load the policy automatically.
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
// AutoSave is enabled by default.
// Now we disable it.
e.EnableAutoSave(false)
// Because AutoSave is disabled, the policy change only affects the policy in Casbin enforcer,
// it doesn't affect the policy in the storage.
e.AddPolicy("alice", "data1", "write")
// Reload the policy from the storage to see the effect.
e.LoadPolicy()
// This is still the original policy.
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
// Now we enable the AutoSave.
e.EnableAutoSave(true)
// Because AutoSave is enabled, the policy change not only affects the policy in Casbin enforcer,
// but also affects the policy in the storage.
e.AddPolicy("alice", "data1", "write")
// Reload the policy from the storage to see the effect.
e.LoadPolicy()
// The policy has a new rule: {"alice", "data1", "write"}.
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}, {"alice", "data1", "write"}})
// Remove the added rule.
e.RemovePolicy("alice", "data1", "write")
e.LoadPolicy()
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
// Remove "data2_admin" related policy rules via a filter.
// Two rules: {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"} are deleted.
e.RemoveFilteredPolicy(0, "data2_admin")
e.LoadPolicy()
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}})
}
func testFilteredPolicy(t *testing.T, a *Adapter) {
// NewEnforcer() without an adapter will not auto load the policy
e, _ := casbin.NewEnforcer("examples/rbac_model.conf")
// Now set the adapter
e.SetAdapter(a)
// Load only alice's policies
assert.Nil(t, e.LoadFilteredPolicy(Filter{V0: []string{"alice"}}))
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}})
// Load only bob's policies
assert.Nil(t, e.LoadFilteredPolicy(Filter{V0: []string{"bob"}}))
testGetPolicy(t, e, [][]string{{"bob", "data2", "write"}})
// Load policies for data2_admin
assert.Nil(t, e.LoadFilteredPolicy(Filter{V0: []string{"data2_admin"}}))
testGetPolicy(t, e, [][]string{{"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
// Load policies for alice and bob
assert.Nil(t, e.LoadFilteredPolicy(Filter{V0: []string{"alice", "bob"}}))
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}})
assert.Nil(t, e.LoadFilteredPolicy(BatchFilter{
filters: []Filter{
{V0: []string{"alice"}},
{V1: []string{"data2"}},
},
}))
testGetPolicy(t, e, [][]string{
{"alice", "data1", "read"},
{"bob", "data2", "write"},
{"data2_admin", "data2", "read"},
{"data2_admin", "data2", "write"},
})
}
func testUpdatePolicy(t *testing.T, a *Adapter) {
// NewEnforcer() will load the policy automatically.
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
e.EnableAutoSave(true)
e.UpdatePolicy([]string{"alice", "data1", "read"}, []string{"alice", "data1", "write"})
e.LoadPolicy()
testGetPolicy(t, e, [][]string{{"alice", "data1", "write"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
}
func testUpdatePolicies(t *testing.T, a *Adapter) {
// NewEnforcer() will load the policy automatically.
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
e.EnableAutoSave(true)
e.UpdatePolicies([][]string{{"alice", "data1", "write"}, {"bob", "data2", "write"}}, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "read"}})
e.LoadPolicy()
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "read"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}})
}
func testUpdateFilteredPolicies(t *testing.T, a *Adapter) {
// NewEnforcer() will load the policy automatically.
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
e.EnableAutoSave(true)
e.UpdateFilteredPolicies([][]string{{"alice", "data1", "write"}}, 0, "alice", "data1", "read")
e.UpdateFilteredPolicies([][]string{{"bob", "data2", "read"}}, 0, "bob", "data2", "write")
e.LoadPolicy()
testGetPolicyWithoutOrder(t, e, [][]string{{"alice", "data1", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}, {"bob", "data2", "read"}})
}
func TestAdapterWithCustomTable(t *testing.T) {
db, err := gorm.Open(postgres.Open("user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable"), &gorm.Config{})
if err != nil {
panic(err)
}
if err = db.Exec("CREATE DATABASE casbin_custom_table").Error; err != nil {
// 42P04 is duplicate_database
if !strings.Contains(fmt.Sprintf("%s", err), "42P04") {
panic(err)
}
}
db, err = gorm.Open(postgres.Open("user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable dbname=casbin_custom_table"), &gorm.Config{})
if err != nil {
panic(err)
}
a := initAdapterWithGormInstanceAndCustomTable(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceAndCustomTable(t, db)
testFilteredPolicy(t, a)
}
func TestAdapterWithoutAutoMigrate(t *testing.T) {
db, err := gorm.Open(mysql.Open("root:@tcp(127.0.0.1:3306)/casbin"), &gorm.Config{})
if err != nil {
panic(err)
}
a := initAdapterWithoutAutoMigrate(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithoutAutoMigrate(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(postgres.Open("user=postgres password=postgres host=localhost port=5432 sslmode=disable TimeZone=Asia/Shanghai"), &gorm.Config{})
if err != nil {
panic(err)
}
if err = db.Exec("CREATE DATABASE casbin_custom_table").Error; err != nil {
// 42P04 is duplicate_database
if !strings.Contains(fmt.Sprintf("%s", err), "42P04") {
panic(err)
}
}
db, err = gorm.Open(postgres.Open("user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable dbname=casbin_custom_table"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithoutAutoMigrate(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithoutAutoMigrate(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlite.Open("casbin.db"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithoutAutoMigrate(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithoutAutoMigrate(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlserver.Open("sqlserver://sa:SqlServer123@localhost:1433?database=master"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithoutAutoMigrate(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithoutAutoMigrate(t, db)
testFilteredPolicy(t, a)
}
func TestAdapterWithMulDb(t *testing.T) {
//create new database
NewAdapter("mysql", "root:@tcp(127.0.0.1:3306)/", "casbin")
NewAdapter("mysql", "root:@tcp(127.0.0.1:3306)/", "casbin2")
testBasicFeatures(t)
testIndependenceBetweenMulDb(t)
}
func testIndependenceBetweenMulDb(t *testing.T) {
dsn := "root:@tcp(127.0.0.1:3306)/casbin"
dsn2 := "root:@tcp(127.0.0.1:3306)/casbin2"
dbPool, err := InitDbResolver([]gorm.Dialector{mysql.Open(dsn), mysql.Open(dsn2)}, []string{"casbin", "casbin2"})
if err != nil {
panic(err)
}
//test independence between multi adapter
a1 := initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin", "", "casbin_rule")
a1.AddPolicy("p", "p", []string{"alice", "book", "read"})
a2 := initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin2", "", "casbin_rule2")
e, _ := casbin.NewEnforcer("./examples/rbac_model.conf", a2)
res, err := e.Enforce("alice", "book", "read")
if err != nil || res {
t.Error("switch DB fail because data don't change")
}
}
func testBasicFeatures(t *testing.T) {
dsn := "root:@tcp(127.0.0.1:3306)/casbin"
dsn2 := "root:@tcp(127.0.0.1:3306)/casbin2"
dbPool, err := InitDbResolver([]gorm.Dialector{mysql.Open(dsn), mysql.Open(dsn2)}, []string{"casbin", "casbin2"})
if err != nil {
panic(err)
}
//test basic features
a := initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin", "", "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin", "", "casbin_rule")
testFilteredPolicy(t, a)
a = initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin2", "", "casbin_rule2")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByMulDb(t, dbPool, "casbin2", "", "casbin_rule2")
testFilteredPolicy(t, a)
}
func TestAdapters(t *testing.T) {
a := initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapter(t, "postgres", "user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapter(t, "sqlite3", "casbin.db")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapter(t, "sqlserver", "sqlserver://sa:SqlServer123@localhost:1433", "master", "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
db, err := gorm.Open(mysql.Open("root:@tcp(127.0.0.1:3306)/casbin"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstance(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstance(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(postgres.Open("user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable dbname=casbin"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstance(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstance(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlite.Open("casbin.db"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstance(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstance(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlserver.Open("sqlserver://sa:SqlServer123@localhost:1433?database=master"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstance(t, db)
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstance(t, db)
testFilteredPolicy(t, a)
db, err = gorm.Open(mysql.Open("root:@tcp(127.0.0.1:3306)/casbin"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testFilteredPolicy(t, a)
db, err = gorm.Open(postgres.Open("user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable dbname=casbin"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testFilteredPolicy(t, a)
a = initAdapterWithGormInstanceByPrefixAndName(t, db, "casbin", "first")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByPrefixAndName(t, db, "casbin", "second")
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlite.Open("casbin.db"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testFilteredPolicy(t, a)
db, err = gorm.Open(sqlserver.Open("sqlserver://sa:SqlServer123@localhost:1433?database=master"), &gorm.Config{})
if err != nil {
panic(err)
}
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testAutoSave(t, a)
testSaveLoad(t, a)
a = initAdapterWithGormInstanceByName(t, db, "casbin_rule")
testFilteredPolicy(t, a)
a = initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
a = initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
a.AddLogger(logger.New(log.New(os.Stdout, "\r\n", log.LstdFlags), logger.Config{}))
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
a = initAdapter(t, "postgres", "user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable")
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
a = initAdapter(t, "postgres", "user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable")
a.AddLogger(logger.New(log.New(os.Stdout, "\r\n", log.LstdFlags), logger.Config{}))
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
a = initAdapter(t, "sqlite3", "casbin.db")
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
a = initAdapter(t, "sqlserver", "sqlserver://sa:SqlServer123@localhost:1433", "master", "casbin_rule")
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
a = initAdapter(t, "sqlserver", "sqlserver://sa:SqlServer123@localhost:1433", "master", "casbin_rule")
a.AddLogger(logger.New(log.New(os.Stdout, "\r\n", log.LstdFlags), logger.Config{}))
testUpdatePolicy(t, a)
testUpdatePolicies(t, a)
testUpdateFilteredPolicies(t, a)
}
func TestAddPolicies(t *testing.T) {
a := initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
e.AddPolicies([][]string{{"jack", "data1", "read"}, {"jack2", "data1", "read"}})
e.LoadPolicy()
testGetPolicy(t, e, [][]string{{"alice", "data1", "read"}, {"bob", "data2", "write"}, {"data2_admin", "data2", "read"}, {"data2_admin", "data2", "write"}, {"jack", "data1", "read"}, {"jack2", "data1", "read"}})
}
func TestAddPolicy(t *testing.T) {
tests := []struct {
driverName string
dataSourceName string
params []any
}{
{"mysql", "root:@tcp(127.0.0.1:3306)/", []any{"casbin", "casbin_rule"}},
{"postgres", "user=postgres password=postgres host=127.0.0.1 port=5432 sslmode=disable", nil},
// {"sqlserver", "sqlserver://sa:SqlServer123@localhost:1433", []any{"master", "casbin_rule"}},
}
for _, test := range tests {
test := test
t.Run(test.driverName, func(t *testing.T) {
t.Parallel()
a := initAdapter(t, test.driverName, test.dataSourceName, test.params...)
e1, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
e2, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
policy := []string{"alice", "data1", "TestAddPolicy"}
ok, err := e1.AddPolicy(policy)
if err != nil {
t.Errorf("e1.AddPolicy() got err %v", err)
}
if !ok {
t.Errorf("e1.AddPolicy() got false, want true")
}
ok, err = e2.AddPolicy(policy)
if err != nil {
t.Errorf("e2.AddPolicy() got err %v", err)
}
if !ok {
t.Errorf("e2.AddPolicy() got false, want true")
}
})
}
}
func TestTransaction(t *testing.T) {
// create adapter using the same pattern as other tests
adapter := initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
// create enforcer
enforcer, err := casbin.NewEnforcer("examples/rbac_model.conf", adapter)
assert.NoError(t, err)
// load policy
err = enforcer.LoadPolicy()
assert.NoError(t, err)
// test 1: basic transaction operation
t.Run("Basic Transaction", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
_, err := e.AddPolicy("alice", "data1", "read")
if err != nil {
return err
}
_, err = e.AddPolicy("alice", "data2", "write")
return err
})
assert.NoError(t, err)
// verify policies were added successfully
ok, _ := enforcer.Enforce("alice", "data1", "read")
assert.True(t, ok)
ok, _ = enforcer.Enforce("alice", "data2", "write")
assert.True(t, ok)
})
// test 2: transaction rollback
t.Run("Transaction Rollback", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
_, err := e.AddPolicy("bob", "data3", "read")
if err != nil {
return err
}
// intentionally return error to trigger rollback
return assert.AnError
})
assert.Error(t, err)
// verify policy was rolled back
ok, _ := enforcer.Enforce("bob", "data3", "read")
assert.False(t, ok)
})
// test 3: nested transaction - inner success, outer success
t.Run("Nested Transaction - Inner Success Outer Success", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
// outer transaction
_, err := e.AddPolicy("charlie", "data4", "read")
if err != nil {
return err
}
// nested transaction
return adapter.Transaction(e, func(innerE casbin.IEnforcer) error {
_, err := innerE.AddPolicy("charlie", "data5", "write")
if err != nil {
return err
}
_, err = innerE.AddPolicy("charlie", "data6", "delete")
return err
})
})
assert.NoError(t, err)
// verify all policies
ok, _ := enforcer.Enforce("charlie", "data4", "read")
assert.True(t, ok)
ok, _ = enforcer.Enforce("charlie", "data5", "write")
assert.True(t, ok)
ok, _ = enforcer.Enforce("charlie", "data6", "delete")
assert.True(t, ok)
})
// test 4: nested transaction - inner rollback, outer success
t.Run("Nested Transaction - Inner Rollback Outer Success", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
// outer transaction
_, err := e.AddPolicy("david", "data7", "read")
if err != nil {
return err
}
// nested transaction that fails
err = adapter.Transaction(e, func(innerE casbin.IEnforcer) error {
_, err := innerE.AddPolicy("david", "data8", "write")
if err != nil {
return err
}
// inner transaction fails
return assert.AnError
})
if err != nil {
// inner transaction failed, but outer transaction should continue
// the savepoint rollback has already undone the inner transaction changes
return err
}
// outer transaction continues despite inner failure
_, err = e.AddPolicy("david", "data9", "execute")
return err
})
assert.NoError(t, err)
// verify outer transaction policies are committed
ok, _ := enforcer.Enforce("david", "data7", "read")
assert.True(t, ok, "Outer transaction policy should be committed")
ok, _ = enforcer.Enforce("david", "data9", "execute")
assert.True(t, ok, "Outer transaction policy should be committed")
// verify inner transaction policies are rolled back (savepoint behavior)
ok, _ = enforcer.Enforce("david", "data8", "write")
assert.False(t, ok, "Inner transaction policy should be rolled back due to savepoint")
})
// test 5: nested transaction - inner success, outer rollback
t.Run("Nested Transaction - Inner Success Outer Rollback", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
// outer transaction
_, err := e.AddPolicy("eve", "data10", "read")
if err != nil {
return err
}
// nested transaction that succeeds
err = adapter.Transaction(e, func(innerE casbin.IEnforcer) error {
_, err := innerE.AddPolicy("eve", "data11", "write")
if err != nil {
return err
}
_, err = innerE.AddPolicy("eve", "data12", "delete")
return err
})
if err != nil {
// inner transaction failed, but outer transaction should continue
// the savepoint rollback has already undone the inner transaction changes
return err
}
// outer transaction continues despite inner failure
_, err = e.AddPolicy("eve", "data13", "execute")
if err != nil {
return err
}
// outer transaction fails
return assert.AnError
})
assert.Error(t, err)
// verify all policies are rolled back (both outer and inner)
ok, _ := enforcer.Enforce("eve", "data10", "read")
assert.False(t, ok)
ok, _ = enforcer.Enforce("eve", "data11", "write")
assert.False(t, ok)
ok, _ = enforcer.Enforce("eve", "data12", "delete")
assert.False(t, ok)
})
// test 6: deeply nested transactions
t.Run("Deeply Nested Transactions", func(t *testing.T) {
// reload policy for clean state
err := enforcer.LoadPolicy()
assert.NoError(t, err)
err = adapter.Transaction(enforcer, func(e casbin.IEnforcer) error {
// level 1
_, err := e.AddPolicy("frank", "data13", "read")
if err != nil {
return err
}
// level 2
err = adapter.Transaction(e, func(e2 casbin.IEnforcer) error {
_, err := e2.AddPolicy("frank", "data14", "write")
if err != nil {
return err
}
// level 3
return adapter.Transaction(e2, func(e3 casbin.IEnforcer) error {
_, err := e3.AddPolicy("frank", "data15", "delete")
if err != nil {
return err
}
_, err = e3.AddPolicy("frank", "data16", "execute")
return err
})
})
return err
})
assert.NoError(t, err)
// verify all policies
ok, _ := enforcer.Enforce("frank", "data13", "read")
assert.True(t, ok)
ok, _ = enforcer.Enforce("frank", "data14", "write")
assert.True(t, ok)
ok, _ = enforcer.Enforce("frank", "data15", "delete")
assert.True(t, ok)
ok, _ = enforcer.Enforce("frank", "data16", "execute")
assert.True(t, ok)
})
// test 7: adapter type check
t.Run("Adapter Type Check", func(t *testing.T) {
// create an incompatible adapter
mockEnforcer, _ := casbin.NewEnforcer("examples/rbac_model.conf")
err := adapter.Transaction(mockEnforcer, func(e casbin.IEnforcer) error {
return nil
})
assert.Error(t, err)
assert.Contains(t, err.Error(), "expected adapter of type Adapter")
})
}
func TestTransactionRace(t *testing.T) {
// create adapter using the same pattern as other tests
a := initAdapter(t, "mysql", "root:@tcp(127.0.0.1:3306)/", "casbin", "casbin_rule")
// create enforcer
e, err := casbin.NewEnforcer("examples/rbac_model.conf", a)
require.NoError(t, err)
// load policy
err = e.LoadPolicy()
require.NoError(t, err)
concurrency := 100
var g errgroup.Group
for i := 0; i < concurrency; i++ {
i := i
g.Go(func() error {
return a.Transaction(e, func(e casbin.IEnforcer) error {
_, err := e.AddPolicy("jack", fmt.Sprintf("data%d", i), "write")
if err != nil {
return err
}
return nil
})
})