Skip to content

Commit 5a51e88

Browse files
committed
working integration test
1 parent 6863999 commit 5a51e88

File tree

1 file changed

+48
-30
lines changed

1 file changed

+48
-30
lines changed

testing/integration/logs_ingestion_test.go

+48-30
Original file line numberDiff line numberDiff line change
@@ -279,15 +279,13 @@ agent.logging.metrics.enabled: false
279279
`
280280

281281
func TestEventLogFile(t *testing.T) {
282-
info := define.Require(t, define.Requirements{
282+
_ = define.Require(t, define.Requirements{
283283
Group: Default,
284284
Stack: &define.Stack{},
285285
Local: true,
286286
Sudo: false,
287287
})
288288

289-
fmt.Println("Namespace:", info.Namespace)
290-
291289
ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute))
292290
defer cancel()
293291

@@ -318,34 +316,55 @@ func TestEventLogFile(t *testing.T) {
318316
t.Fatalf("could not start Elastic-Agent: %s", err)
319317
}
320318

321-
// defer func() {
322-
// for i := 0; i < 90; i++ {
323-
// t.Log("sleeping after fail", i)
324-
// time.Sleep(time.Second)
325-
// }
326-
// }()
327-
328-
// state := atesting.State{
329-
// Configure: cfg,
330-
// Reached: func(s *client.AgentState) bool {
331-
// if s.State == client.Healthy {
332-
// fmt.Println("==================== Agent is health")
333-
// return true
334-
// }
335-
// return false
336-
// },
337-
// }
338-
// if err := agentFixture.Run(ctx, state); err != nil {
339-
// t.Fatalf("error running Elastic-Agent fixture: %s", err)
340-
// }
341-
342-
for i := 0; i < 60*10; i++ {
343-
t.Log("sleeping", i)
344-
time.Sleep(time.Second)
319+
// Make sure the Elastic-Agent process is not running before
320+
// exiting the test
321+
t.Cleanup(func() {
322+
_ = cmd.Wait()
323+
})
324+
325+
// Now the Elastic-Agent is running, so validate the Event log file is there
326+
327+
entries, err := os.ReadDir(filepath.Join(agentFixture.WorkDir(), "data"))
328+
if err != nil {
329+
t.Fatalf("could not read test workdir: %s", err)
330+
}
331+
332+
var eaFolder string
333+
for _, e := range entries {
334+
if !e.IsDir() {
335+
continue
336+
}
337+
338+
if strings.HasPrefix(e.Name(), "elastic-agent") {
339+
eaFolder = e.Name()
340+
break
341+
}
342+
}
343+
eventsLogFolder := filepath.Join(agentFixture.WorkDir(), "data", eaFolder, "logs", "events")
344+
345+
var logFileName string
346+
require.Eventually(t, func() bool {
347+
// We ignore this error because the folder might not be there.
348+
// Once the folder and file are there, then this call should succeed
349+
// and we can read the file.
350+
// Because this error is expected and will happen in all test runs,
351+
// we do not log it to avoid spamming the test output.
352+
files, _ := os.ReadDir(eventsLogFolder)
353+
354+
if len(files) == 1 {
355+
logFileName = filepath.Join(eventsLogFolder, files[0].Name())
356+
return true
357+
}
358+
359+
return false
360+
}, time.Minute, time.Second, "could not find event log file")
361+
362+
logEntry, err := os.ReadFile(logFileName)
363+
if err != nil {
364+
t.Fatalf("cannot read file '%s': %s", logFileName, err)
345365
}
346366

347-
cancel()
348-
t.FailNow()
367+
strings.Contains(string(logEntry), "Cannot index event publisher.Event")
349368
}
350369

351370
func startMockES(t *testing.T) string {
@@ -355,7 +374,6 @@ func startMockES(t *testing.T) string {
355374
uid := uuid.New()
356375
mux.Handle("/", mockes.NewAPIHandler(uid, registry, time.Now().Add(time.Hour), 0, 0, 100, 0))
357376
s := httptest.NewServer(mux)
358-
t.Log(s.URL)
359377
t.Cleanup(s.Close)
360378

361379
return s.URL

0 commit comments

Comments
 (0)