Documentation ¶
Overview ¶
Package utils provides shared common functions so different E2E tests suites can use them.
Index ¶
- Constants
- func AppendLog(ls LogsTestSuite, logFileName, content string, recurrence int)
- func CheckLogFilePresence(ls LogsTestSuite, logFileName string)
- func CheckLogsExpected(t *testing.T, fakeIntake *components.FakeIntake, service, content string, ...)
- func CheckLogsNotExpected(t *testing.T, fakeIntake *components.FakeIntake, service, content string)
- func CleanUp(ls LogsTestSuite)
- func FetchAndFilterLogs(t *testing.T, fakeIntake *components.FakeIntake, service, content string) ([]*aggregator.Log, error)
- type LogsTestSuite
Constants ¶
const LinuxLogsFolderPath = "/var/log/e2e_test_logs"
LinuxLogsFolderPath is the folder where log files will be stored for Linux tests
const WindowsLogsFolderPath = "C:\\logs\\e2e_test_logs"
WindowsLogsFolderPath is the folder where log files will be stored for Windows tests
Variables ¶
This section is empty.
Functions ¶
func AppendLog ¶
func AppendLog(ls LogsTestSuite, logFileName, content string, recurrence int)
AppendLog append log with 'content', which is then repeated 'reccurrence' times and verifies log contents.
func CheckLogFilePresence ¶
func CheckLogFilePresence(ls LogsTestSuite, logFileName string)
CheckLogFilePresence verifies the presence or absence of a log file path
func CheckLogsExpected ¶
func CheckLogsExpected(t *testing.T, fakeIntake *components.FakeIntake, service, content string, expectedTags ddtags)
CheckLogsExpected verifies the presence of expected logs.
func CheckLogsNotExpected ¶
func CheckLogsNotExpected(t *testing.T, fakeIntake *components.FakeIntake, service, content string)
CheckLogsNotExpected verifies the absence of unexpected logs.
func CleanUp ¶
func CleanUp(ls LogsTestSuite)
CleanUp cleans up any existing log files (only useful when running dev mode/local runs).
func FetchAndFilterLogs ¶
func FetchAndFilterLogs(t *testing.T, fakeIntake *components.FakeIntake, service, content string) ([]*aggregator.Log, error)
FetchAndFilterLogs fetches logs from the fake intake server and filters them by service and content.
Types ¶
type LogsTestSuite ¶
type LogsTestSuite interface { T() *testing.T Env() *environments.Host IsDevMode() bool }
LogsTestSuite is an interface for the log agent test suite.