semantics_and_children_test.dart 2.5 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1 2 3 4 5 6
// Copyright 2015 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/material.dart';
import 'package:flutter/rendering.dart';
7
import 'package:flutter_test/flutter_test.dart' show TestVSync;
Ian Hickson's avatar
Ian Hickson committed
8 9
import 'package:test/test.dart';

10 11
import 'rendering_tester.dart';

Ian Hickson's avatar
Ian Hickson committed
12 13 14 15 16 17 18
int countSemanticsChildren(RenderObject object) {
  int count = 0;
  object.visitChildrenForSemantics((RenderObject child) {
    count += 1;
  });
  return count;
}
19

Ian Hickson's avatar
Ian Hickson committed
20 21
void main() {
  test('RenderOpacity and children and semantics', () {
Ian Hickson's avatar
Ian Hickson committed
22 23 24 25 26 27
    final RenderOpacity box = new RenderOpacity(
      child: new RenderParagraph(
        const TextSpan(),
        textDirection: TextDirection.ltr,
      ),
    );
Ian Hickson's avatar
Ian Hickson committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41
    expect(countSemanticsChildren(box), 1);
    box.opacity = 0.5;
    expect(countSemanticsChildren(box), 1);
    box.opacity = 0.25;
    expect(countSemanticsChildren(box), 1);
    box.opacity = 0.125;
    expect(countSemanticsChildren(box), 1);
    box.opacity = 0.0;
    expect(countSemanticsChildren(box), 0);
    box.opacity = 0.125;
    expect(countSemanticsChildren(box), 1);
    box.opacity = 0.0;
    expect(countSemanticsChildren(box), 0);
  });
42 43 44 45

  test('RenderOpacity and children and semantics', () {
    final AnimationController controller = new AnimationController(vsync: const TestVSync());
    final RenderAnimatedOpacity box = new RenderAnimatedOpacity(
46
      alwaysIncludeSemantics: false,
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
      opacity: controller,
      child: new RenderParagraph(
        const TextSpan(),
        textDirection: TextDirection.ltr,
      ),
    );
    expect(countSemanticsChildren(box), 0); // controller defaults to 0.0
    controller.value = 0.2; // has no effect, box isn't subscribed yet
    expect(countSemanticsChildren(box), 0);
    controller.value = 1.0; // ditto
    expect(countSemanticsChildren(box), 0); // alpha is still 0
    layout(box); // this causes the box to attach, which makes it subscribe
    expect(countSemanticsChildren(box), 1);
    controller.value = 1.0;
    expect(countSemanticsChildren(box), 1);
    controller.value = 0.5;
    expect(countSemanticsChildren(box), 1);
    controller.value = 0.25;
    expect(countSemanticsChildren(box), 1);
    controller.value = 0.125;
    expect(countSemanticsChildren(box), 1);
    controller.value = 0.0;
    expect(countSemanticsChildren(box), 0);
    controller.value = 0.125;
    expect(countSemanticsChildren(box), 1);
    controller.value = 0.0;
    expect(countSemanticsChildren(box), 0);
  });
Ian Hickson's avatar
Ian Hickson committed
75
}