-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
test_registrar.py
1564 lines (1214 loc) · 53.5 KB
/
test_registrar.py
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
"""Test the registrar"""
import os
import platform
import time
import shutil
import stat
import unittest
from filebeat import BaseTest
from nose.plugins.skip import SkipTest
# Additional tests: to be implemented
# * Check if registrar file can be configured, set config param
# * Check "updating" of registrar file
# * Check what happens when registrar file is deleted
class Test(BaseTest):
"""Test class"""
def test_registrar_file_content(self):
"""Check if registrar file is created correctly and content is as expected
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*"
)
os.mkdir(self.working_dir + "/log/")
# Use \n as line terminator on all platforms per docs.
line = "hello world\n"
line_len = len(line) - 1 + len(os.linesep)
iterations = 5
testfile_path = self.working_dir + "/log/test.log"
testfile = open(testfile_path, 'w')
testfile.write(iterations * line)
testfile.close()
filebeat = self.start_beat()
count = self.log_contains_count("states written")
self.wait_until(
lambda: self.output_has(lines=5),
max_timeout=15)
# Make sure states written appears one more time
self.wait_until(
lambda: self.log_contains("states written") > count,
max_timeout=10)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"registry")),
max_timeout=1)
filebeat.check_kill_and_wait()
# Check that a single file exists in the registry.
data = self.get_registry()
assert len(data) == 1
logfile_abs_path = os.path.abspath(testfile_path)
record = self.get_registry_entry_by_path(logfile_abs_path)
self.assertDictContainsSubset({
"source": logfile_abs_path,
"offset": iterations * line_len,
}, record)
self.assertTrue("FileStateOS" in record)
self.assertIsNone(record["meta"])
file_state_os = record["FileStateOS"]
if os.name == "nt":
# Windows checks
# TODO: Check for IdxHi, IdxLo, Vol in FileStateOS on Windows.
self.assertEqual(len(file_state_os), 3)
elif platform.system() == "SunOS":
stat = os.stat(logfile_abs_path)
self.assertEqual(file_state_os["inode"], stat.st_ino)
# Python does not return the same st_dev value as Golang or the
# command line stat tool so just check that it's present.
self.assertTrue("device" in file_state_os)
else:
stat = os.stat(logfile_abs_path)
self.assertDictContainsSubset({
"inode": stat.st_ino,
"device": stat.st_dev,
}, file_state_os)
def test_registrar_files(self):
"""
Check that multiple files are put into registrar file
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*"
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/test1.log"
testfile_path2 = self.working_dir + "/log/test2.log"
file1 = open(testfile_path1, 'w')
file2 = open(testfile_path2, 'w')
iterations = 5
for _ in range(0, iterations):
file1.write("hello world") # 11 chars
file1.write("\n") # 1 char
file2.write("goodbye world") # 11 chars
file2.write("\n") # 1 char
file1.close()
file2.close()
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=10),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"registry")),
max_timeout=1)
filebeat.check_kill_and_wait()
# Check that file exist
data = self.get_registry()
# Check that 2 files are port of the registrar file
assert len(data) == 2
def test_custom_registry_file_location(self):
"""
Check that when a custom registry file is used, the path
is created automatically.
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="a/b/c/registry",
)
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/test.log"
with open(testfile_path, 'w') as testfile:
testfile.write("hello world\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"a/b/c/registry")),
max_timeout=1)
filebeat.check_kill_and_wait()
assert os.path.isfile(os.path.join(self.working_dir, "a/b/c/registry"))
def test_registry_file_default_permissions(self):
"""
Test that filebeat default registry permission is set
"""
if os.name == "nt":
# This test is currently skipped on windows because file permission
# configuration isn't implemented on Windows yet
raise SkipTest
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="a/b/c/registry",
)
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/test.log"
with open(testfile_path, 'w') as testfile:
testfile.write("hello world\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"a/b/c/registry")),
max_timeout=1)
filebeat.check_kill_and_wait()
registry_file_perm_mask = oct(stat.S_IMODE(os.lstat(os.path.join(self.working_dir,
"a/b/c/registry")).st_mode))
self.assertEqual(registry_file_perm_mask, "0600")
def test_registry_file_custom_permissions(self):
"""
Test that filebeat registry permission is set as per configuration
"""
if os.name == "nt":
# This test is currently skipped on windows because file permission
# configuration isn't implemented on Windows yet
raise SkipTest
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="a/b/c/registry",
registryFilePermissions=0644
)
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/test.log"
with open(testfile_path, 'w') as testfile:
testfile.write("hello world\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"a/b/c/registry")),
max_timeout=1)
filebeat.check_kill_and_wait()
registry_file_perm_mask = oct(stat.S_IMODE(os.lstat(os.path.join(self.working_dir,
"a/b/c/registry")).st_mode))
self.assertEqual(registry_file_perm_mask, "0644")
def test_registry_file_update_permissions(self):
"""
Test that filebeat registry permission is updated along with configuration
"""
if os.name == "nt":
# This test is currently skipped on windows because file permission
# configuration isn't implemented on Windows yet
raise SkipTest
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="a/b/c/registry_x",
)
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/test.log"
with open(testfile_path, 'w') as testfile:
testfile.write("hello world\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"a/b/c/registry_x")),
max_timeout=1)
filebeat.check_kill_and_wait()
registry_file_perm_mask = oct(stat.S_IMODE(os.lstat(os.path.join(self.working_dir,
"a/b/c/registry_x")).st_mode))
self.assertEqual(registry_file_perm_mask, "0600")
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="a/b/c/registry_x",
registryFilePermissions=0644
)
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=15)
# wait until the registry file exist. Needed to avoid a race between
# the logging and actual writing the file. Seems to happen on Windows.
self.wait_until(
lambda: os.path.isfile(os.path.join(self.working_dir,
"a/b/c/registry_x")),
max_timeout=1)
# Wait a moment to make sure registry is completely written
time.sleep(1)
filebeat.check_kill_and_wait()
registry_file_perm_mask = oct(stat.S_IMODE(os.lstat(os.path.join(self.working_dir,
"a/b/c/registry_x")).st_mode))
self.assertEqual(registry_file_perm_mask, "0644")
def test_rotating_file(self):
"""
Checks that the registry is properly updated after a file is rotated
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
close_inactive="1s"
)
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/test.log"
filebeat = self.start_beat()
with open(testfile_path, 'w') as testfile:
testfile.write("offset 9\n")
self.wait_until(lambda: self.output_has(lines=1),
max_timeout=10)
testfilerenamed = self.working_dir + "/log/test.1.log"
os.rename(testfile_path, testfilerenamed)
with open(testfile_path, 'w') as testfile:
testfile.write("offset 10\n")
self.wait_until(lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until rotation is detected
self.wait_until(
lambda: self.log_contains(
"Updating state for renamed file"),
max_timeout=10)
time.sleep(1)
filebeat.check_kill_and_wait()
# Check that file exist
data = self.get_registry()
# Make sure the offsets are correctly set
if os.name == "nt":
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path))["offset"] == 11
assert self.get_registry_entry_by_path(os.path.abspath(testfilerenamed))["offset"] == 10
else:
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path))["offset"] == 10
assert self.get_registry_entry_by_path(os.path.abspath(testfilerenamed))["offset"] == 9
# Check that 2 files are port of the registrar file
assert len(data) == 2
def test_data_path(self):
"""
Checks that the registry file is written in a custom data path.
"""
self.render_config_template(
path=self.working_dir + "/test.log",
path_data=self.working_dir + "/datapath",
skip_registry_config=True,
)
with open(self.working_dir + "/test.log", "w") as testfile:
testfile.write("test message\n")
filebeat = self.start_beat()
self.wait_until(lambda: self.output_has(lines=1))
filebeat.check_kill_and_wait()
assert os.path.isfile(self.working_dir + "/datapath/registry")
def test_rotating_file_inode(self):
"""
Check that inodes are properly written during file rotation
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
scan_frequency="1s",
close_inactive="1s",
clean_removed="false",
)
if os.name == "nt":
raise SkipTest
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/input"
filebeat = self.start_beat()
with open(testfile_path, 'w') as testfile:
testfile.write("entry1\n")
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
# Wait until rotation is detected
self.wait_until(
lambda: self.log_contains_count(
"Registry file updated. 1 states written") >= 1,
max_timeout=10)
data = self.get_registry()
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
testfilerenamed1 = self.working_dir + "/log/input.1"
os.rename(testfile_path, testfilerenamed1)
with open(testfile_path, 'w') as testfile:
testfile.write("entry2\n")
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until rotation is detected
self.wait_until(
lambda: self.log_contains_count(
"Updating state for renamed file") == 1,
max_timeout=10)
time.sleep(1)
data = self.get_registry()
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
assert os.stat(testfilerenamed1).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfilerenamed1))["FileStateOS"]["inode"]
# Rotate log file, create a new empty one and remove it afterwards
testfilerenamed2 = self.working_dir + "/log/input.2"
os.rename(testfilerenamed1, testfilerenamed2)
os.rename(testfile_path, testfilerenamed1)
with open(testfile_path, 'w') as testfile:
testfile.write("")
os.remove(testfilerenamed2)
with open(testfile_path, 'w') as testfile:
testfile.write("entry3\n")
self.wait_until(
lambda: self.output_has(lines=3),
max_timeout=10)
filebeat.check_kill_and_wait()
data = self.get_registry()
# Compare file inodes and the one in the registry
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
assert os.stat(testfilerenamed1).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfilerenamed1))["FileStateOS"]["inode"]
# Check that 3 files are part of the registrar file. The deleted file
# should never have been detected, but the rotated one should be in
assert len(data) == 3, "Expected 3 files but got: %s" % data
def test_restart_continue(self):
"""
Check that file reading continues after restart
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
scan_frequency="1s"
)
if os.name == "nt":
raise SkipTest
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/input"
filebeat = self.start_beat()
with open(testfile_path, 'w') as testfile:
testfile.write("entry1\n")
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
# Wait a moment to make sure registry is completely written
time.sleep(1)
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
filebeat.check_kill_and_wait()
# Store first registry file
shutil.copyfile(self.working_dir + "/registry", self.working_dir + "/registry.first")
# Append file
with open(testfile_path, 'a') as testfile:
testfile.write("entry2\n")
filebeat = self.start_beat(output="filebeat2.log")
# Output file was rotated
self.wait_until(
lambda: self.output_has(lines=1, output_file="output/filebeat.1"),
max_timeout=10)
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
filebeat.check_kill_and_wait()
data = self.get_registry()
# Compare file inodes and the one in the registry
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
# Check that 1 files are part of the registrar file. The deleted file
# should never have been detected
assert len(data) == 1
output = self.read_output()
# Check that output file has the same number of lines as the log file
assert len(output) == 1
assert output[0]["message"] == "entry2"
def test_rotating_file_with_restart(self):
"""
Check that inodes are properly written during file rotation and restart
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
scan_frequency="1s",
close_inactive="1s",
clean_removed="false"
)
if os.name == "nt":
raise SkipTest
os.mkdir(self.working_dir + "/log/")
testfile_path = self.working_dir + "/log/input"
filebeat = self.start_beat()
with open(testfile_path, 'w') as testfile:
testfile.write("entry1\n")
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
# Wait a moment to make sure registry is completely written
time.sleep(1)
data = self.get_registry()
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
testfilerenamed1 = self.working_dir + "/log/input.1"
os.rename(testfile_path, testfilerenamed1)
with open(testfile_path, 'w') as testfile:
testfile.write("entry2\n")
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until rotation is detected
self.wait_until(
lambda: self.log_contains(
"Updating state for renamed file"),
max_timeout=10)
# Wait a moment to make sure registry is completely written
time.sleep(1)
data = self.get_registry()
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
assert os.stat(testfilerenamed1).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfilerenamed1))["FileStateOS"]["inode"]
filebeat.check_kill_and_wait()
# Store first registry file
shutil.copyfile(self.working_dir + "/registry", self.working_dir + "/registry.first")
# Rotate log file, create a new empty one and remove it afterwards
testfilerenamed2 = self.working_dir + "/log/input.2"
os.rename(testfilerenamed1, testfilerenamed2)
os.rename(testfile_path, testfilerenamed1)
with open(testfile_path, 'w') as testfile:
testfile.write("")
os.remove(testfilerenamed2)
with open(testfile_path, 'w') as testfile:
testfile.write("entry3\n")
filebeat = self.start_beat(output="filebeat2.log")
# Output file was rotated
self.wait_until(
lambda: self.output_has(lines=2, output_file="output/filebeat.1"),
max_timeout=10)
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
filebeat.check_kill_and_wait()
data = self.get_registry()
# Compare file inodes and the one in the registry
assert os.stat(testfile_path).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfile_path))["FileStateOS"]["inode"]
assert os.stat(testfilerenamed1).st_ino == self.get_registry_entry_by_path(
os.path.abspath(testfilerenamed1))["FileStateOS"]["inode"]
# Check that 3 files are part of the registrar file. The deleted file
# should never have been detected, but the rotated one should be in
assert len(data) == 3
def test_state_after_rotation(self):
"""
Checks that the state is written correctly after rotation
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
ignore_older="2m",
scan_frequency="1s",
close_inactive="1s"
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/input"
testfile_path2 = self.working_dir + "/log/input.1"
testfile_path3 = self.working_dir + "/log/input.2"
with open(testfile_path1, 'w') as testfile:
testfile.write("entry10\n")
with open(testfile_path2, 'w') as testfile:
testfile.write("entry0\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait a moment to make sure file exists
time.sleep(1)
self.get_registry()
# Check that offsets are correct
if os.name == "nt":
# Under windows offset is +1 because of additional newline char
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 9
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 8
else:
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 8
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 7
# Rotate files and remove old one
os.rename(testfile_path2, testfile_path3)
os.rename(testfile_path1, testfile_path2)
with open(testfile_path1, 'w') as testfile1:
testfile1.write("entry200\n")
# Remove file afterwards to make sure not inode reuse happens
os.remove(testfile_path3)
# Now wait until rotation is detected
self.wait_until(
lambda: self.log_contains(
"Updating state for renamed file"),
max_timeout=10)
self.wait_until(
lambda: self.log_contains_count(
"Registry file updated. 2 states written.") >= 1,
max_timeout=15)
time.sleep(1)
filebeat.kill_and_wait()
# Check that offsets are correct
if os.name == "nt":
# Under windows offset is +1 because of additional newline char
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 10
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 9
else:
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 9
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 8
def test_state_after_rotation_ignore_older(self):
"""
Checks that the state is written correctly after rotation and ignore older
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
ignore_older="2m",
scan_frequency="1s",
close_inactive="1s"
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/input"
testfile_path2 = self.working_dir + "/log/input.1"
testfile_path3 = self.working_dir + "/log/input.2"
with open(testfile_path1, 'w') as testfile1:
testfile1.write("entry10\n")
with open(testfile_path2, 'w') as testfile2:
testfile2.write("entry0\n")
# Change modification time so file extends ignore_older
yesterday = time.time() - 3600 * 24
os.utime(testfile_path2, (yesterday, yesterday))
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=1),
max_timeout=10)
# Wait a moment to make sure file exists
time.sleep(1)
self.get_registry()
# Check that offsets are correct
if os.name == "nt":
# Under windows offset is +1 because of additional newline char
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 9
else:
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 8
# Rotate files and remove old one
os.rename(testfile_path2, testfile_path3)
os.rename(testfile_path1, testfile_path2)
with open(testfile_path1, 'w') as testfile1:
testfile1.write("entry200\n")
# Remove file afterwards to make sure not inode reuse happens
os.remove(testfile_path3)
# Now wait until rotation is detected
self.wait_until(
lambda: self.log_contains(
"Updating state for renamed file"),
max_timeout=10)
self.wait_until(
lambda: self.log_contains_count(
"Registry file updated. 2 states written.") >= 1,
max_timeout=15)
# Wait a moment to make sure registry is completely written
time.sleep(1)
filebeat.kill_and_wait()
# Check that offsets are correct
if os.name == "nt":
# Under windows offset is +1 because of additional newline char
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 10
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 9
else:
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path1))["offset"] == 9
assert self.get_registry_entry_by_path(os.path.abspath(testfile_path2))["offset"] == 8
def test_clean_inactive(self):
"""
Checks that states are properly removed after clean_inactive
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
clean_inactive="4s",
ignore_older="2s",
close_inactive="0.2s",
scan_frequency="0.1s"
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/input1"
testfile_path2 = self.working_dir + "/log/input2"
testfile_path3 = self.working_dir + "/log/input3"
with open(testfile_path1, 'w') as testfile1:
testfile1.write("first file\n")
with open(testfile_path2, 'w') as testfile2:
testfile2.write("second file\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until registry file is created
self.wait_until(
lambda: self.log_contains_count("Registry file updated") > 1,
max_timeout=15)
# Syncing file on disk is always susceptible to timing issues.
time.sleep(1)
data = self.get_registry()
assert len(data) == 2
# Wait until states are removed from inputs
self.wait_until(
lambda: self.log_contains_count(
"State removed for") == 2,
max_timeout=15)
with open(testfile_path3, 'w') as testfile3:
testfile3.write("2\n")
# Write new file to make sure registrar is flushed again
self.wait_until(
lambda: self.output_has(lines=3),
max_timeout=30)
# Wait until states are removed from inputs
self.wait_until(
lambda: self.log_contains_count(
"State removed for") >= 3,
max_timeout=15)
filebeat.check_kill_and_wait()
# Check that the first two files were removed from the registry
data = self.get_registry()
assert len(data) == 1, "Expected a single file but got: %s" % data
# Make sure the last file in the registry is the correct one and has the correct offset
if os.name == "nt":
assert data[0]["offset"] == 3
else:
assert data[0]["offset"] == 2
@unittest.skip("Skipped as flaky: https://github.com/elastic/beats/issues/7690")
def test_clean_removed(self):
"""
Checks that files which were removed, the state is removed
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
scan_frequency="0.1s",
clean_removed=True,
close_removed=True
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/input1"
testfile_path2 = self.working_dir + "/log/input2"
with open(testfile_path1, 'w') as testfile1:
testfile1.write("file to be removed\n")
with open(testfile_path2, 'w') as testfile2:
testfile2.write("2\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until registry file is created
self.wait_until(lambda: self.log_contains_count("Registry file updated") > 1)
# Wait until registry is updated
self.wait_until(lambda: len(self.get_registry()) == 2)
assert len(self.get_registry()) == 2
os.remove(testfile_path1)
# Wait until states are removed from inputs
self.wait_until(lambda: self.log_contains("Remove state for file as file removed"))
# Add one more line to make sure registry is written
with open(testfile_path2, 'a') as testfile2:
testfile2.write("make sure registry is written\n")
self.wait_until(
lambda: self.output_has(lines=3),
max_timeout=10)
# Make sure all states are cleaned up
self.wait_until(lambda: self.log_contains("Before: 1, After: 1, Pending: 0"))
filebeat.check_kill_and_wait()
# Check that the first to files were removed from the registry
data = self.get_registry()
assert len(data) == 1
# Make sure the last file in the registry is the correct one and has the correct offset
if os.name == "nt":
assert data[0]["offset"] == len("make sure registry is written\n" + "2\n") + 2
else:
assert data[0]["offset"] == len("make sure registry is written\n" + "2\n")
def test_clean_removed_with_clean_inactive(self):
"""
Checks that files which were removed, the state is removed
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/input*",
scan_frequency="0.1s",
clean_removed=True,
clean_inactive="20s",
ignore_older="15s",
close_removed=True
)
os.mkdir(self.working_dir + "/log/")
testfile_path1 = self.working_dir + "/log/input1"
testfile_path2 = self.working_dir + "/log/input2"
with open(testfile_path1, 'w') as testfile1:
testfile1.write("file to be removed\n")
with open(testfile_path2, 'w') as testfile2:
testfile2.write("2\n")
filebeat = self.start_beat()
self.wait_until(
lambda: self.output_has(lines=2),
max_timeout=10)
# Wait until registry file is created
self.wait_until(
lambda: self.log_contains_count("Registry file updated. 2 states written.") > 0,
max_timeout=15)
data = self.get_registry()
assert len(data) == 2
os.remove(testfile_path1)
# Wait until states are removed from inputs
self.wait_until(lambda: self.log_contains("Remove state for file as file removed"))
# Add one more line to make sure registry is written
with open(testfile_path2, 'a') as testfile2:
testfile2.write("make sure registry is written\n")
self.wait_until(lambda: self.output_has(lines=3))
# Check is > as the same log line might happen before but afterwards it is repeated
self.wait_until(lambda: self.log_contains_count("Before: 1, After: 1, Pending: 1") > 5)
filebeat.check_kill_and_wait()
# Check that the first to files were removed from the registry
data = self.get_registry()
assert len(data) == 1
# Make sure the last file in the registry is the correct one and has the correct offset
if os.name == "nt":
assert data[0]["offset"] == len("make sure registry is written\n" + "2\n") + 2
else:
assert data[0]["offset"] == len("make sure registry is written\n" + "2\n")
def test_directory_failure(self):
"""
Test that filebeat does not start if a directory is set as registry file
"""
self.render_config_template(
path=os.path.abspath(self.working_dir) + "/log/*",
registryFile="registrar",
)
os.mkdir(self.working_dir + "/log/")
os.mkdir(self.working_dir + "/registrar/")
testfile_path = self.working_dir + "/log/test.log"
with open(testfile_path, 'w') as testfile:
testfile.write("Hello World\n")
filebeat = self.start_beat()
# Make sure states written appears one more time
self.wait_until(
lambda: self.log_contains("Exiting: Registry file path must be a file"),
max_timeout=10)
filebeat.check_kill_and_wait(exit_code=1)