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
5a52ad6d
Unverified
Commit
5a52ad6d
authored
Mar 18, 2022
by
Jonah Williams
Committed by
GitHub
Mar 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[framework] Remove danger zone (#100246)
parent
0adf9671
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
77 deletions
+11
-77
image_provider.dart
packages/flutter/lib/src/painting/image_provider.dart
+11
-28
image_provider_test.dart
packages/flutter/test/painting/image_provider_test.dart
+0
-49
No files found.
packages/flutter/lib/src/painting/image_provider.dart
View file @
5a52ad6d
...
@@ -435,38 +435,21 @@ abstract class ImageProvider<T extends Object> {
...
@@ -435,38 +435,21 @@ abstract class ImageProvider<T extends Object> {
didError
=
true
;
didError
=
true
;
}
}
// If an error is added to a synchronous completer before a listener has been
Future
<
T
>
key
;
// added, it can throw an error both into the zone and up the stack. Thus, it
try
{
// looks like the error has been caught, but it is in fact also bubbling to the
key
=
obtainKey
(
configuration
);
// zone. Since we cannot prevent all usage of Completer.sync here, or rather
}
catch
(
error
,
stackTrace
)
{
// that changing them would be too breaking, we instead hook into the same
handleError
(
error
,
stackTrace
);
// zone mechanism to intercept the uncaught error and deliver it to the
return
;
// image stream's error handler. Note that these errors may be duplicated,
}
// hence the need for the `didError` flag.
key
.
then
<
void
>((
T
key
)
{
final
Zone
dangerZone
=
Zone
.
current
.
fork
(
obtainedKey
=
key
;
specification:
ZoneSpecification
(
handleUncaughtError:
(
Zone
zone
,
ZoneDelegate
delegate
,
Zone
parent
,
Object
error
,
StackTrace
stackTrace
)
{
handleError
(
error
,
stackTrace
);
},
),
);
dangerZone
.
runGuarded
(()
{
Future
<
T
>
key
;
try
{
try
{
key
=
obtainKey
(
configuration
);
successCallback
(
key
,
handleError
);
}
catch
(
error
,
stackTrace
)
{
}
catch
(
error
,
stackTrace
)
{
handleError
(
error
,
stackTrace
);
handleError
(
error
,
stackTrace
);
return
;
}
}
key
.
then
<
void
>((
T
key
)
{
}).
catchError
(
handleError
);
obtainedKey
=
key
;
try
{
successCallback
(
key
,
handleError
);
}
catch
(
error
,
stackTrace
)
{
handleError
(
error
,
stackTrace
);
}
}).
catchError
(
handleError
);
});
}
}
/// Called by [resolve] with the key returned by [obtainKey].
/// Called by [resolve] with the key returned by [obtainKey].
...
...
packages/flutter/test/painting/image_provider_test.dart
View file @
5a52ad6d
...
@@ -57,55 +57,6 @@ void main() {
...
@@ -57,55 +57,6 @@ void main() {
expect
(
await
caughtError
.
future
,
true
);
expect
(
await
caughtError
.
future
,
true
);
});
});
test
(
'resolve sync errors will be caught'
,
()
async
{
bool
uncaught
=
false
;
final
Zone
testZone
=
Zone
.
current
.
fork
(
specification:
ZoneSpecification
(
handleUncaughtError:
(
Zone
zone
,
ZoneDelegate
zoneDelegate
,
Zone
parent
,
Object
error
,
StackTrace
stackTrace
)
{
uncaught
=
true
;
},
));
await
testZone
.
run
(()
async
{
final
ImageProvider
imageProvider
=
LoadErrorImageProvider
();
final
Completer
<
bool
>
caughtError
=
Completer
<
bool
>();
FlutterError
.
onError
=
(
FlutterErrorDetails
details
)
{
throw
Error
();
};
final
ImageStream
result
=
imageProvider
.
resolve
(
ImageConfiguration
.
empty
);
result
.
addListener
(
ImageStreamListener
((
ImageInfo
info
,
bool
syncCall
)
{
},
onError:
(
dynamic
error
,
StackTrace
?
stackTrace
)
{
caughtError
.
complete
(
true
);
}));
expect
(
await
caughtError
.
future
,
true
);
});
expect
(
uncaught
,
false
);
});
test
(
'resolve errors in the completer will be caught'
,
()
async
{
bool
uncaught
=
false
;
final
Zone
testZone
=
Zone
.
current
.
fork
(
specification:
ZoneSpecification
(
handleUncaughtError:
(
Zone
zone
,
ZoneDelegate
zoneDelegate
,
Zone
parent
,
Object
error
,
StackTrace
stackTrace
)
{
uncaught
=
true
;
},
));
await
testZone
.
run
(()
async
{
final
ImageProvider
imageProvider
=
LoadErrorCompleterImageProvider
();
final
Completer
<
bool
>
caughtError
=
Completer
<
bool
>();
final
Completer
<
bool
>
onErrorCompleter
=
Completer
<
bool
>();
FlutterError
.
onError
=
(
FlutterErrorDetails
details
)
{
onErrorCompleter
.
complete
(
true
);
throw
Error
();
};
final
ImageStream
result
=
imageProvider
.
resolve
(
ImageConfiguration
.
empty
);
result
.
addListener
(
ImageStreamListener
((
ImageInfo
info
,
bool
syncCall
)
{
},
onError:
(
dynamic
error
,
StackTrace
?
stackTrace
)
{
caughtError
.
complete
(
true
);
}));
expect
(
await
caughtError
.
future
,
true
);
expect
(
await
onErrorCompleter
.
future
,
true
);
});
expect
(
uncaught
,
false
);
});
test
(
'File image with empty file throws expected error and evicts from cache'
,
()
async
{
test
(
'File image with empty file throws expected error and evicts from cache'
,
()
async
{
final
Completer
<
StateError
>
error
=
Completer
<
StateError
>();
final
Completer
<
StateError
>
error
=
Completer
<
StateError
>();
FlutterError
.
onError
=
(
FlutterErrorDetails
details
)
{
FlutterError
.
onError
=
(
FlutterErrorDetails
details
)
{
...
...
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