mirror of
https://github.com/simon987/task_tracker.git
synced 2025-12-14 07:19:02 +00:00
Performance patch, version bump
This commit is contained in:
@@ -2,6 +2,7 @@ package test
|
||||
|
||||
import (
|
||||
"github.com/simon987/task_tracker/api"
|
||||
"github.com/simon987/task_tracker/storage"
|
||||
"strconv"
|
||||
"testing"
|
||||
)
|
||||
@@ -17,6 +18,13 @@ func BenchmarkCreateTaskRemote(b *testing.B) {
|
||||
|
||||
worker := genWid()
|
||||
|
||||
requestAccess(api.CreateWorkerAccessRequest{
|
||||
Submit: true,
|
||||
Assign: false,
|
||||
Project: resp.Content.Id,
|
||||
}, worker)
|
||||
acceptAccessRequest(resp.Content.Id, worker.Id, testAdminCtx)
|
||||
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
createTask(api.SubmitTaskRequest{
|
||||
@@ -27,3 +35,36 @@ func BenchmarkCreateTaskRemote(b *testing.B) {
|
||||
}, worker)
|
||||
}
|
||||
}
|
||||
|
||||
func BenchmarkCreateTask(b *testing.B) {
|
||||
|
||||
resp := createProjectAsAdmin(api.CreateProjectRequest{
|
||||
Name: "BenchmarkCreateTask" + strconv.Itoa(b.N),
|
||||
GitRepo: "benchmark_test" + strconv.Itoa(b.N),
|
||||
Version: "f09e8c9r0w839x0c43",
|
||||
CloneUrl: "http://localhost",
|
||||
})
|
||||
|
||||
worker := genWid()
|
||||
|
||||
requestAccess(api.CreateWorkerAccessRequest{
|
||||
Submit: true,
|
||||
Assign: false,
|
||||
Project: resp.Content.Id,
|
||||
}, worker)
|
||||
acceptAccessRequest(resp.Content.Id, worker.Id, testAdminCtx)
|
||||
|
||||
db := storage.New()
|
||||
|
||||
b.ResetTimer()
|
||||
|
||||
p := db.GetProject(resp.Content.Id)
|
||||
for i := 0; i < b.N; i++ {
|
||||
db.SaveTask(&storage.Task{
|
||||
Project: p,
|
||||
Priority: 0,
|
||||
Recipe: "{}",
|
||||
MaxRetries: 1,
|
||||
}, resp.Content.Id, 0, worker.Id)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user