2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-10-20 22:37:38 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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 http://mozilla.org/MPL/2.0/.
|
2014-10-20 22:37:38 -07:00
|
|
|
|
|
|
|
// +build integration
|
|
|
|
|
2014-12-17 04:31:03 -07:00
|
|
|
package integration
|
2014-10-20 22:37:38 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"log"
|
|
|
|
"testing"
|
|
|
|
|
2015-01-13 05:22:56 -07:00
|
|
|
"github.com/syncthing/protocol"
|
2014-10-20 22:37:38 -07:00
|
|
|
"github.com/syncthing/syncthing/internal/config"
|
|
|
|
"github.com/syncthing/syncthing/internal/osutil"
|
2015-06-18 06:22:45 -07:00
|
|
|
"github.com/syncthing/syncthing/internal/rc"
|
2014-10-20 22:37:38 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestManyPeers(t *testing.T) {
|
|
|
|
log.Println("Cleaning...")
|
2015-03-29 03:55:27 -07:00
|
|
|
err := removeAll("s1", "s2", "h1/index*", "h2/index*")
|
2014-10-20 22:37:38 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Println("Generating files...")
|
2014-11-29 15:41:06 -07:00
|
|
|
err = generateFiles("s1", 200, 20, "../LICENSE")
|
2014-10-20 22:37:38 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-06-18 06:22:45 -07:00
|
|
|
receiver := startInstance(t, 2)
|
|
|
|
defer checkedStop(t, receiver)
|
2014-10-20 22:37:38 -07:00
|
|
|
|
2015-06-18 06:22:45 -07:00
|
|
|
bs, err := receiver.Get("/rest/system/config")
|
2014-10-20 22:37:38 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var cfg config.Configuration
|
2015-06-18 06:22:45 -07:00
|
|
|
if err := json.Unmarshal(bs, &cfg); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2014-10-20 22:37:38 -07:00
|
|
|
|
|
|
|
for len(cfg.Devices) < 100 {
|
|
|
|
bs := make([]byte, 16)
|
|
|
|
ReadRand(bs)
|
|
|
|
id := protocol.NewDeviceID(bs)
|
|
|
|
cfg.Devices = append(cfg.Devices, config.DeviceConfiguration{DeviceID: id})
|
|
|
|
cfg.Folders[0].Devices = append(cfg.Folders[0].Devices, config.FolderDeviceConfiguration{DeviceID: id})
|
|
|
|
}
|
|
|
|
|
|
|
|
osutil.Rename("h2/config.xml", "h2/config.xml.orig")
|
|
|
|
defer osutil.Rename("h2/config.xml.orig", "h2/config.xml")
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
json.NewEncoder(&buf).Encode(cfg)
|
2015-06-18 06:22:45 -07:00
|
|
|
_, err = receiver.Post("/rest/system/config", &buf)
|
2014-10-20 22:37:38 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-06-18 06:22:45 -07:00
|
|
|
sender := startInstance(t, 1)
|
|
|
|
defer checkedStop(t, sender)
|
2014-10-20 22:37:38 -07:00
|
|
|
|
2015-06-18 06:22:45 -07:00
|
|
|
rc.AwaitSync("default", sender, receiver)
|
2014-10-20 22:37:38 -07:00
|
|
|
|
|
|
|
log.Println("Comparing directories...")
|
|
|
|
err = compareDirectories("s1", "s2")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|