mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
38 lines
772 B
Go
38 lines
772 B
Go
package fsrepo
|
|
|
|
import (
|
|
"os"
|
|
"runtime"
|
|
"testing"
|
|
|
|
config "github.com/ipfs/kubo/config"
|
|
)
|
|
|
|
func TestConfig(t *testing.T) {
|
|
const filename = ".ipfsconfig"
|
|
cfgWritten := new(config.Config)
|
|
cfgWritten.Identity.PeerID = "faketest"
|
|
|
|
err := WriteConfigFile(filename, cfgWritten)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
cfgRead, err := Load(filename)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if cfgWritten.Identity.PeerID != cfgRead.Identity.PeerID {
|
|
t.Fatal()
|
|
}
|
|
st, err := os.Stat(filename)
|
|
if err != nil {
|
|
t.Fatalf("cannot stat config file: %v", err)
|
|
}
|
|
|
|
if runtime.GOOS != "windows" { // see https://golang.org/src/os/types_windows.go
|
|
if g := st.Mode().Perm(); g&0o117 != 0 {
|
|
t.Fatalf("config file should not be executable or accessible to world: %v", g)
|
|
}
|
|
}
|
|
}
|