Enable tests for expired cache

If the cache is expired but then all downloads fail, the cache should be used.
This commit is contained in:
William Elwood 2019-11-01 10:15:10 +00:00 committed by Frank Denis
parent 38019866ca
commit bf28325b61
2 changed files with 14 additions and 19 deletions

View file

@ -194,8 +194,8 @@ func checkTestServer(c *check.C, d *SourceTestData) {
func setupSourceTest(t *testing.T) (func(), *SourceTestData) {
d := &SourceTestData{n: -1, xTransport: NewXTransport()}
d.cacheTests = map[string]SourceTestState{ // determines cache files written to disk before each call
"correct": TestStateCorrect,
//"expired": TestStateExpired, // TODO: an expired cache should be used if no download passes signature verification
"correct": TestStateCorrect,
"expired": TestStateExpired,
"partial": TestStatePartial,
"partial-sig": TestStatePartialSig,
"missing": TestStateMissing,