forked from jinzhu/gorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request go-gorm#2721 from rubensayshi/isforeignkeyrace
fix a race condition on IsForeignKey that is being detected by -race
- Loading branch information
Showing
2 changed files
with
110 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
package gorm_test | ||
|
||
import ( | ||
"sync" | ||
"testing" | ||
|
||
"github.com/jinzhu/gorm" | ||
) | ||
|
||
type ModelA struct { | ||
gorm.Model | ||
Name string | ||
|
||
ModelCs []ModelC `gorm:"foreignkey:OtherAID"` | ||
} | ||
|
||
type ModelB struct { | ||
gorm.Model | ||
Name string | ||
|
||
ModelCs []ModelC `gorm:"foreignkey:OtherBID"` | ||
} | ||
|
||
type ModelC struct { | ||
gorm.Model | ||
Name string | ||
|
||
OtherAID uint64 | ||
OtherA *ModelA `gorm:"foreignkey:OtherAID"` | ||
OtherBID uint64 | ||
OtherB *ModelB `gorm:"foreignkey:OtherBID"` | ||
} | ||
|
||
// This test will try to cause a race condition on the model's foreignkey metadata | ||
func TestModelStructRaceSameModel(t *testing.T) { | ||
// use a WaitGroup to execute as much in-sync as possible | ||
// it's more likely to hit a race condition than without | ||
n := 32 | ||
start := sync.WaitGroup{} | ||
start.Add(n) | ||
|
||
// use another WaitGroup to know when the test is done | ||
done := sync.WaitGroup{} | ||
done.Add(n) | ||
|
||
for i := 0; i < n; i++ { | ||
go func() { | ||
start.Wait() | ||
|
||
// call GetStructFields, this had a race condition before we fixed it | ||
DB.NewScope(&ModelA{}).GetStructFields() | ||
|
||
done.Done() | ||
}() | ||
|
||
start.Done() | ||
} | ||
|
||
done.Wait() | ||
} | ||
|
||
// This test will try to cause a race condition on the model's foreignkey metadata | ||
func TestModelStructRaceDifferentModel(t *testing.T) { | ||
// use a WaitGroup to execute as much in-sync as possible | ||
// it's more likely to hit a race condition than without | ||
n := 32 | ||
start := sync.WaitGroup{} | ||
start.Add(n) | ||
|
||
// use another WaitGroup to know when the test is done | ||
done := sync.WaitGroup{} | ||
done.Add(n) | ||
|
||
for i := 0; i < n; i++ { | ||
i := i | ||
go func() { | ||
start.Wait() | ||
|
||
// call GetStructFields, this had a race condition before we fixed it | ||
if i%2 == 0 { | ||
DB.NewScope(&ModelA{}).GetStructFields() | ||
} else { | ||
DB.NewScope(&ModelB{}).GetStructFields() | ||
} | ||
|
||
done.Done() | ||
}() | ||
|
||
start.Done() | ||
} | ||
|
||
done.Wait() | ||
} |