project.dart 1014 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// 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';

12
abstract class Project {
13 14 15 16 17
  Directory dir;

  String get pubspec;
  String get main;

18
  Uri get mainDart => Uri.parse('package:test/main.dart');
19 20 21 22

  Future<void> setUpIn(Directory dir) async {
    this.dir = dir;
    writeFile(fs.path.join(dir.path, 'pubspec.yaml'), pubspec);
23 24 25
    if (main != null) {
      writeFile(fs.path.join(dir.path, 'lib', 'main.dart'), main);
    }
26 27 28
    await getPackages(dir.path);
  }

29 30 31
  int lineContaining(String contents, String search) {
    final int index = contents.split('\n').indexWhere((String l) => l.contains(search));
    if (index == -1)
32
      throw Exception("Did not find '$search' inside the file");
33
    return index + 1; // first line is line 1, not line 0
34
  }
35
}