mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
1103a27337
This fixes various test issues with Go 1.20. - Most tests rewritten to use fakefs where possible - Some tests that were already skipped, or dubious (invasive, unmaintainable, unclear what they even tested) have been removed - Some actual code rewritten to better support testing in fakefs Co-authored-by: Eric P <eric@kastelo.net>
32 lines
647 B
Go
32 lines
647 B
Go
// Copyright (C) 2019 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 https://mozilla.org/MPL/2.0/.
|
|
|
|
package model
|
|
|
|
import (
|
|
"github.com/syncthing/syncthing/lib/fs"
|
|
)
|
|
|
|
// fatal is the required common interface between *testing.B and *testing.T
|
|
type fatal interface {
|
|
Fatal(...interface{})
|
|
Helper()
|
|
}
|
|
|
|
func must(f fatal, err error) {
|
|
f.Helper()
|
|
if err != nil {
|
|
f.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func mustRemove(f fatal, err error) {
|
|
f.Helper()
|
|
if err != nil && !fs.IsNotExist(err) {
|
|
f.Fatal(err)
|
|
}
|
|
}
|