test_test.dart 1.72 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:async';
import 'dart:io' hide Platform;

import 'package:mockito/mockito.dart';

import '../test.dart';
import 'common.dart';

class MockFile extends Mock implements File {}

void main() {
  MockFile file;
  setUp(() {
    file = MockFile();
    when(file.existsSync()).thenReturn(true);
  });
  group('verifyVersion()', () {
    test('passes for valid version strings', () async {
      const List<String> valid_versions = <String>[
        '1.2.3',
        '12.34.56',
        '1.2.3-pre.1',
        '1.2.3+hotfix.1',
        '1.2.3+hotfix.12-pre.12',
      ];
30
      for (final String version in valid_versions) {
31
        when(file.readAsString()).thenAnswer((Invocation invocation) => Future<String>.value(version));
32 33 34 35 36
        expect(
          await verifyVersion(file),
          isNull,
          reason: '$version is valid but verifyVersionFile said it was bad',
        );
37 38 39 40 41 42 43 44 45 46 47
      }
    });

    test('fails for invalid version strings', () async {
      const List<String> invalid_versions = <String>[
        '1.2.3.4',
        '1.2.3.',
        '1.2-pre.1',
        '1.2.3-pre',
        '1.2.3-pre.1+hotfix.1',
        '  1.2.3',
48
        '1.2.3-hotfix.1',
49
      ];
50
      for (final String version in invalid_versions) {
51
        when(file.readAsString()).thenAnswer((Invocation invocation) => Future<String>.value(version));
52 53 54 55 56
        expect(
          await verifyVersion(file),
          'The version logic generated an invalid version string: "$version".',
          reason: '$version is invalid but verifyVersionFile said it was fine',
        );
57 58 59 60
      }
    });
  });
}