| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
- // You can obtain one at http://mozilla.org/MPL/2.0/.
- package model
- import (
- "fmt"
- "testing"
- "github.com/d4l3k/messagediff"
- )
- func TestJobQueue(t *testing.T) {
- // Some random actions
- q := newJobQueue()
- q.Push("f1", 0, 0)
- q.Push("f2", 0, 0)
- q.Push("f3", 0, 0)
- q.Push("f4", 0, 0)
- 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, 0, 0)
- 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", 0, 0)
- q.Push("f2", 0, 0)
- q.Push("f3", 0, 0)
- q.Push("f4", 0, 0)
- _, queued := q.Jobs()
- if diff, equal := messagediff.PrettyDiff(queued, []string{"f1", "f2", "f3", "f4"}); !equal {
- t.Errorf("Order does not match. Diff:\n%s", diff)
- }
- q.BringToFront("f1") // corner case: does nothing
- _, queued = q.Jobs()
- if diff, equal := messagediff.PrettyDiff(queued, []string{"f1", "f2", "f3", "f4"}); !equal {
- t.Errorf("Order does not match. Diff:\n%s", diff)
- }
- q.BringToFront("f3")
- _, queued = q.Jobs()
- if diff, equal := messagediff.PrettyDiff(queued, []string{"f3", "f1", "f2", "f4"}); !equal {
- t.Errorf("Order does not match. Diff:\n%s", diff)
- }
- q.BringToFront("f2")
- _, queued = q.Jobs()
- if diff, equal := messagediff.PrettyDiff(queued, []string{"f2", "f3", "f1", "f4"}); !equal {
- t.Errorf("Order does not match. Diff:\n%s", diff)
- }
- q.BringToFront("f4") // corner case: last element
- _, queued = q.Jobs()
- if diff, equal := messagediff.PrettyDiff(queued, []string{"f4", "f2", "f3", "f1"}); !equal {
- t.Errorf("Order does not match. Diff:\n%s", diff)
- }
- }
- func TestShuffle(t *testing.T) {
- q := newJobQueue()
- q.Push("f1", 0, 0)
- q.Push("f2", 0, 0)
- q.Push("f3", 0, 0)
- q.Push("f4", 0, 0)
- // This test will fail once in eight million times (1 / (4!)^5) :)
- for i := 0; i < 5; i++ {
- q.Shuffle()
- _, queued := q.Jobs()
- if l := len(queued); l != 4 {
- t.Fatalf("Weird length %d returned from Jobs()", l)
- }
- t.Logf("%v", queued)
- if _, equal := messagediff.PrettyDiff(queued, []string{"f1", "f2", "f3", "f4"}); !equal {
- // The queue was shuffled
- return
- }
- }
- t.Error("Queue was not shuffled after five attempts.")
- }
- func TestSortBySize(t *testing.T) {
- q := newJobQueue()
- q.Push("f1", 20, 0)
- q.Push("f2", 40, 0)
- q.Push("f3", 30, 0)
- q.Push("f4", 10, 0)
- q.SortSmallestFirst()
- _, actual := q.Jobs()
- if l := len(actual); l != 4 {
- t.Fatalf("Weird length %d returned from Jobs()", l)
- }
- expected := []string{"f4", "f1", "f3", "f2"}
- if diff, equal := messagediff.PrettyDiff(actual, expected); !equal {
- t.Errorf("SortSmallestFirst() diff:\n%s", diff)
- }
- q.SortLargestFirst()
- _, actual = q.Jobs()
- if l := len(actual); l != 4 {
- t.Fatalf("Weird length %d returned from Jobs()", l)
- }
- expected = []string{"f2", "f3", "f1", "f4"}
- if diff, equal := messagediff.PrettyDiff(actual, expected); !equal {
- t.Errorf("SortLargestFirst() diff:\n%s", diff)
- }
- }
- func TestSortByAge(t *testing.T) {
- q := newJobQueue()
- q.Push("f1", 0, 20)
- q.Push("f2", 0, 40)
- q.Push("f3", 0, 30)
- q.Push("f4", 0, 10)
- q.SortOldestFirst()
- _, actual := q.Jobs()
- if l := len(actual); l != 4 {
- t.Fatalf("Weird length %d returned from Jobs()", l)
- }
- expected := []string{"f4", "f1", "f3", "f2"}
- if diff, equal := messagediff.PrettyDiff(actual, expected); !equal {
- t.Errorf("SortOldestFirst() diff:\n%s", diff)
- }
- q.SortNewestFirst()
- _, actual = q.Jobs()
- if l := len(actual); l != 4 {
- t.Fatalf("Weird length %d returned from Jobs()", l)
- }
- expected = []string{"f2", "f3", "f1", "f4"}
- if diff, equal := messagediff.PrettyDiff(actual, expected); !equal {
- t.Errorf("SortNewestFirst() diff:\n%s", diff)
- }
- }
- func BenchmarkJobQueueBump(b *testing.B) {
- files := genFiles(b.N)
- q := newJobQueue()
- for _, f := range files {
- q.Push(f.Name, 0, 0)
- }
- 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, 0, 0)
- }
- for _ = range files {
- n, _ := q.Pop()
- q.Done(n)
- }
- }
- }
|