summaryrefslogtreecommitdiff
path: root/integrationtests/dcat_test.go
blob: 777e83553a1d2940b9fc9e637624d77e2a2fa770 (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
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
package integrationtests

import (
	"context"
	"os"
	"testing"

	"github.com/mimecast/dtail/internal/config"
)

func TestDCat(t *testing.T) {
	if !config.Env("DTAIL_RUN_INTEGRATION_TESTS") {
		t.Log("Skipping")
		return
	}
	testdataFile := "dcat.txt"
	stdoutFile := "dcat.out"

	_, err := runCommand(context.TODO(), t, stdoutFile,
		"../dcat", "--spartan", "--cfg", "none", testdataFile)

	if err != nil {
		t.Error(err)
		return
	}

	if err := compareFiles(t, stdoutFile, testdataFile); err != nil {
		t.Error(err)
		return
	}

	os.Remove(stdoutFile)
}

func TestDCat2(t *testing.T) {
	if !config.Env("DTAIL_RUN_INTEGRATION_TESTS") {
		return
	}
	testdataFile := "dcat2.txt"
	expectedFile := "dcat2.txt.expected"
	stdoutFile := "dcat2.out"

	args := []string{"--spartan", "--logLevel", "error", "--cfg", "none"}

	// Cat file 100 times in one session.
	for i := 0; i < 100; i++ {
		args = append(args, testdataFile)
	}

	_, err := runCommand(context.TODO(), t, stdoutFile, "../dcat", args...)
	if err != nil {
		t.Error(err)
		return
	}

	if err := compareFilesContents(t, stdoutFile, expectedFile); err != nil {
		t.Error(err)
		return
	}

	os.Remove(stdoutFile)
}

func TestDCatColors(t *testing.T) {
	if !config.Env("DTAIL_RUN_INTEGRATION_TESTS") {
		return
	}

	testdataFile := "dcatcolors.txt"
	stdoutFile := "dcatcolors.out"
	expectedFile := "dcatcolors.expected"

	_, err := runCommand(context.TODO(), t, stdoutFile,
		"../dcat", "--logLevel", "error", "--cfg", "none", testdataFile)

	if err != nil {
		t.Error(err)
		return
	}

	if err := compareFiles(t, stdoutFile, expectedFile); err != nil {
		t.Error(err)
		return
	}

	os.Remove(stdoutFile)
}