mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
103 lines
1.8 KiB
Go
103 lines
1.8 KiB
Go
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
||
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// +build integration
|
||
|
|
||
|
package integration_test
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"crypto/tls"
|
||
|
"errors"
|
||
|
"io/ioutil"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
"os"
|
||
|
"sync"
|
||
|
"testing"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func TestStressHTTP(t *testing.T) {
|
||
|
log.Println("Cleaning...")
|
||
|
err := removeAll("s2", "h2/index")
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
os.Setenv("STNORESTART", "1")
|
||
|
|
||
|
log.Println("Starting up...")
|
||
|
sender := syncthingProcess{ // id1
|
||
|
log: "2.out",
|
||
|
argv: []string{"-home", "h2"},
|
||
|
port: 8082,
|
||
|
apiKey: apiKey,
|
||
|
}
|
||
|
ver, err := sender.start()
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
log.Println(ver)
|
||
|
|
||
|
tc := &tls.Config{InsecureSkipVerify: true}
|
||
|
tr := &http.Transport{
|
||
|
TLSClientConfig: tc,
|
||
|
}
|
||
|
client := &http.Client{
|
||
|
Transport: tr,
|
||
|
Timeout: 2 * time.Second,
|
||
|
}
|
||
|
var wg sync.WaitGroup
|
||
|
t0 := time.Now()
|
||
|
|
||
|
var counter int
|
||
|
var lock sync.Mutex
|
||
|
|
||
|
errChan := make(chan error, 2)
|
||
|
for i := 0; i < 50; i++ {
|
||
|
i := i
|
||
|
wg.Add(1)
|
||
|
go func() {
|
||
|
for time.Since(t0).Seconds() < 30 {
|
||
|
proto := "http"
|
||
|
if i%2 == 0 {
|
||
|
proto = "https"
|
||
|
}
|
||
|
resp, err := client.Get(proto + "://localhost:8082/")
|
||
|
if err != nil {
|
||
|
errChan <- err
|
||
|
return
|
||
|
}
|
||
|
bs, _ := ioutil.ReadAll(resp.Body)
|
||
|
resp.Body.Close()
|
||
|
if !bytes.Contains(bs, []byte("</html>")) {
|
||
|
log.Printf("%s", bs)
|
||
|
errChan <- errors.New("Incorrect response")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
lock.Lock()
|
||
|
counter++
|
||
|
lock.Unlock()
|
||
|
}
|
||
|
wg.Done()
|
||
|
}()
|
||
|
}
|
||
|
|
||
|
go func() {
|
||
|
wg.Wait()
|
||
|
errChan <- nil
|
||
|
}()
|
||
|
|
||
|
err = <-errChan
|
||
|
|
||
|
t.Logf("%.01f reqs/sec", float64(counter)/time.Since(t0).Seconds())
|
||
|
|
||
|
sender.stop()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
}
|