syncthing-arm/lib/syncthing/syncthing_test.go

108 lines
2.8 KiB
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01:00
// 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 syncthing
2014-10-11 16:55:11 +01:00
import (
"io/ioutil"
"os"
"path/filepath"
2014-10-11 16:55:11 +01:00
"testing"
"time"
2014-10-11 16:55:11 +01:00
2015-08-06 11:29:25 +02:00
"github.com/syncthing/syncthing/lib/config"
"github.com/syncthing/syncthing/lib/db/backend"
"github.com/syncthing/syncthing/lib/events"
2015-09-22 19:38:46 +02:00
"github.com/syncthing/syncthing/lib/protocol"
"github.com/syncthing/syncthing/lib/tlsutil"
2014-10-11 16:55:11 +01:00
)
func tempCfgFilename(t *testing.T) string {
t.Helper()
f, err := ioutil.TempFile("", "syncthing-testConfig-")
if err != nil {
t.Fatal(err)
}
defer f.Close()
return f.Name()
}
2015-04-09 12:53:13 +02:00
func TestShortIDCheck(t *testing.T) {
cfg := config.Wrap(tempCfgFilename(t), config.Configuration{
2015-04-09 12:53:13 +02:00
Devices: []config.DeviceConfiguration{
{DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 0, 0}},
{DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 1, 1}}, // first 56 bits same, differ in the first 64 bits
},
}, events.NoopLogger)
defer os.Remove(cfg.ConfigPath())
2015-04-09 12:53:13 +02:00
if err := checkShortIDs(cfg); err != nil {
t.Error("Unexpected error:", err)
}
cfg = config.Wrap("/tmp/test", config.Configuration{
Devices: []config.DeviceConfiguration{
{DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 64, 0}},
{DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 64, 1}}, // first 64 bits same
},
}, events.NoopLogger)
2015-04-09 12:53:13 +02:00
if err := checkShortIDs(cfg); err == nil {
t.Error("Should have gotten an error")
}
}
func TestStartupFail(t *testing.T) {
tmpDir, err := ioutil.TempDir("", "syncthing-TestStartupFail-")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpDir)
2019-10-17 09:14:27 +02:00
cert, err := tlsutil.NewCertificate(filepath.Join(tmpDir, "cert"), filepath.Join(tmpDir, "key"), "syncthing", 365)
if err != nil {
t.Fatal(err)
}
id := protocol.NewDeviceID(cert.Certificate[0])
conflID := protocol.DeviceID{}
copy(conflID[:8], id[:8])
cfg := config.Wrap(tempCfgFilename(t), config.Configuration{
Devices: []config.DeviceConfiguration{
{DeviceID: id},
{DeviceID: conflID},
},
}, events.NoopLogger)
defer os.Remove(cfg.ConfigPath())
app := New(cfg, backend.OpenMemory(), events.NoopLogger, cert, Options{})
startErr := app.Start()
if startErr == nil {
t.Fatal("Expected an error from Start, got nil")
}
done := make(chan struct{})
var waitE ExitStatus
go func() {
waitE = app.Wait()
close(done)
}()
select {
case <-time.After(time.Second):
t.Fatal("Wait did not return within 1s")
case <-done:
}
if waitE != ExitError {
t.Errorf("Got exit status %v, expected %v", waitE, ExitError)
}
if err = app.Error(); err != startErr {
t.Errorf(`Got different errors "%v" from Start and "%v" from Error`, startErr, err)
}
}