| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- // 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 (
- "bufio"
- "bytes"
- "encoding/json"
- "errors"
- "fmt"
- "io"
- "io/ioutil"
- "log"
- "net/http"
- "os"
- "os/exec"
- "strconv"
- "time"
- "github.com/syncthing/protocol"
- )
- var env = []string{
- "HOME=.",
- "STGUIAPIKEY=" + apiKey,
- "STNORESTART=1",
- }
- type syncthingProcess struct {
- instance string
- argv []string
- port int
- apiKey string
- csrfToken string
- lastEvent int
- id protocol.DeviceID
- cmd *exec.Cmd
- logfd *os.File
- }
- func (p *syncthingProcess) start() error {
- if p.logfd == nil {
- logfd, err := os.Create("logs/" + getTestName() + "-" + p.instance + ".out")
- if err != nil {
- return err
- }
- p.logfd = logfd
- }
- binary := "../bin/syncthing"
- // We check to see if there's an instance specific binary we should run,
- // for example if we are running integration tests between different
- // versions. If there isn't, we just go with the default.
- if _, err := os.Stat(binary + "-" + p.instance); err == nil {
- binary = binary + "-" + p.instance
- }
- if _, err := os.Stat(binary + "-" + p.instance + ".exe"); err == nil {
- binary = binary + "-" + p.instance + ".exe"
- }
- argv := append(p.argv, "-no-browser", "-verbose")
- cmd := exec.Command(binary, argv...)
- cmd.Stdout = p.logfd
- cmd.Stderr = p.logfd
- cmd.Env = append(os.Environ(), env...)
- err := cmd.Start()
- if err != nil {
- return err
- }
- p.cmd = cmd
- for {
- time.Sleep(250 * time.Millisecond)
- resp, err := p.get("/rest/system/status")
- if err != nil {
- continue
- }
- var sysData map[string]interface{}
- err = json.NewDecoder(resp.Body).Decode(&sysData)
- resp.Body.Close()
- if err != nil {
- // This one is unexpected. Print it.
- log.Println("/rest/system/status (JSON):", err)
- continue
- }
- id, err := protocol.DeviceIDFromString(sysData["myID"].(string))
- if err != nil {
- // This one is unexpected. Print it.
- log.Println("/rest/system/status (myID):", err)
- continue
- }
- p.id = id
- return nil
- }
- }
- func (p *syncthingProcess) stop() (*os.ProcessState, error) {
- p.cmd.Process.Signal(os.Kill)
- p.cmd.Wait()
- fd, err := os.Open(p.logfd.Name())
- if err != nil {
- return p.cmd.ProcessState, err
- }
- defer fd.Close()
- raceConditionStart := []byte("WARNING: DATA RACE")
- raceConditionSep := []byte("==================")
- panicConditionStart := []byte("panic:")
- panicConditionSep := []byte(p.id.String()[:5])
- sc := bufio.NewScanner(fd)
- race := false
- _panic := false
- for sc.Scan() {
- line := sc.Bytes()
- if race || _panic {
- if bytes.Contains(line, panicConditionSep) {
- _panic = false
- continue
- }
- fmt.Printf("%s\n", line)
- if bytes.Contains(line, raceConditionSep) {
- race = false
- }
- } else if bytes.Contains(line, raceConditionStart) {
- fmt.Printf("%s\n", raceConditionSep)
- fmt.Printf("%s\n", raceConditionStart)
- race = true
- if err == nil {
- err = errors.New("Race condition detected")
- }
- } else if bytes.Contains(line, panicConditionStart) {
- _panic = true
- if err == nil {
- err = errors.New("Panic detected")
- }
- }
- }
- return p.cmd.ProcessState, err
- }
- func (p *syncthingProcess) get(path string) (*http.Response, error) {
- client := &http.Client{
- Timeout: 30 * time.Second,
- Transport: &http.Transport{
- DisableKeepAlives: true,
- },
- }
- req, err := http.NewRequest("GET", fmt.Sprintf("http://127.0.0.1:%d%s", p.port, path), nil)
- if err != nil {
- return nil, err
- }
- if p.apiKey != "" {
- req.Header.Add("X-API-Key", p.apiKey)
- }
- if p.csrfToken != "" {
- req.Header.Add("X-CSRF-Token", p.csrfToken)
- }
- resp, err := client.Do(req)
- if err != nil {
- return nil, err
- }
- return resp, nil
- }
- func (p *syncthingProcess) post(path string, data io.Reader) (*http.Response, error) {
- client := &http.Client{
- Timeout: 600 * time.Second,
- Transport: &http.Transport{
- DisableKeepAlives: true,
- },
- }
- req, err := http.NewRequest("POST", fmt.Sprintf("http://127.0.0.1:%d%s", p.port, path), data)
- if err != nil {
- return nil, err
- }
- if p.apiKey != "" {
- req.Header.Add("X-API-Key", p.apiKey)
- }
- if p.csrfToken != "" {
- req.Header.Add("X-CSRF-Token", p.csrfToken)
- }
- req.Header.Add("Content-Type", "application/json")
- resp, err := client.Do(req)
- if err != nil {
- return nil, err
- }
- return resp, nil
- }
- type model struct {
- GlobalBytes int
- GlobalDeleted int
- GlobalFiles int
- InSyncBytes int
- InSyncFiles int
- Invalid string
- LocalBytes int
- LocalDeleted int
- LocalFiles int
- NeedBytes int
- NeedFiles int
- State string
- StateChanged time.Time
- Version int
- }
- func (p *syncthingProcess) model(folder string) (model, error) {
- resp, err := p.get("/rest/db/status?folder=" + folder)
- if err != nil {
- return model{}, err
- }
- var res model
- err = json.NewDecoder(resp.Body).Decode(&res)
- if err != nil {
- return model{}, err
- }
- return res, nil
- }
- type event struct {
- ID int
- Time time.Time
- Type string
- Data interface{}
- }
- func (p *syncthingProcess) events() ([]event, error) {
- resp, err := p.get(fmt.Sprintf("/rest/events?since=%d", p.lastEvent))
- if err != nil {
- return nil, err
- }
- defer resp.Body.Close()
- var evs []event
- err = json.NewDecoder(resp.Body).Decode(&evs)
- if err != nil {
- return nil, err
- }
- p.lastEvent = evs[len(evs)-1].ID
- return evs, err
- }
- type versionResp struct {
- Version string
- }
- func (p *syncthingProcess) version() (string, error) {
- resp, err := p.get("/rest/system/version")
- if err != nil {
- return "", err
- }
- defer resp.Body.Close()
- var v versionResp
- err = json.NewDecoder(resp.Body).Decode(&v)
- if err != nil {
- return "", err
- }
- return v.Version, nil
- }
- type statusResp struct {
- GlobalBytes int
- InSyncBytes int
- Version int
- }
- func (p *syncthingProcess) dbStatus(folder string) (statusResp, error) {
- resp, err := p.get("/rest/db/status?folder=" + folder)
- if err != nil {
- return statusResp{}, err
- }
- defer resp.Body.Close()
- var s statusResp
- err = json.NewDecoder(resp.Body).Decode(&s)
- if err != nil {
- return statusResp{}, err
- }
- return s, nil
- }
- func (p *syncthingProcess) insync(folder string) (bool, int, error) {
- s, err := p.dbStatus(folder)
- if err != nil {
- return false, 0, err
- }
- return s.GlobalBytes == s.InSyncBytes, s.Version, nil
- }
- func (p *syncthingProcess) rescan(folder string) error {
- resp, err := p.post("/rest/db/scan?folder="+folder, nil)
- if err != nil {
- return err
- }
- data, _ := ioutil.ReadAll(resp.Body)
- resp.Body.Close()
- if resp.StatusCode != 200 {
- return fmt.Errorf("Rescan %q: status code %d: %s", folder, resp.StatusCode, data)
- }
- return nil
- }
- func (p *syncthingProcess) rescanNext(folder string, next time.Duration) error {
- resp, err := p.post("/rest/db/scan?folder="+folder+"&next="+strconv.Itoa(int(next.Seconds())), nil)
- if err != nil {
- return err
- }
- data, _ := ioutil.ReadAll(resp.Body)
- resp.Body.Close()
- if resp.StatusCode != 200 {
- return fmt.Errorf("Rescan %q: status code %d: %s", folder, resp.StatusCode, data)
- }
- return nil
- }
- func (p *syncthingProcess) reset(folder string) error {
- resp, err := p.post("/rest/system/reset?folder="+folder, nil)
- if err != nil {
- return err
- }
- data, _ := ioutil.ReadAll(resp.Body)
- resp.Body.Close()
- if resp.StatusCode != 200 {
- return fmt.Errorf("Reset %q: status code %d: %s", folder, resp.StatusCode, data)
- }
- return nil
- }
- func awaitCompletion(folder string, ps ...syncthingProcess) error {
- mainLoop:
- for {
- time.Sleep(2500 * time.Millisecond)
- expectedVersion := 0
- for _, p := range ps {
- insync, version, err := p.insync(folder)
- if err != nil {
- if isTimeout(err) {
- continue mainLoop
- }
- return err
- }
- if !insync {
- continue mainLoop
- }
- if expectedVersion == 0 {
- expectedVersion = version
- } else if version != expectedVersion {
- // Version number mismatch between devices, so not in sync.
- continue mainLoop
- }
- }
- return nil
- }
- }
- func waitForScan(p syncthingProcess) {
- // Wait for one scan to succeed, or up to 20 seconds...
- for i := 0; i < 20; i++ {
- err := p.rescan("default")
- if err != nil {
- time.Sleep(time.Second)
- continue
- }
- break
- }
- }
|