2020-01-07 14:23:09 +03:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package queue
import (
"context"
"io/ioutil"
2020-01-30 19:09:39 +03:00
"sync"
2020-01-07 14:23:09 +03:00
"testing"
"time"
2020-08-11 23:05:34 +03:00
"code.gitea.io/gitea/modules/util"
2020-01-07 14:23:09 +03:00
"github.com/stretchr/testify/assert"
)
func TestLevelQueue ( t * testing . T ) {
handleChan := make ( chan * testData )
handle := func ( data ... Data ) {
assert . True ( t , len ( data ) == 2 )
for _ , datum := range data {
testDatum := datum . ( * testData )
handleChan <- testDatum
}
}
2020-01-30 19:09:39 +03:00
var lock sync . Mutex
2020-01-07 14:23:09 +03:00
queueShutdown := [ ] func ( ) { }
queueTerminate := [ ] func ( ) { }
tmpDir , err := ioutil . TempDir ( "" , "level-queue-test-data" )
assert . NoError ( t , err )
2020-08-11 23:05:34 +03:00
defer util . RemoveAll ( tmpDir )
2020-01-07 14:23:09 +03:00
queue , err := NewLevelQueue ( handle , LevelQueueConfiguration {
2020-02-03 02:19:58 +03:00
ByteFIFOQueueConfiguration : ByteFIFOQueueConfiguration {
WorkerPoolConfiguration : WorkerPoolConfiguration {
QueueLength : 20 ,
BatchLength : 2 ,
BlockTimeout : 1 * time . Second ,
BoostTimeout : 5 * time . Minute ,
BoostWorkers : 5 ,
MaxWorkers : 10 ,
} ,
Workers : 1 ,
2020-01-29 04:01:06 +03:00
} ,
DataDir : tmpDir ,
2020-01-07 14:23:09 +03:00
} , & testData { } )
assert . NoError ( t , err )
go queue . Run ( func ( _ context . Context , shutdown func ( ) ) {
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
queueShutdown = append ( queueShutdown , shutdown )
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
} , func ( _ context . Context , terminate func ( ) ) {
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
queueTerminate = append ( queueTerminate , terminate )
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
} )
test1 := testData { "A" , 1 }
test2 := testData { "B" , 2 }
err = queue . Push ( & test1 )
assert . NoError ( t , err )
go func ( ) {
2020-09-06 01:50:57 +03:00
err := queue . Push ( & test2 )
2020-01-07 14:23:09 +03:00
assert . NoError ( t , err )
} ( )
result1 := <- handleChan
assert . Equal ( t , test1 . TestString , result1 . TestString )
assert . Equal ( t , test1 . TestInt , result1 . TestInt )
result2 := <- handleChan
assert . Equal ( t , test2 . TestString , result2 . TestString )
assert . Equal ( t , test2 . TestInt , result2 . TestInt )
err = queue . Push ( test1 )
assert . Error ( t , err )
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
for _ , callback := range queueShutdown {
callback ( )
}
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
time . Sleep ( 200 * time . Millisecond )
err = queue . Push ( & test1 )
assert . NoError ( t , err )
err = queue . Push ( & test2 )
assert . NoError ( t , err )
select {
case <- handleChan :
assert . Fail ( t , "Handler processing should have stopped" )
default :
}
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
for _ , callback := range queueTerminate {
callback ( )
}
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
// Reopen queue
queue , err = NewWrappedQueue ( handle ,
WrappedQueueConfiguration {
Underlying : LevelQueueType ,
Config : LevelQueueConfiguration {
2020-02-03 02:19:58 +03:00
ByteFIFOQueueConfiguration : ByteFIFOQueueConfiguration {
WorkerPoolConfiguration : WorkerPoolConfiguration {
QueueLength : 20 ,
BatchLength : 2 ,
BlockTimeout : 1 * time . Second ,
BoostTimeout : 5 * time . Minute ,
BoostWorkers : 5 ,
MaxWorkers : 10 ,
} ,
Workers : 1 ,
2020-01-29 04:01:06 +03:00
} ,
DataDir : tmpDir ,
2020-01-07 14:23:09 +03:00
} ,
} , & testData { } )
assert . NoError ( t , err )
go queue . Run ( func ( _ context . Context , shutdown func ( ) ) {
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
queueShutdown = append ( queueShutdown , shutdown )
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
} , func ( _ context . Context , terminate func ( ) ) {
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
queueTerminate = append ( queueTerminate , terminate )
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
} )
result3 := <- handleChan
assert . Equal ( t , test1 . TestString , result3 . TestString )
assert . Equal ( t , test1 . TestInt , result3 . TestInt )
result4 := <- handleChan
assert . Equal ( t , test2 . TestString , result4 . TestString )
assert . Equal ( t , test2 . TestInt , result4 . TestInt )
2020-01-30 19:09:39 +03:00
lock . Lock ( )
2020-01-07 14:23:09 +03:00
for _ , callback := range queueShutdown {
callback ( )
}
for _ , callback := range queueTerminate {
callback ( )
}
2020-01-30 19:09:39 +03:00
lock . Unlock ( )
2020-01-07 14:23:09 +03:00
}