This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Improve, test, and fix a bug related to adb logcat filtering.
#51012
Merged
matanlurey
merged 5 commits into
flutter:main
from
matanlurey:improve-and-test-adb-log-filtering
Feb 27, 2024
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| import 'package:litetest/litetest.dart'; | ||
|
|
||
| import '../bin/utils/adb_logcat_filtering.dart'; | ||
| import 'src/fake_adb_logcat.dart'; | ||
|
|
||
| void main() { | ||
| /// Simulates the filtering of logcat output [lines]. | ||
| Iterable<String> filter(Iterable<String> lines, {int? filterProcessId}) { | ||
| if (lines.isEmpty) { | ||
| throw StateError('No log lines to filter. This is unexpected.'); | ||
| } | ||
| return lines.where((String line) { | ||
| final AdbLogLine? logLine = AdbLogLine.tryParse(line); | ||
| if (logLine == null) { | ||
| throw StateError('Invalid log line: $line'); | ||
| } | ||
| final bool isVerbose = logLine.isVerbose(filterProcessId: filterProcessId?.toString()); | ||
| return !isVerbose; | ||
| }); | ||
| } | ||
|
|
||
| test('should always retain fatal logs', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| process.fatal('Something', 'A bad thing happened'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, hasLength(1)); | ||
| expect(filtered.first, contains('Something: A bad thing happened')); | ||
| }); | ||
|
|
||
| test('should never retain debug logs', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| final String tag = AdbLogLine.knownNoiseTags.first; | ||
| process.debug(tag, 'A debug message'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, isEmpty); | ||
| }); | ||
|
|
||
| test('should never retain logs from known "noise" tags', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| final String tag = AdbLogLine.knownNoiseTags.first; | ||
| process.info(tag, 'Flutter flutter flutter'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, isEmpty); | ||
| }); | ||
|
|
||
| test('should always retain logs from known "useful" tags', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| final String tag = AdbLogLine.knownUsefulTags.first; | ||
| process.info(tag, 'A useful message'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, hasLength(1)); | ||
| expect(filtered.first, contains('$tag: A useful message')); | ||
| }); | ||
|
|
||
| test('if a process ID is passed, retain the log', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| process.info('SomeTag', 'A message'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain(), filterProcessId: process.processId); | ||
| expect(filtered, hasLength(1)); | ||
| expect(filtered.first, contains('SomeTag: A message')); | ||
| }); | ||
|
|
||
| test('even if a process ID passed, retain logs containing "flutter"', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| process.info('SomeTag', 'A message with flutter'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain(), filterProcessId: process.processId); | ||
| expect(filtered, hasLength(1)); | ||
| expect(filtered.first, contains('SomeTag: A message with flutter')); | ||
| }); | ||
|
|
||
| test('should retain E-level flags from known "useful" error tags', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
| final String tag = AdbLogLine.knownUsefulErrorTags.first; | ||
| process.error(tag, 'An error message'); | ||
| process.info(tag, 'An info message'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, hasLength(1)); | ||
| expect(filtered.first, contains('$tag: An error message')); | ||
| }); | ||
|
|
||
| test('should filter out error logs from unimportant processes', () { | ||
| final FakeAdbLogcat logcat = FakeAdbLogcat(); | ||
| final FakeAdbProcess process = logcat.withProcess(); | ||
|
|
||
| // I hate this one. | ||
| const String tag = 'gs.intelligence'; | ||
| process.error(tag, 'No package ID ff found for resource ID 0xffffffff.'); | ||
|
|
||
| final Iterable<String> filtered = filter(logcat.drain()); | ||
| expect(filtered, isEmpty); | ||
| }); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: does this really belong in its own testable class? Right now this looks like it's roughly copied from the run_android_test.dart
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll file a follow-up issue, as it really depends on how much more work I'm going to do on the CLI:
flutter/flutter#144252