mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-11 02:36:17 +00:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
// Copyright (C) 2015 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/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/syncthing/syncthing/lib/events"
|
|
)
|
|
|
|
func TestAuditService(t *testing.T) {
|
|
buf := new(bytes.Buffer)
|
|
svc := newAuditSvc(buf)
|
|
|
|
// Event sent before start, will not be logged
|
|
events.Default.Log(events.Ping, "the first event")
|
|
|
|
go svc.Serve()
|
|
svc.WaitForStart()
|
|
|
|
// Event that should end up in the audit log
|
|
events.Default.Log(events.Ping, "the second event")
|
|
|
|
// We need to give the events time to arrive, since the channels are buffered etc.
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
svc.Stop()
|
|
svc.WaitForStop()
|
|
|
|
// This event should not be logged, since we have stopped.
|
|
events.Default.Log(events.Ping, "the third event")
|
|
|
|
result := string(buf.Bytes())
|
|
t.Log(result)
|
|
|
|
if strings.Contains(result, "first event") {
|
|
t.Error("Unexpected first event")
|
|
}
|
|
|
|
if !strings.Contains(result, "second event") {
|
|
t.Error("Missing second event")
|
|
}
|
|
|
|
if strings.Contains(result, "third event") {
|
|
t.Error("Missing third event")
|
|
}
|
|
}
|