• Danny Tuppeny's avatar
    Switch to URIs for breakpoints and unskip tests on Windows (#22510) · f87a2a32
    Danny Tuppeny authored
    * Switch to URIs for breakpoints and unskip tests on Windows
    
    addBreakpointWithScriptUri expects Uris. By coincidence, FS paths work on Mac/Linux but they fail on Windows. One of the issues in the skip comment is fixed, the other one seems not relevant here.
    
    * Apply symlink resolution to all integration tests
    
    The default temp folders we get include symlinks which breaks breakpoints.
    
    * Save :rolling_eyes:
    
    * Fix typo
    f87a2a32
test_project.dart 1.09 KB
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:async';

import 'package:file/file.dart';
import 'package:flutter_tools/src/base/file_system.dart';

import '../test_utils.dart';

abstract class TestProject {
  Directory dir;

  String get pubspec;
  String get main;

  // Valid locations for a breakpoint for tests that just need to break somewhere.
  String get breakpointFile => fs.path.join(
      dir.path, 'lib', 'main.dart');
  int get breakpointLine => lineContaining(main, '// BREAKPOINT');

  Future<void> setUpIn(Directory dir) async {
    this.dir = dir;
    writeFile(fs.path.join(dir.path, 'pubspec.yaml'), pubspec);
    writeFile(fs.path.join(dir.path, 'lib', 'main.dart'), main);
    await getPackages(dir.path);
  }

  int lineContaining(String contents, String search) {
    final int index = contents.split('\n').indexWhere((String l) => l.contains(search));
    if (index == -1)
      throw Exception("Did not find '$search' inside the file");
    return index;
  }
}