arc_test.dart 3.06 KB
Newer Older
1 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
// Copyright 2016 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 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart';

void main() {
  test('on-axis MaterialPointArcTween', () {
    MaterialPointArcTween tween = new MaterialPointArcTween(
      begin: Point.origin,
      end: new Point(0.0, 10.0)
    );
    expect(tween.lerp(0.5), equals(new Point(0.0, 5.0)));
    expect(tween, hasOneLineDescription);

    tween = new MaterialPointArcTween(
      begin: Point.origin,
      end: new Point(10.0, 0.0)
    );
    expect(tween.lerp(0.5), equals(new Point(5.0, 0.0)));
  });

  test('on-axis MaterialRectArcTween', () {
    MaterialRectArcTween tween = new MaterialRectArcTween(
      begin: new Rect.fromLTWH(0.0, 0.0, 10.0, 10.0),
      end: new Rect.fromLTWH(0.0, 10.0, 10.0, 10.0)
    );
    expect(tween.lerp(0.5), equals(new Rect.fromLTWH(0.0, 5.0, 10.0, 10.0)));
    expect(tween, hasOneLineDescription);

    tween = new MaterialRectArcTween(
      begin: new Rect.fromLTWH(0.0, 0.0, 10.0, 10.0),
      end: new Rect.fromLTWH(10.0, 0.0, 10.0, 10.0)
    );
    expect(tween.lerp(0.5), equals(new Rect.fromLTWH(5.0, 0.0, 10.0, 10.0)));
  });

  test('MaterialPointArcTween', () {
    final Point begin = const Point(180.0, 110.0);
    final Point end = const Point(37.0, 250.0);

    MaterialPointArcTween tween = new MaterialPointArcTween(begin: begin, end: end);
    expect(tween.lerp(0.0), begin);
    expect((tween.lerp(0.25) - const Point(126.0, 120.0)).distance, closeTo(0.0, 2.0));
    expect((tween.lerp(0.75) - const Point(48.0, 196.0)).distance, closeTo(0.0, 2.0));
    expect(tween.lerp(1.0), end);

    tween = new MaterialPointArcTween(begin: end, end: begin);
    expect(tween.lerp(0.0), end);
    expect((tween.lerp(0.25) - const Point(91.0, 239.0)).distance, closeTo(0.0, 2.0));
    expect((tween.lerp(0.75) - const Point(168.3, 163.8)).distance, closeTo(0.0, 2.0));
    expect(tween.lerp(1.0), begin);
  });

  test('MaterialRectArcTween', () {
    final Rect begin = new Rect.fromLTRB(180.0, 100.0, 330.0, 200.0);
    final Rect end = new Rect.fromLTRB(32.0, 275.0, 132.0, 425.0);

    bool sameRect(Rect a, Rect b) {
      return (a.left - b.left).abs() < 2.0
        && (a.top - b.top).abs() < 2.0
        && (a.right - b.right).abs() < 2.0
        && (a.bottom - b.bottom).abs() < 2.0;
    }

    MaterialRectArcTween tween = new MaterialRectArcTween(begin: begin, end: end);
    expect(tween.lerp(0.0), begin);
    expect(sameRect(tween.lerp(0.25), new Rect.fromLTRB(120.0, 113.0, 259.0, 237.0)), isTrue);
    expect(sameRect(tween.lerp(0.75), new Rect.fromLTRB(42.3, 206.5, 153.5, 354.7)), isTrue);
    expect(tween.lerp(1.0), end);

    tween = new MaterialRectArcTween(begin: end, end: begin);
    expect(tween.lerp(0.0), end);
    expect(sameRect(tween.lerp(0.25), new Rect.fromLTRB(92.0, 262.0, 203.0, 388.0)), isTrue);
    expect(sameRect(tween.lerp(0.75), new Rect.fromLTRB(169.7, 168.5, 308.5, 270.3)), isTrue);
    expect(tween.lerp(1.0), begin);
  });

}