@@ -279,15 +279,13 @@ agent.logging.metrics.enabled: false
279
279
`
280
280
281
281
func TestEventLogFile (t * testing.T ) {
282
- info : = define .Require (t , define.Requirements {
282
+ _ = define .Require (t , define.Requirements {
283
283
Group : Default ,
284
284
Stack : & define.Stack {},
285
285
Local : true ,
286
286
Sudo : false ,
287
287
})
288
288
289
- fmt .Println ("Namespace:" , info .Namespace )
290
-
291
289
ctx , cancel := testcontext .WithDeadline (t , context .Background (), time .Now ().Add (10 * time .Minute ))
292
290
defer cancel ()
293
291
@@ -318,34 +316,55 @@ func TestEventLogFile(t *testing.T) {
318
316
t .Fatalf ("could not start Elastic-Agent: %s" , err )
319
317
}
320
318
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 )
345
365
}
346
366
347
- cancel ()
348
- t .FailNow ()
367
+ strings .Contains (string (logEntry ), "Cannot index event publisher.Event" )
349
368
}
350
369
351
370
func startMockES (t * testing.T ) string {
@@ -355,7 +374,6 @@ func startMockES(t *testing.T) string {
355
374
uid := uuid .New ()
356
375
mux .Handle ("/" , mockes .NewAPIHandler (uid , registry , time .Now ().Add (time .Hour ), 0 , 0 , 100 , 0 ))
357
376
s := httptest .NewServer (mux )
358
- t .Log (s .URL )
359
377
t .Cleanup (s .Close )
360
378
361
379
return s .URL
0 commit comments