Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
faaca13f
Unverified
Commit
faaca13f
authored
Sep 30, 2021
by
Jenn Magder
Committed by
GitHub
Sep 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch FormatException from bad simulator log output (#90966)
parent
131b6b18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
3 deletions
+55
-3
simulators.dart
packages/flutter_tools/lib/src/ios/simulators.dart
+8
-3
simulators_test.dart
...flutter_tools/test/general.shard/ios/simulators_test.dart
+47
-0
No files found.
packages/flutter_tools/lib/src/ios/simulators.dart
View file @
faaca13f
...
@@ -858,9 +858,14 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
...
@@ -858,9 +858,14 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
// The log command predicate handles filtering, so every log eventMessage should be decoded and added.
// The log command predicate handles filtering, so every log eventMessage should be decoded and added.
final
Match
eventMessageMatch
=
_unifiedLoggingEventMessageRegex
.
firstMatch
(
line
);
final
Match
eventMessageMatch
=
_unifiedLoggingEventMessageRegex
.
firstMatch
(
line
);
if
(
eventMessageMatch
!=
null
)
{
if
(
eventMessageMatch
!=
null
)
{
final
dynamic
decodedJson
=
jsonDecode
(
eventMessageMatch
.
group
(
1
));
final
String
message
=
eventMessageMatch
.
group
(
1
);
if
(
decodedJson
is
String
)
{
try
{
_linesController
.
add
(
decodedJson
);
final
dynamic
decodedJson
=
jsonDecode
(
message
);
if
(
decodedJson
is
String
)
{
_linesController
.
add
(
decodedJson
);
}
}
on
FormatException
{
globals
.
printError
(
'Logger returned non-JSON response:
$message
'
);
}
}
}
}
}
}
...
...
packages/flutter_tools/test/general.shard/ios/simulators_test.dart
View file @
faaca13f
...
@@ -622,6 +622,12 @@ Dec 20 17:04:32 md32-11-vm1 Another App[88374]: Ignore this text'''
...
@@ -622,6 +622,12 @@ Dec 20 17:04:32 md32-11-vm1 Another App[88374]: Ignore this text'''
});
});
group
(
'unified logging'
,
()
{
group
(
'unified logging'
,
()
{
BufferLogger
logger
;
setUp
(()
{
logger
=
BufferLogger
.
test
();
});
testUsingContext
(
'log reader handles escaped multiline messages'
,
()
async
{
testUsingContext
(
'log reader handles escaped multiline messages'
,
()
async
{
const
String
logPredicate
=
'eventType = logEvent AND processImagePath ENDSWITH "My Super Awesome App" '
const
String
logPredicate
=
'eventType = logEvent AND processImagePath ENDSWITH "My Super Awesome App" '
'AND (senderImagePath ENDSWITH "/Flutter" OR senderImagePath ENDSWITH "/libswiftCore.dylib" '
'AND (senderImagePath ENDSWITH "/Flutter" OR senderImagePath ENDSWITH "/libswiftCore.dylib" '
...
@@ -676,6 +682,47 @@ Dec 20 17:04:32 md32-11-vm1 Another App[88374]: Ignore this text'''
...
@@ -676,6 +682,47 @@ Dec 20 17:04:32 md32-11-vm1 Another App[88374]: Ignore this text'''
ProcessManager:
()
=>
fakeProcessManager
,
ProcessManager:
()
=>
fakeProcessManager
,
FileSystem:
()
=>
fileSystem
,
FileSystem:
()
=>
fileSystem
,
});
});
testUsingContext
(
'log reader handles bad output'
,
()
async
{
const
String
logPredicate
=
'eventType = logEvent AND processImagePath ENDSWITH "My Super Awesome App" '
'AND (senderImagePath ENDSWITH "/Flutter" OR senderImagePath ENDSWITH "/libswiftCore.dylib" '
'OR processImageUUID == senderImageUUID) AND NOT(eventMessage CONTAINS ": could not find icon '
'for representation -> com.apple.") AND NOT(eventMessage BEGINSWITH "assertion failed: ") '
'AND NOT(eventMessage CONTAINS " libxpc.dylib ")'
;
fakeProcessManager
.
addCommand
(
const
FakeCommand
(
command:
<
String
>[
'xcrun'
,
'simctl'
,
'spawn'
,
'123456'
,
'log'
,
'stream'
,
'--style'
,
'json'
,
'--predicate'
,
logPredicate
,
],
stdout:
'"eventMessage" : "message with incorrect escaping""'
,
));
final
IOSSimulator
device
=
IOSSimulator
(
'123456'
,
simulatorCategory:
'iOS 11.0'
,
simControl:
simControl
,
);
final
DeviceLogReader
logReader
=
device
.
getLogReader
(
app:
await
BuildableIOSApp
.
fromProject
(
mockIosProject
,
null
),
);
final
List
<
String
>
lines
=
await
logReader
.
logLines
.
toList
();
expect
(
lines
,
isEmpty
);
expect
(
logger
.
errorText
,
contains
(
'Logger returned non-JSON response'
));
expect
(
fakeProcessManager
.
hasRemainingExpectations
,
isFalse
);
},
overrides:
<
Type
,
Generator
>{
ProcessManager:
()
=>
fakeProcessManager
,
FileSystem:
()
=>
fileSystem
,
Logger:
()
=>
logger
,
});
});
});
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment