2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @authors astaxie
|
2013-08-27 15:48:58 +00:00
|
|
|
package logs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2013-08-28 07:55:34 +00:00
|
|
|
"time"
|
2013-08-27 15:48:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSmtp(t *testing.T) {
|
|
|
|
log := NewLogger(10000)
|
2013-08-28 07:48:43 +00:00
|
|
|
log.SetLogger("smtp", `{"username":"beegotest@gmail.com","password":"xxxxxxxx","host":"smtp.gmail.com:587","sendTos":["xiemengjun@gmail.com"]}`)
|
2013-08-27 15:48:58 +00:00
|
|
|
log.Critical("sendmail critical")
|
2013-08-28 07:55:34 +00:00
|
|
|
time.Sleep(time.Second * 30)
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|