background/test/goroutine_test.go

131 lines
1.9 KiB
Go
Raw Normal View History

2021-08-01 16:35:40 +00:00
/*
* @Author: your name
* @Date: 2021-08-02 00:02:17
2021-08-15 16:19:25 +00:00
* @LastEditTime: 2021-08-15 23:15:46
2021-08-01 16:35:40 +00:00
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \background\test\goroutine_test.go
*/
package test
import (
"context"
"sync"
"testing"
"time"
)
func TestWaitGroup(t *testing.T) {
var wg sync.WaitGroup
wg.Add(2)
go func () {
time.Sleep(3*time.Second)
t.Logf("job 1 done")
wg.Done()
}()
go func () {
time.Sleep(2 * time.Second)
t.Logf("job 2 done")
wg.Done()
}()
wg.Wait()
t.Log("all finish")
}
func TestChanel(t *testing.T){
exit := make(chan bool)
go func () {
for {
select {
case <-exit:
t.Logf("exit 1")
return
case <- time.After(1 * time.Second) :
t.Logf("time out ")
}
}
}()
go func () {
for {
select {
case <-exit:
t.Logf("exit 2")
return
case <- time.After(1 * time.Second) :
t.Logf("time out ")
}
}
}()
time.Sleep(5 * time.Second)
exit <- true
t.Logf("finish")
}
2021-08-15 16:19:25 +00:00
func TestTimeoutContext(t * testing.T){
ctx,_ := context.WithTimeout(context.Background(), time.Second)
go func () {
for {
select {
case <-ctx.Done():
t.Logf("exit")
return
case <- time.After(2 * time.Second) :
t.Logf("time out ")
}
}
}()
time.Sleep(5 * time.Second)
}
2021-08-01 16:35:40 +00:00
func TestContext(t *testing.T){
ctx,cancel := context.WithCancel(context.Background())
go func () {
for {
select {
case <-ctx.Done():
t.Logf("exit")
return
case <- time.After(1 * time.Second) :
t.Logf("time out ")
}
}
}()
go func () {
for {
select {
case <-ctx.Done():
t.Logf("exit")
return
case <- time.After(1 * time.Second) :
t.Logf("time out ")
}
}
}()
go func () {
for {
select {
case <-ctx.Done():
t.Logf("exit")
return
case <- time.After(1 * time.Second) :
t.Logf("time out ")
}
}
}()
time.Sleep(5 * time.Second)
cancel()
2021-08-15 16:19:25 +00:00
2021-08-01 16:35:40 +00:00
t.Logf("finish")
}