Skip to content

Commit

Permalink
fix races
Browse files Browse the repository at this point in the history
fix test races

closes #8
  • Loading branch information
tomkukral committed Jan 17, 2023
1 parent 45bca4a commit 2208d1d
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: go test -v -covermode=count
run: go test -v -race -covermode=atomic

coverage:
runs-on: ubuntu-latest
Expand Down
27 changes: 22 additions & 5 deletions goccm.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ type (
// This channel indicates when all goroutines have finished their job.
allDoneCh chan bool

// The close flag allows we know when we can close the manager
closed bool
// The closed channel is closed which controller should close
closed chan bool

// The running count allows we know the number of goroutines are running
runningCount int32
Expand All @@ -50,6 +50,7 @@ func New(maxGoRoutines int) *concurrencyManager {
managerCh: make(chan interface{}, maxGoRoutines),
doneCh: make(chan bool),
allDoneCh: make(chan bool),
closed: make(chan bool),
}

// Fill the manager channel by placeholder values
Expand All @@ -75,7 +76,7 @@ func (c *concurrencyManager) controller() {

// When the closed flag is set,
// we need to close the manager if it doesn't have any running goroutine
if c.closed && c.runningCount == 0 {
if c.isClosed() && c.RunningCount() == 0 {
break
}
}
Expand Down Expand Up @@ -105,8 +106,24 @@ func (c *concurrencyManager) Done() {
}

// Close the manager manually
// terminate if channel is already closed
func (c *concurrencyManager) Close() {
c.closed = true
// terminate if channel is already closed
select {
case <-c.closed:
return
default:
close(c.closed)
}
}

func (c *concurrencyManager) isClosed() bool {
select {
case <-c.closed:
return true
default:
return false
}
}

// WaitAllDone Wait for all goroutines are done
Expand All @@ -120,5 +137,5 @@ func (c *concurrencyManager) WaitAllDone() {

// RunningCount Returns the number of goroutines which are running
func (c *concurrencyManager) RunningCount() int32 {
return c.runningCount
return atomic.AddInt32(&c.runningCount, 0)
}
36 changes: 24 additions & 12 deletions goccm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package goccm

import (
"fmt"
"log"
"testing"
"time"
)
Expand All @@ -12,25 +13,31 @@ func TestExample(t *testing.T) {
c.Wait()
go func(i int) {
fmt.Printf("Job %d is running\n", i)
time.Sleep(2 * time.Second)
time.Sleep(20 * time.Millisecond)
c.Done()
}(i)
}
c.WaitAllDone()
}

// TestManuallyClose will close after 5 jobs, others should not run
func TestManuallyClose(t *testing.T) {
executedJobs := 0
executedJobs := make(chan int, 1000)

c := New(3)
for i := 1; i <= 1000; i++ {
jobId := i

c.Wait()
go func() {
executedJobs++
fmt.Printf("Executed jobs %d\n", executedJobs)
time.Sleep(2 * time.Second)
executedJobs <- jobId
fmt.Printf("Executed job id %d\n", jobId)
time.Sleep(20 * time.Millisecond)
c.Done()
}()

if i == 5 {
log.Printf("Closing manager")
c.Close()
break
}
Expand All @@ -40,21 +47,26 @@ func TestManuallyClose(t *testing.T) {

func TestConcurrency(t *testing.T) {
var maxRunningJobs = 3
var testMaxRunningJobs int32
testMaxRunningJobs := make(chan int32, 100)
c := New(maxRunningJobs)

for i := 1; i <= 10; i++ {
c.Wait()
go func(i int) {
fmt.Printf("Current running jobs %d\n", c.RunningCount())
if c.RunningCount() > testMaxRunningJobs {
testMaxRunningJobs = c.RunningCount()
}
time.Sleep(2 * time.Second)
testMaxRunningJobs <- c.RunningCount()
time.Sleep(20 * time.Millisecond)
c.Done()
}(i)
}

c.WaitAllDone()
if testMaxRunningJobs > int32(maxRunningJobs) {
t.Errorf("The number of concurrency jobs has exceeded %d. Real result %d.", maxRunningJobs, testMaxRunningJobs)

for i := 1; i <= 10; i++ {
observed := <-testMaxRunningJobs

if observed > int32(maxRunningJobs) {
t.Errorf("The number of concurrency jobs has exceeded %d. Real result %d.", maxRunningJobs, int(observed))
}
}
}

0 comments on commit 2208d1d

Please sign in to comment.