mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
abb96802cb
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3030
78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
// 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 ignore
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestCache(t *testing.T) {
|
|
c := newCache(nil)
|
|
|
|
res, ok := c.get("nonexistent")
|
|
if res.IsIgnored() || res.IsDeletable() || ok != false {
|
|
t.Errorf("res %v, ok %v for nonexistent item", res, ok)
|
|
}
|
|
|
|
// Set and check some items
|
|
|
|
c.set("true", resultInclude|resultDeletable)
|
|
c.set("false", 0)
|
|
|
|
res, ok = c.get("true")
|
|
if !res.IsIgnored() || !res.IsDeletable() || ok != true {
|
|
t.Errorf("res %v, ok %v for true item", res, ok)
|
|
}
|
|
|
|
res, ok = c.get("false")
|
|
if res.IsIgnored() || res.IsDeletable() || ok != true {
|
|
t.Errorf("res %v, ok %v for false item", res, ok)
|
|
}
|
|
|
|
// Don't clean anything
|
|
|
|
c.clean(time.Second)
|
|
|
|
// Same values should exist
|
|
|
|
res, ok = c.get("true")
|
|
if !res.IsIgnored() || !res.IsDeletable() || ok != true {
|
|
t.Errorf("res %v, ok %v for true item", res, ok)
|
|
}
|
|
|
|
res, ok = c.get("false")
|
|
if res.IsIgnored() || res.IsDeletable() || ok != true {
|
|
t.Errorf("res %v, ok %v for false item", res, ok)
|
|
}
|
|
|
|
// Sleep and access, to get some data for clean
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
c.get("true")
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
// "false" was accessed ~600 ms ago, "true" was accessed ~100 ms ago.
|
|
// This should clean out "false" but not "true"
|
|
|
|
c.clean(300 * time.Millisecond)
|
|
|
|
// Same values should exist
|
|
|
|
_, ok = c.get("true")
|
|
if !ok {
|
|
t.Error("item should still exist")
|
|
}
|
|
|
|
_, ok = c.get("false")
|
|
if ok {
|
|
t.Errorf("item should have been cleaned")
|
|
}
|
|
}
|