forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
36 lines (27 loc) · 1021 Bytes
/
main_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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package main
// This file is mandatory as otherwise the functionbeat.test binary is not generated correctly.
import (
"flag"
"testing"
"github.com/elastic/beats/v7/libbeat/tests/system/template"
"github.com/elastic/beats/v7/x-pack/functionbeat/manager/cmd"
)
var systemTest *bool
func init() {
testing.Init()
systemTest = flag.Bool("systemTest", false, "Set to true when running system tests")
cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("systemTest"))
cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("test.coverprofile"))
}
// Test started when the test binary is started. Only calls main.
func TestSystem(t *testing.T) {
if *systemTest {
main()
}
}
func TestTemplate(t *testing.T) {
template.TestTemplate(t, cmd.Name, true)
}