1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
gf/internal/rwmutex/rwmutex_z_unit_test.go

142 lines
3.2 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package rwmutex_test
import (
"testing"
"time"
"github.com/gogf/gf/v2/container/garray"
"github.com/gogf/gf/v2/internal/rwmutex"
"github.com/gogf/gf/v2/test/gtest"
)
func TestRWMutexIsSafe(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
lock := rwmutex.New()
t.Assert(lock.IsSafe(), false)
lock = rwmutex.New(false)
t.Assert(lock.IsSafe(), false)
lock = rwmutex.New(false, false)
t.Assert(lock.IsSafe(), false)
lock = rwmutex.New(true, false)
t.Assert(lock.IsSafe(), true)
lock = rwmutex.New(true, true)
t.Assert(lock.IsSafe(), true)
lock = rwmutex.New(true)
t.Assert(lock.IsSafe(), true)
})
}
func TestSafeRWMutex(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
safeLock := rwmutex.New(true)
array := garray.New(true)
go func() {
safeLock.Lock()
array.Append(1)
time.Sleep(100 * time.Millisecond)
array.Append(1)
safeLock.Unlock()
}()
go func() {
time.Sleep(10 * time.Millisecond)
safeLock.Lock()
array.Append(1)
time.Sleep(200 * time.Millisecond)
array.Append(1)
safeLock.Unlock()
}()
time.Sleep(50 * time.Millisecond)
t.Assert(array.Len(), 1)
time.Sleep(80 * time.Millisecond)
t.Assert(array.Len(), 3)
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), 3)
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), 4)
})
}
func TestSafeReaderRWMutex(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
localSafeLock = rwmutex.New(true)
array = garray.New(true)
)
go func() {
localSafeLock.RLock()
array.Append(1)
time.Sleep(100 * time.Millisecond)
array.Append(1)
localSafeLock.RUnlock()
}()
go func() {
time.Sleep(10 * time.Millisecond)
localSafeLock.RLock()
array.Append(1)
time.Sleep(200 * time.Millisecond)
array.Append(1)
time.Sleep(100 * time.Millisecond)
array.Append(1)
localSafeLock.RUnlock()
}()
go func() {
time.Sleep(50 * time.Millisecond)
localSafeLock.Lock()
array.Append(1)
localSafeLock.Unlock()
}()
time.Sleep(50 * time.Millisecond)
t.Assert(array.Len(), 2)
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), 3)
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), 4)
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), 6)
})
}
func TestUnsafeRWMutex(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
localUnsafeLock = rwmutex.New()
array = garray.New(true)
)
go func() {
localUnsafeLock.Lock()
array.Append(1)
time.Sleep(2000 * time.Millisecond)
array.Append(1)
localUnsafeLock.Unlock()
}()
go func() {
time.Sleep(500 * time.Millisecond)
localUnsafeLock.Lock()
array.Append(1)
time.Sleep(500 * time.Millisecond)
array.Append(1)
localUnsafeLock.Unlock()
}()
time.Sleep(800 * time.Millisecond)
t.Assert(array.Len(), 2)
time.Sleep(800 * time.Millisecond)
t.Assert(array.Len(), 3)
time.Sleep(200 * time.Millisecond)
t.Assert(array.Len(), 3)
time.Sleep(500 * time.Millisecond)
t.Assert(array.Len(), 4)
})
}