aboutsummaryrefslogtreecommitdiff
path: root/spool/serialize_test.go
blob: 896125c4256138ee8062643cfaa7f7cd208d6183 (plain)
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
package spool

import (
	"bareos-zabbix-check/job"
	"bytes"
	"testing"
)

func TestSerialize(t *testing.T) {
	type args struct {
		jobs []job.Job
	}
	tests := []struct {
		name       string
		args       args
		wantHandle string
		wantErr    bool
	}{
		{"One job", args{[]job.Job{{Name: "a", Timestamp: 1}}}, "a,1\n", false},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			handle := &bytes.Buffer{}
			if err := Serialize(handle, tt.args.jobs); (err != nil) != tt.wantErr {
				t.Errorf("Serialize() error = %v, wantErr %v", err, tt.wantErr)
				return
			}
			if gotHandle := handle.String(); gotHandle != tt.wantHandle {
				t.Errorf("Serialize() = %v, want %v", gotHandle, tt.wantHandle)
			}
		})
	}
}