This repository was archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathpayload_encoder_test.go
87 lines (74 loc) · 2.43 KB
/
payload_encoder_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/***** BEGIN LICENSE BLOCK *****
# 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/.
#
# The Initial Developer of the Original Code is the Mozilla Foundation.
# Portions created by the Initial Developer are Copyright (C) 2014
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Rob Miller ([email protected])
#
# ***** END LICENSE BLOCK *****/
package plugins
import (
"fmt"
"github.com/mozilla-services/heka/pipeline"
"time"
//pipeline_ts "github.com/mozilla-services/heka/pipeline/testsupport"
gs "github.com/rafrombrc/gospec/src/gospec"
)
func PayloadEncoderSpec(c gs.Context) {
c.Specify("A PayloadEncoder", func() {
encoder := new(PayloadEncoder)
config := encoder.ConfigStruct().(*PayloadEncoderConfig)
tsFormat := "[2006/Jan/02:15:04:05 -0700]"
supply := make(chan *pipeline.PipelinePack, 1)
pack := pipeline.NewPipelinePack(supply)
payload := "This is the payload!"
pack.Message.SetPayload(payload)
ts := time.Now()
pack.Message.SetTimestamp(ts.UnixNano())
var (
output []byte
err error
)
c.Specify("works with default config options", func() {
err = encoder.Init(config)
c.Expect(err, gs.IsNil)
output, err = encoder.Encode(pack)
c.Expect(err, gs.IsNil)
c.Expect(string(output), gs.Equals, fmt.Sprintln(payload))
})
c.Specify("honors append_newlines = false", func() {
config.AppendNewlines = false
err = encoder.Init(config)
c.Expect(err, gs.IsNil)
output, err = encoder.Encode(pack)
c.Expect(err, gs.IsNil)
c.Expect(string(output), gs.Equals, payload)
})
c.Specify("prefixes timestamp", func() {
config.PrefixTs = true
err = encoder.Init(config)
c.Expect(err, gs.IsNil)
output, err = encoder.Encode(pack)
c.Expect(err, gs.IsNil)
formattedTime := ts.Format(tsFormat)
expected := fmt.Sprintf("%s %s\n", formattedTime, payload)
c.Expect(string(output), gs.Equals, expected)
})
c.Specify("supports alternate time format", func() {
config.PrefixTs = true
config.TsFormat = "%a, %d %b %Y %H:%M:%S %Z"
err = encoder.Init(config)
c.Expect(err, gs.IsNil)
output, err = encoder.Encode(pack)
c.Expect(err, gs.IsNil)
formattedTime := ts.Format(time.RFC1123)
expected := fmt.Sprintf("%s %s\n", formattedTime, payload)
c.Expect(string(output), gs.Equals, expected)
})
})
}