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
7042481d
Unverified
Commit
7042481d
authored
Apr 10, 2020
by
Chris Yang
Committed by
GitHub
Apr 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix test (#54403)
parent
c16c3b04
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
29 deletions
+54
-29
SimplePlatformView.java
.../flutter/integration/androidviews/SimplePlatformView.java
+10
-4
motion_events_page.dart
...tegration_tests/android_views/lib/motion_events_page.dart
+36
-21
wm_integrations.dart
dev/integration_tests/android_views/lib/wm_integrations.dart
+1
-1
main_test.dart
...ntegration_tests/android_views/test_driver/main_test.dart
+7
-3
No files found.
dev/integration_tests/android_views/android/app/src/main/java/io/flutter/integration/androidviews/SimplePlatformView.java
View file @
7042481d
...
...
@@ -52,21 +52,27 @@ public class SimplePlatformView implements PlatformView, MethodChannel.MethodCal
touchPipe
.
disable
();
result
.
success
(
null
);
return
;
case
"showAlertDialog"
:
showAlertDialog
(
result
);
case
"showA
ndHideA
lertDialog"
:
showA
ndHideA
lertDialog
(
result
);
return
;
}
result
.
notImplemented
();
}
private
void
showAlertDialog
(
MethodChannel
.
Result
result
)
{
private
void
showA
ndHideA
lertDialog
(
MethodChannel
.
Result
result
)
{
Context
context
=
view
.
getContext
();
AlertDialog
.
Builder
builder
=
new
AlertDialog
.
Builder
(
context
);
TextView
textView
=
new
TextView
(
context
);
textView
.
setText
(
"
Alert!
"
);
textView
.
setText
(
"
This alert dialog will close in 1 second
"
);
builder
.
setView
(
textView
);
final
AlertDialog
alertDialog
=
builder
.
show
();
result
.
success
(
null
);
view
.
postDelayed
(
new
Runnable
()
{
@Override
public
void
run
()
{
alertDialog
.
hide
();
}
},
1000
);
}
}
dev/integration_tests/android_views/lib/motion_events_page.dart
View file @
7042481d
...
...
@@ -79,31 +79,46 @@ class MotionEventsBodyState extends State<MotionEventsBody> {
),
Row
(
children:
<
Widget
>[
RaisedButton
(
child:
const
Text
(
'RECORD'
),
onPressed:
listenToFlutterViewEvents
,
Expanded
(
child:
RaisedButton
(
child:
const
Text
(
'RECORD'
),
onPressed:
listenToFlutterViewEvents
,
),
),
RaisedButton
(
child:
const
Text
(
'CLEAR'
),
onPressed:
()
{
setState
(()
{
flutterViewEvents
.
clear
();
embeddedViewEvents
.
clear
();
});
},
Expanded
(
child:
RaisedButton
(
child:
const
Text
(
'CLEAR'
),
onPressed:
()
{
setState
(()
{
flutterViewEvents
.
clear
();
embeddedViewEvents
.
clear
();
});
},
),
),
RaisedButton
(
child:
const
Text
(
'SAVE'
),
onPressed:
()
{
const
StandardMessageCodec
codec
=
StandardMessageCodec
();
saveRecordedEvents
(
Expanded
(
child:
RaisedButton
(
child:
const
Text
(
'SAVE'
),
onPressed:
()
{
const
StandardMessageCodec
codec
=
StandardMessageCodec
();
saveRecordedEvents
(
codec
.
encodeMessage
(
flutterViewEvents
),
context
);
},
},
),
),
RaisedButton
(
key:
const
ValueKey
<
String
>(
'play'
),
child:
const
Text
(
'PLAY FILE'
),
onPressed:
()
{
playEventsFile
();
},
Expanded
(
child:
RaisedButton
(
key:
const
ValueKey
<
String
>(
'play'
),
child:
const
Text
(
'PLAY FILE'
),
onPressed:
()
{
playEventsFile
();
},
),
),
Expanded
(
child:
RaisedButton
(
key:
const
ValueKey
<
String
>(
'back'
),
child:
const
Text
(
'BACK'
),
onPressed:
()
{
Navigator
.
pop
(
context
);
},
),
),
],
),
...
...
dev/integration_tests/android_views/lib/wm_integrations.dart
View file @
7042481d
...
...
@@ -84,7 +84,7 @@ class WindowManagerBodyState extends State<WindowManagerBody> {
});
}
try
{
await
viewChannel
.
invokeMethod
<
void
>(
'showAlertDialog'
);
await
viewChannel
.
invokeMethod
<
void
>(
'showA
ndHideA
lertDialog'
);
setState
(()
{
lastTestStatus
=
_LastTestStatus
.
success
;
});
...
...
dev/integration_tests/android_views/test_driver/main_test.dart
View file @
7042481d
...
...
@@ -17,6 +17,8 @@ Future<void> main() async {
driver
.
close
();
});
// Each test below must return back to the home page after finishing.
test
(
'MotionEvent recomposition'
,
()
async
{
final
SerializableFinder
motionEventsListTile
=
find
.
byValueKey
(
'MotionEventsListTile'
);
...
...
@@ -24,9 +26,9 @@ Future<void> main() async {
await
driver
.
waitFor
(
find
.
byValueKey
(
'PlatformView'
));
final
String
errorMessage
=
await
driver
.
requestData
(
'run test'
);
expect
(
errorMessage
,
''
);
},
// TODO(amirh): enable this test https://github.com/flutter/flutter/issues/54022
skip:
true
);
final
SerializableFinder
backButton
=
find
.
byValueKey
(
'back'
);
await
driver
.
tap
(
backButton
);
}
);
test
(
'AlertDialog from platform view context'
,
()
async
{
final
SerializableFinder
wmListTile
=
...
...
@@ -38,5 +40,7 @@ Future<void> main() async {
await
driver
.
tap
(
showAlertDialog
);
final
String
status
=
await
driver
.
getText
(
find
.
byValueKey
(
'Status'
));
expect
(
status
,
'Success'
);
await
driver
.
waitFor
(
find
.
pageBack
());
await
driver
.
tap
(
find
.
pageBack
());
});
}
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