forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We were not removing children if they were more recently synced than we were. This makes no sense. We should remove all children unless they were synced this very generation already (in which case they'll be somewhere else in the tree by now).
- Loading branch information
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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,51 @@ | ||
import 'package:sky/src/widgets/framework.dart'; | ||
import 'package:sky/src/widgets/basic.dart'; | ||
import 'package:test/test.dart'; | ||
import 'widget_tester.dart'; | ||
|
||
class Item { | ||
GlobalKey key1 = new GlobalKey(); | ||
GlobalKey key2 = new GlobalKey(); | ||
String toString() => "Item($key1, $key2)"; | ||
} | ||
List<Item> items = [new Item(), new Item()]; | ||
|
||
class StatefulLeaf extends StatefulComponent { | ||
StatefulLeaf({ GlobalKey key }) : super(key: key); | ||
void syncConstructorArguments(StatefulLeaf source) { } | ||
void test() { setState(() { }); } | ||
Widget build() => new Text('leaf'); | ||
} | ||
|
||
class KeyedWrapper extends Component { | ||
KeyedWrapper(this.key1, this.key2); | ||
Key key1, key2; | ||
Widget build() { | ||
return new Container( | ||
key: key1, | ||
child: new StatefulLeaf( | ||
key: key2 | ||
) | ||
); | ||
} | ||
} | ||
|
||
Widget builder() { | ||
return new Column([ | ||
new KeyedWrapper(items[1].key1, items[1].key2), | ||
new KeyedWrapper(items[0].key1, items[0].key2) | ||
]); | ||
} | ||
|
||
void main() { | ||
test('duplicate key smoke test', () { | ||
WidgetTester tester = new WidgetTester(); | ||
tester.pumpFrame(builder); | ||
tester.findWidget((widget) => widget is StatefulLeaf).test(); | ||
tester.pumpFrameWithoutChange(); | ||
Item lastItem = items[1]; | ||
items.remove(lastItem); | ||
items.insert(0, lastItem); | ||
tester.pumpFrame(builder); // this marks the app dirty and rebuilds it | ||
}); | ||
} |