mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* change from build_runner to dart2js * add internalBootstrapBrowserTest to some of the tests * add internalBootstrapBrowserTest to all remaining tests * make tests build in paralel. Total time dropped from 586 to 177 seconds for 8 core MacBook * change isolates with pool * fixing analysis errors * skipping canvaskit tests for ios-safari * copy image files to the build directory * adding internalBootstrapBrowserTest to newly added tests * add internalBootstrapBrowserTest to faling path iterator test * necessary changes to make chrome windows work * in windows test in chrome instead of edge. our edge code was for legacy edge * do not run golden unit tests on Windows LUCI bots for now * addressing reviewer comments. Adding a method for deciding when to run integration tests. * remove lines that I forgot to remove * fixing analysis error. add issue for todo * add bootstap to a test file * adding bootstrap to another test * add internalBootstrapBrowserTest to a golden test * return test result in bat file. use archieve package to unzip * fixing logs for chrome_installer * use archieve and archieve entity instead of dynamic * adding comments for windows platform archieve part * addressing reviewer comments * change readme file
78 lines
2.0 KiB
Dart
78 lines
2.0 KiB
Dart
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// @dart = 2.6
|
|
import 'package:test/bootstrap/browser.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'package:ui/ui.dart';
|
|
|
|
void main() {
|
|
internalBootstrapBrowserTest(() => testMain);
|
|
}
|
|
|
|
void testMain() {
|
|
test('Gradient.radial with no focal point', () {
|
|
expect(
|
|
Gradient.radial(
|
|
Offset.zero,
|
|
null,
|
|
<Color>[const Color(0xFFFFFFFF), const Color(0xFFFFFFFF)],
|
|
<double>[0.0, 1.0],
|
|
TileMode.mirror),
|
|
isNotNull,
|
|
);
|
|
});
|
|
|
|
// this is just a radial gradient, focal point is discarded.
|
|
test('radial center and focal == Offset.zero and focalRadius == 0.0 is ok',
|
|
() {
|
|
expect(
|
|
() => Gradient.radial(
|
|
Offset.zero,
|
|
0.0,
|
|
<Color>[const Color(0xFFFFFFFF), const Color(0xFFFFFFFF)],
|
|
<double>[0.0, 1.0],
|
|
TileMode.mirror,
|
|
null,
|
|
Offset.zero,
|
|
0.0,
|
|
),
|
|
isNotNull);
|
|
});
|
|
|
|
test('radial center != focal and focalRadius == 0.0 is ok', () {
|
|
expect(
|
|
() => Gradient.radial(
|
|
Offset.zero,
|
|
0.0,
|
|
<Color>[const Color(0xFFFFFFFF), const Color(0xFFFFFFFF)],
|
|
<double>[0.0, 1.0],
|
|
TileMode.mirror,
|
|
null,
|
|
const Offset(2.0, 2.0),
|
|
0.0,
|
|
),
|
|
isNotNull);
|
|
});
|
|
|
|
// this would result in div/0 on skia side.
|
|
test('radial center and focal == Offset.zero and focalRadius != 0.0 assert',
|
|
() {
|
|
expect(
|
|
() => Gradient.radial(
|
|
Offset.zero,
|
|
0.0,
|
|
<Color>[const Color(0xFFFFFFFF), const Color(0xFFFFFFFF)],
|
|
<double>[0.0, 1.0],
|
|
TileMode.mirror,
|
|
null,
|
|
Offset.zero,
|
|
1.0,
|
|
),
|
|
throwsA(const TypeMatcher<AssertionError>()),
|
|
);
|
|
});
|
|
}
|