func TestWritingToUDP(t *testing.T) { port := 16661 udp.SetAddr(fmt.Sprintf(":%d", port)) hook, err := NewPapertrailHook("localhost", port, "test") if err != nil { t.Errorf("Unable to connect to local UDP server.") } log := logrus.New() log.Hooks.Add(hook) udp.ShouldReceive(t, "foo", func() { log.Info("foo") }) }
func TestLocalhostAddAndPrint(t *testing.T) { log := logrus.New() hook, err := NewSyslogHook("udp", "localhost:514", syslog.LOG_INFO, "") if err != nil { t.Errorf("Unable to connect to local syslog.") } log.Hooks.Add(hook) for _, level := range hook.Levels() { if len(log.Hooks[level]) != 1 { t.Errorf("SyslogHook was not added. The length of log.Hooks[%v]: %v", level, len(log.Hooks[level])) } } log.Info("Congratulations!") }
// TestLogEntryMessageReceived checks if invoking Logrus' log.Error // method causes an XML payload containing the log entry message is received // by a HTTP server emulating an Airbrake-compatible endpoint. func TestLogEntryMessageReceived(t *testing.T) { log := logrus.New() ts := startAirbrakeServer(t) defer ts.Close() hook := NewHook(ts.URL, testAPIKey, "production") log.Hooks.Add(hook) log.Error(expectedMsg) select { case received := <-noticeError: if received.Message != expectedMsg { t.Errorf("Unexpected message received: %s", received.Message) } case <-time.After(time.Second): t.Error("Timed out; no notice received by Airbrake API") } }
// TestLogEntryMessageReceived confirms that, when passing an error type using // logrus.Fields, a HTTP server emulating an Airbrake endpoint receives the // error message returned by the Error() method on the error interface // rather than the logrus.Entry.Message string. func TestLogEntryWithErrorReceived(t *testing.T) { log := logrus.New() ts := startAirbrakeServer(t) defer ts.Close() hook := NewHook(ts.URL, testAPIKey, "production") log.Hooks.Add(hook) log.WithFields(logrus.Fields{ "error": &customErr{expectedMsg}, }).Error(unintendedMsg) select { case received := <-noticeError: if received.Message != expectedMsg { t.Errorf("Unexpected message received: %s", received.Message) } if received.Class != expectedClass { t.Errorf("Unexpected error class: %s", received.Class) } case <-time.After(time.Second): t.Error("Timed out; no notice received by Airbrake API") } }
func getTestLogger() *logrus.Logger { l := logrus.New() l.Out = ioutil.Discard return l }
package main import ( "github.com/smashwilson/sprint-closer/Godeps/_workspace/src/github.com/Sirupsen/logrus" ) var log = logrus.New() func init() { log.Formatter = new(logrus.JSONFormatter) log.Formatter = new(logrus.TextFormatter) // default log.Level = logrus.DebugLevel } func main() { defer func() { err := recover() if err != nil { log.WithFields(logrus.Fields{ "omg": true, "err": err, "number": 100, }).Fatal("The ice breaks!") } }() log.WithFields(logrus.Fields{ "animal": "walrus", "number": 8, }).Debug("Started observing beach")