mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 19:08:58 +00:00
42ce6be9b9
* lib/ur: Implement crash (panic) reporting (fixes #959) This implements a simple crash reporting method. It piggybacks on the panic log files created by the monitor process, picking these up and uploading them from the usage reporting routine. A new config value points to the crash receiver base URL, which defaults to "https://crash.syncthing.net/newcrash" (following the pattern of "https://data.syncthing.net/newdata" for usage reports, but allowing us to separate the service as required).
38 lines
797 B
Go
38 lines
797 B
Go
// Copyright (C) 2019 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 https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
)
|
|
|
|
func TestFilterLogLines(t *testing.T) {
|
|
in := []byte(`[ABCD123] syncthing version whatever
|
|
here is more log data
|
|
and more
|
|
...
|
|
and some more
|
|
yet more
|
|
Panic detected at like right now
|
|
here is panic data
|
|
and yet more panic stuff
|
|
`)
|
|
|
|
filtered := []byte(`syncthing version whatever
|
|
Panic detected at like right now
|
|
here is panic data
|
|
and yet more panic stuff
|
|
`)
|
|
|
|
result := filterLogLines(in)
|
|
if !bytes.Equal(result, filtered) {
|
|
t.Logf("%q\n", result)
|
|
t.Error("it should have been filtered")
|
|
}
|
|
}
|