| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // 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/.
- // +build integration
- package integration
- 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...")
- p := startInstance(t, 2)
- defer checkedStop(t, p)
- // Create a client with reasonable timeouts on all stages of the request.
- tc := &tls.Config{InsecureSkipVerify: true}
- tr := &http.Transport{
- TLSClientConfig: tc,
- DisableKeepAlives: true,
- ResponseHeaderTimeout: 10 * time.Second,
- TLSHandshakeTimeout: 10 * time.Second,
- }
- client := &http.Client{
- Transport: tr,
- Timeout: 10 * time.Second,
- }
- var (
- requestsOK = map[string]int{}
- requestsError = map[string]int{}
- firstError error
- lock sync.Mutex
- )
- gotError := func(ctx string, err error) {
- lock.Lock()
- requestsError[ctx]++
- if firstError == nil {
- firstError = err
- }
- lock.Unlock()
- }
- requestOK := func(ctx string) {
- lock.Lock()
- requestsOK[ctx]++
- lock.Unlock()
- }
- log.Println("Testing...")
- var wg sync.WaitGroup
- t0 := time.Now()
- // One thread with immediately closed connections
- wg.Add(1)
- go func() {
- defer wg.Done()
- for time.Since(t0).Seconds() < 30 {
- conn, err := net.Dial("tcp", "localhost:8082")
- if err != nil {
- gotError("Dial", err)
- } else {
- requestOK("Dial")
- conn.Close()
- }
- // At most 100 connects/sec
- time.Sleep(10 * time.Millisecond)
- }
- }()
- // 50 threads doing mixed HTTP and HTTPS requests
- for i := 0; i < 50; i++ {
- i := i
- wg.Add(1)
- go func() {
- defer wg.Done()
- for time.Since(t0).Seconds() < 30 {
- proto := "http"
- if i%2 == 0 {
- proto = "https"
- }
- url := proto + "://localhost:8082/"
- resp, err := client.Get(url)
- if err != nil {
- gotError("Get "+proto, err)
- continue
- }
- bs, err := ioutil.ReadAll(resp.Body)
- resp.Body.Close()
- if err != nil {
- gotError("Read "+proto, err)
- continue
- }
- if !bytes.Contains(bs, []byte("</html>")) {
- err := errors.New("Incorrect response")
- gotError("Get "+proto, err)
- continue
- }
- requestOK(url)
- // At most 100 requests/sec
- time.Sleep(10 * time.Millisecond)
- }
- }()
- }
- wg.Wait()
- t.Logf("OK: %v reqs", requestsOK)
- t.Logf("Err: %v reqs", requestsError)
- if firstError != nil {
- t.Error(firstError)
- }
- }
|