| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // 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"
- "net/http"
- "sync"
- "testing"
- "time"
- )
- func TestStressHTTP(t *testing.T) {
- log.Println("Cleaning...")
- err := removeAll("s2", "h2/index")
- if err != nil {
- t.Fatal(err)
- }
- 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)
- // One thread with immediately closed connections
- wg.Add(1)
- go func() {
- for time.Since(t0).Seconds() < 30 {
- conn, err := net.Dial("tcp", "localhost:8082")
- if err != nil {
- log.Println(err)
- errChan <- err
- return
- }
- conn.Close()
- }
- wg.Done()
- }()
- // 50 threads doing HTTP and HTTPS requests
- 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)
- }
- }
|