| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This program is free software: you can redistribute it and/or modify it
- // under the terms of the GNU General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // This program is distributed in the hope that it will be useful, but WITHOUT
- // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- // more details.
- //
- // You should have received a copy of the GNU General Public License along
- // with this program. If not, see <http://www.gnu.org/licenses/>.
- package model
- import (
- "fmt"
- "reflect"
- "testing"
- )
- func TestJobQueue(t *testing.T) {
- // Some random actions
- q := newJobQueue()
- q.Push("f1")
- q.Push("f2")
- q.Push("f3")
- q.Push("f4")
- progress, queued := q.Jobs()
- if len(progress) != 0 || len(queued) != 4 {
- t.Fatal("Wrong length")
- }
- for i := 1; i < 5; i++ {
- n, ok := q.Pop()
- if !ok || n != fmt.Sprintf("f%d", i) {
- t.Fatal("Wrong element")
- }
- progress, queued = q.Jobs()
- if len(progress) != 1 || len(queued) != 3 {
- t.Log(progress)
- t.Log(queued)
- t.Fatal("Wrong length")
- }
- q.Done(n)
- progress, queued = q.Jobs()
- if len(progress) != 0 || len(queued) != 3 {
- t.Fatal("Wrong length", len(progress), len(queued))
- }
- q.Push(n)
- progress, queued = q.Jobs()
- if len(progress) != 0 || len(queued) != 4 {
- t.Fatal("Wrong length")
- }
- q.Done("f5") // Does not exist
- progress, queued = q.Jobs()
- if len(progress) != 0 || len(queued) != 4 {
- t.Fatal("Wrong length")
- }
- }
- if len(q.progress) > 0 || len(q.queued) != 4 {
- t.Fatal("Wrong length")
- }
- for i := 4; i > 0; i-- {
- progress, queued = q.Jobs()
- if len(progress) != 4-i || len(queued) != i {
- t.Fatal("Wrong length")
- }
- s := fmt.Sprintf("f%d", i)
- q.BringToFront(s)
- progress, queued = q.Jobs()
- if len(progress) != 4-i || len(queued) != i {
- t.Fatal("Wrong length")
- }
- n, ok := q.Pop()
- if !ok || n != s {
- t.Fatal("Wrong element")
- }
- progress, queued = q.Jobs()
- if len(progress) != 5-i || len(queued) != i-1 {
- t.Fatal("Wrong length")
- }
- q.Done("f5") // Does not exist
- progress, queued = q.Jobs()
- if len(progress) != 5-i || len(queued) != i-1 {
- t.Fatal("Wrong length")
- }
- }
- _, ok := q.Pop()
- if len(q.progress) != 4 || ok {
- t.Fatal("Wrong length")
- }
- q.Done("f1")
- q.Done("f2")
- q.Done("f3")
- q.Done("f4")
- q.Done("f5") // Does not exist
- _, ok = q.Pop()
- if len(q.progress) != 0 || ok {
- t.Fatal("Wrong length")
- }
- progress, queued = q.Jobs()
- if len(progress) != 0 || len(queued) != 0 {
- t.Fatal("Wrong length")
- }
- q.BringToFront("")
- q.Done("f5") // Does not exist
- progress, queued = q.Jobs()
- if len(progress) != 0 || len(queued) != 0 {
- t.Fatal("Wrong length")
- }
- }
- func TestBringToFront(t *testing.T) {
- q := newJobQueue()
- q.Push("f1")
- q.Push("f2")
- q.Push("f3")
- q.Push("f4")
- _, queued := q.Jobs()
- if !reflect.DeepEqual(queued, []string{"f1", "f2", "f3", "f4"}) {
- t.Errorf("Incorrect order %v at start", queued)
- }
- q.BringToFront("f1") // corner case: does nothing
- _, queued = q.Jobs()
- if !reflect.DeepEqual(queued, []string{"f1", "f2", "f3", "f4"}) {
- t.Errorf("Incorrect order %v", queued)
- }
- q.BringToFront("f3")
- _, queued = q.Jobs()
- if !reflect.DeepEqual(queued, []string{"f3", "f1", "f2", "f4"}) {
- t.Errorf("Incorrect order %v", queued)
- }
- q.BringToFront("f2")
- _, queued = q.Jobs()
- if !reflect.DeepEqual(queued, []string{"f2", "f3", "f1", "f4"}) {
- t.Errorf("Incorrect order %v", queued)
- }
- q.BringToFront("f4") // corner case: last element
- _, queued = q.Jobs()
- if !reflect.DeepEqual(queued, []string{"f4", "f2", "f3", "f1"}) {
- t.Errorf("Incorrect order %v", queued)
- }
- }
- func BenchmarkJobQueueBump(b *testing.B) {
- files := genFiles(b.N)
- q := newJobQueue()
- for _, f := range files {
- q.Push(f.Name)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- q.BringToFront(files[i].Name)
- }
- }
- func BenchmarkJobQueuePushPopDone10k(b *testing.B) {
- files := genFiles(10000)
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- q := newJobQueue()
- for _, f := range files {
- q.Push(f.Name)
- }
- for _ = range files {
- n, _ := q.Pop()
- q.Done(n)
- }
- }
- }
|