| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- // 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"
- "encoding/json"
- "io/ioutil"
- "net/http"
- "strings"
- "sync"
- "testing"
- "time"
- "github.com/syncthing/protocol"
- )
- var jsonEndpoints = []string{
- "/rest/db/completion?device=I6KAH76-66SLLLB-5PFXSOA-UFJCDZC-YAOMLEK-CP2GB32-BV5RQST-3PSROAU&folder=default",
- "/rest/db/ignores?folder=default",
- "/rest/db/need?folder=default",
- "/rest/db/status?folder=default",
- "/rest/db/browse?folder=default",
- "/rest/events?since=-1&limit=5",
- "/rest/stats/device",
- "/rest/stats/folder",
- "/rest/svc/deviceid?id=I6KAH76-66SLLLB-5PFXSOA-UFJCDZC-YAOMLEK-CP2GB32-BV5RQST-3PSROAU",
- "/rest/svc/lang",
- "/rest/svc/report",
- "/rest/system/browse?current=.",
- "/rest/system/config",
- "/rest/system/config/insync",
- "/rest/system/connections",
- "/rest/system/discovery",
- "/rest/system/error",
- "/rest/system/ping",
- "/rest/system/status",
- "/rest/system/upgrade",
- "/rest/system/version",
- }
- func TestGetIndex(t *testing.T) {
- st := syncthingProcess{
- argv: []string{"-home", "h2"},
- port: 8082,
- instance: "2",
- }
- err := st.start()
- if err != nil {
- t.Fatal(err)
- }
- defer st.stop()
- res, err := st.get("/index.html")
- if err != nil {
- t.Fatal(err)
- }
- if res.StatusCode != 200 {
- t.Errorf("Status %d != 200", res.StatusCode)
- }
- bs, err := ioutil.ReadAll(res.Body)
- if err != nil {
- t.Fatal(err)
- }
- if len(bs) < 1024 {
- t.Errorf("Length %d < 1024", len(bs))
- }
- if !bytes.Contains(bs, []byte("</html>")) {
- t.Error("Incorrect response")
- }
- if res.Header.Get("Set-Cookie") == "" {
- t.Error("No set-cookie header")
- }
- res.Body.Close()
- res, err = st.get("/")
- if err != nil {
- t.Fatal(err)
- }
- if res.StatusCode != 200 {
- t.Errorf("Status %d != 200", res.StatusCode)
- }
- bs, err = ioutil.ReadAll(res.Body)
- if err != nil {
- t.Fatal(err)
- }
- if len(bs) < 1024 {
- t.Errorf("Length %d < 1024", len(bs))
- }
- if !bytes.Contains(bs, []byte("</html>")) {
- t.Error("Incorrect response")
- }
- if res.Header.Get("Set-Cookie") == "" {
- t.Error("No set-cookie header")
- }
- res.Body.Close()
- }
- func TestGetIndexAuth(t *testing.T) {
- st := syncthingProcess{
- argv: []string{"-home", "h1"},
- port: 8081,
- instance: "1",
- apiKey: "abc123",
- }
- err := st.start()
- if err != nil {
- t.Fatal(err)
- }
- defer st.stop()
- // Without auth should give 401
- res, err := http.Get("http://127.0.0.1:8081/")
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 401 {
- t.Errorf("Status %d != 401", res.StatusCode)
- }
- // With wrong username/password should give 401
- req, err := http.NewRequest("GET", "http://127.0.0.1:8081/", nil)
- if err != nil {
- t.Fatal(err)
- }
- req.SetBasicAuth("testuser", "wrongpass")
- res, err = http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 401 {
- t.Fatalf("Status %d != 401", res.StatusCode)
- }
- // With correct username/password should succeed
- req, err = http.NewRequest("GET", "http://127.0.0.1:8081/", nil)
- if err != nil {
- t.Fatal(err)
- }
- req.SetBasicAuth("testuser", "testpass")
- res, err = http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 200 {
- t.Fatalf("Status %d != 200", res.StatusCode)
- }
- }
- func TestGetJSON(t *testing.T) {
- st := syncthingProcess{
- argv: []string{"-home", "h2"},
- port: 8082,
- instance: "2",
- }
- err := st.start()
- if err != nil {
- t.Fatal(err)
- }
- defer st.stop()
- for _, path := range jsonEndpoints {
- res, err := st.get(path)
- if err != nil {
- t.Error(err)
- }
- if ct := res.Header.Get("Content-Type"); ct != "application/json; charset=utf-8" {
- t.Errorf("Incorrect Content-Type %q for %q", ct, path)
- }
- var intf interface{}
- err = json.NewDecoder(res.Body).Decode(&intf)
- res.Body.Close()
- if err != nil {
- t.Error(err)
- }
- }
- }
- func TestPOSTWithoutCSRF(t *testing.T) {
- st := syncthingProcess{
- argv: []string{"-home", "h2"},
- port: 8082,
- instance: "2",
- }
- err := st.start()
- if err != nil {
- t.Fatal(err)
- }
- defer st.stop()
- // Should fail without CSRF
- req, err := http.NewRequest("POST", "http://127.0.0.1:8082/rest/system/error/clear", nil)
- if err != nil {
- t.Fatal(err)
- }
- res, err := http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 403 {
- t.Fatalf("Status %d != 403 for POST", res.StatusCode)
- }
- // Get CSRF
- req, err = http.NewRequest("GET", "http://127.0.0.1:8082/", nil)
- if err != nil {
- t.Fatal(err)
- }
- res, err = http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- hdr := res.Header.Get("Set-Cookie")
- if !strings.Contains(hdr, "CSRF-Token") {
- t.Error("Missing CSRF-Token in", hdr)
- }
- // Should succeed with CSRF
- req, err = http.NewRequest("POST", "http://127.0.0.1:8082/rest/system/error/clear", nil)
- if err != nil {
- t.Fatal(err)
- }
- req.Header.Set("X-CSRF-Token", hdr[len("CSRF-Token="):])
- res, err = http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 200 {
- t.Fatalf("Status %d != 200 for POST", res.StatusCode)
- }
- // Should fail with incorrect CSRF
- req, err = http.NewRequest("POST", "http://127.0.0.1:8082/rest/system/error/clear", nil)
- if err != nil {
- t.Fatal(err)
- }
- req.Header.Set("X-CSRF-Token", hdr[len("CSRF-Token="):]+"X")
- res, err = http.DefaultClient.Do(req)
- if err != nil {
- t.Fatal(err)
- }
- res.Body.Close()
- if res.StatusCode != 403 {
- t.Fatalf("Status %d != 403 for POST", res.StatusCode)
- }
- }
- var (
- initOnce sync.Once
- proc syncthingProcess
- )
- func setupAPIBench() {
- err := removeAll("s1", "s2", "h1/index*", "h2/index*")
- if err != nil {
- panic(err)
- }
- err = generateFiles("s1", 25000, 20, "../LICENSE")
- if err != nil {
- panic(err)
- }
- err = ioutil.WriteFile("s1/knownfile", []byte("somedatahere"), 0644)
- if err != nil {
- panic(err)
- }
- proc = syncthingProcess{ // id1
- instance: "1",
- argv: []string{"-home", "h1"},
- port: 8081,
- apiKey: apiKey,
- }
- err = proc.start()
- if err != nil {
- panic(err)
- }
- // Wait for one scan to succeed, or up to 20 seconds... This is to let
- // startup, UPnP etc complete and make sure the sender has the full index
- // before they connect.
- for i := 0; i < 20; i++ {
- resp, err := proc.post("/rest/scan?folder=default", nil)
- if err != nil {
- time.Sleep(time.Second)
- continue
- }
- if resp.StatusCode != 200 {
- resp.Body.Close()
- time.Sleep(time.Second)
- continue
- }
- break
- }
- }
- func benchmarkURL(b *testing.B, url string) {
- initOnce.Do(setupAPIBench)
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- resp, err := proc.get(url)
- if err != nil {
- b.Fatal(err)
- }
- if resp.StatusCode != 200 {
- b.Fatal(resp.Status)
- }
- resp.Body.Close()
- }
- }
- func BenchmarkAPI_db_completion(b *testing.B) {
- benchmarkURL(b, "/rest/db/completion?folder=default&device="+protocol.LocalDeviceID.String())
- }
- func BenchmarkAPI_db_file(b *testing.B) {
- benchmarkURL(b, "/rest/db/file?folder=default&file=knownfile")
- }
- func BenchmarkAPI_db_ignores(b *testing.B) {
- benchmarkURL(b, "/rest/db/ignores?folder=default")
- }
- func BenchmarkAPI_db_need(b *testing.B) {
- benchmarkURL(b, "/rest/db/need?folder=default")
- }
- func BenchmarkAPI_db_status(b *testing.B) {
- benchmarkURL(b, "/rest/db/status?folder=default")
- }
- func BenchmarkAPI_db_browse_dirsonly(b *testing.B) {
- benchmarkURL(b, "/rest/db/browse?folder=default&dirsonly=true")
- }
|