Skip to content

Commit

Permalink
Add unit test case for func Type in record.go (#7082)
Browse files Browse the repository at this point in the history
Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
  • Loading branch information
fenggw-fnst committed May 27, 2020
1 parent c9565f0 commit 2393d61
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tsdb/record/record_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,26 @@ func TestRecord_Corrupted(t *testing.T) {
testutil.Equals(t, err, encoding.ErrInvalidSize)
})
}

func TestRecord_Type(t *testing.T) {
var enc Encoder
var dec Decoder

series := []RefSeries{{Ref: 100, Labels: labels.FromStrings("abc", "123")}}
recordType := dec.Type(enc.Series(series, nil))
testutil.Equals(t, Series, recordType)

samples := []RefSample{{Ref: 123, T: 12345, V: 1.2345}}
recordType = dec.Type(enc.Samples(samples, nil))
testutil.Equals(t, Samples, recordType)

tstones := []tombstones.Stone{{Ref: 1, Intervals: tombstones.Intervals{{Mint: 1, Maxt: 2}}}}
recordType = dec.Type(enc.Tombstones(tstones, nil))
testutil.Equals(t, Tombstones, recordType)

recordType = dec.Type(nil)
testutil.Equals(t, Invalid, recordType)

recordType = dec.Type([]byte{0})
testutil.Equals(t, Invalid, recordType)
}

0 comments on commit 2393d61

Please sign in to comment.