mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* chore: rename flowy-folder2 to flowy-folder * chore: rename flowy-document2 to flowy-document * chore: fix test * chore: move lib-infra crate * chore: remove shared-lib * chore: fix clippy
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
 | 
						|
import 'package:flutter_test/flutter_test.dart';
 | 
						|
import 'package:integration_test/integration_test.dart';
 | 
						|
 | 
						|
import '../util/base.dart';
 | 
						|
import '../util/common_operations.dart';
 | 
						|
import '../util/expectation.dart';
 | 
						|
 | 
						|
void main() {
 | 
						|
  IntegrationTestWidgetsFlutterBinding.ensureInitialized();
 | 
						|
 | 
						|
  const emoji = '😁';
 | 
						|
 | 
						|
  group('Icon', () {
 | 
						|
    testWidgets('Update page icon in sidebar', (tester) async {
 | 
						|
      await tester.initializeAppFlowy();
 | 
						|
      await tester.tapGoButton();
 | 
						|
 | 
						|
      // create document, board, grid and calendar views
 | 
						|
      for (final value in ViewLayoutPB.values) {
 | 
						|
        await tester.createNewPageWithNameUnderParent(
 | 
						|
          name: value.name,
 | 
						|
          parentName: gettingStarted,
 | 
						|
          layout: value,
 | 
						|
        );
 | 
						|
 | 
						|
        // update its icon
 | 
						|
        await tester.updatePageIconInSidebarByName(
 | 
						|
          name: value.name,
 | 
						|
          parentName: gettingStarted,
 | 
						|
          layout: value,
 | 
						|
          icon: emoji,
 | 
						|
        );
 | 
						|
 | 
						|
        tester.expectViewHasIcon(
 | 
						|
          value.name,
 | 
						|
          value,
 | 
						|
          emoji,
 | 
						|
        );
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    testWidgets('Update page icon in title bar', (tester) async {
 | 
						|
      await tester.initializeAppFlowy();
 | 
						|
      await tester.tapGoButton();
 | 
						|
 | 
						|
      // create document, board, grid and calendar views
 | 
						|
      for (final value in ViewLayoutPB.values) {
 | 
						|
        await tester.createNewPageWithNameUnderParent(
 | 
						|
          name: value.name,
 | 
						|
          parentName: gettingStarted,
 | 
						|
          layout: value,
 | 
						|
        );
 | 
						|
 | 
						|
        // update its icon
 | 
						|
        await tester.updatePageIconInTitleBarByName(
 | 
						|
          name: value.name,
 | 
						|
          layout: value,
 | 
						|
          icon: emoji,
 | 
						|
        );
 | 
						|
 | 
						|
        tester.expectViewHasIcon(
 | 
						|
          value.name,
 | 
						|
          value,
 | 
						|
          emoji,
 | 
						|
        );
 | 
						|
 | 
						|
        tester.expectViewTitleHasIcon(
 | 
						|
          value.name,
 | 
						|
          value,
 | 
						|
          emoji,
 | 
						|
        );
 | 
						|
      }
 | 
						|
    });
 | 
						|
  });
 | 
						|
}
 |