Unverified Commit 2386fd90 authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Disable post-submit Gold failures entirely (#100332)

parent 7f84c550
...@@ -181,7 +181,9 @@ void main() { ...@@ -181,7 +181,9 @@ void main() {
'--commit', '1234', '--commit', '1234',
'--keys-file', '/workDirectory/keys.json', '--keys-file', '/workDirectory/keys.json',
'--failure-file', '/workDirectory/failures.json', '--failure-file', '/workDirectory/failures.json',
'--passfail', // TODO(Piinks): Re-enable once https://github.com/flutter/flutter/issues/100304
// is resolved.
//'--passfail',
], ],
null, null,
); );
...@@ -257,46 +259,46 @@ void main() { ...@@ -257,46 +259,46 @@ void main() {
await skiaClient.tryjobInit(); await skiaClient.tryjobInit();
}); });
test('throws for error state from imgtestAdd', () {
final File goldenFile = fs.file('/workDirectory/temp/golden_file_test.png')
..createSync(recursive: true);
platform = FakePlatform(
environment: <String, String>{
'FLUTTER_ROOT': _kFlutterRoot,
'GOLDCTL' : 'goldctl',
},
operatingSystem: 'macos'
);
skiaClient = SkiaGoldClient(
workDirectory,
fs: fs,
process: process,
platform: platform,
httpClient: fakeHttpClient,
);
const RunInvocation goldctlInvocation = RunInvocation(
<String>[
'goldctl',
'imgtest', 'add',
'--work-dir', '/workDirectory/temp',
'--test-name', 'golden_file_test',
'--png-file', '/workDirectory/temp/golden_file_test.png',
// TODO(Piinks): Re-enable once https://github.com/flutter/flutter/issues/100304 // TODO(Piinks): Re-enable once https://github.com/flutter/flutter/issues/100304
// is resolved. // is resolved.
//'--passfail', // test('throws for error state from imgtestAdd', () {
], // final File goldenFile = fs.file('/workDirectory/temp/golden_file_test.png')
null, // ..createSync(recursive: true);
); // platform = FakePlatform(
process.processResults[goldctlInvocation] = ProcessResult(123, 1, 'Expected failure', 'Expected failure'); // environment: <String, String>{
process.fallbackProcessResult = ProcessResult(123, 1, 'Fallback failure', 'Fallback failure'); // 'FLUTTER_ROOT': _kFlutterRoot,
// 'GOLDCTL' : 'goldctl',
expect( // },
skiaClient.imgtestAdd('golden_file_test', goldenFile), // operatingSystem: 'macos'
throwsException, // );
); //
}); // skiaClient = SkiaGoldClient(
// workDirectory,
// fs: fs,
// process: process,
// platform: platform,
// httpClient: fakeHttpClient,
// );
//
// const RunInvocation goldctlInvocation = RunInvocation(
// <String>[
// 'goldctl',
// 'imgtest', 'add',
// '--work-dir', '/workDirectory/temp',
// '--test-name', 'golden_file_test',
// '--png-file', '/workDirectory/temp/golden_file_test.png',
// '--passfail',
// ],
// null,
// );
// process.processResults[goldctlInvocation] = ProcessResult(123, 1, 'Expected failure', 'Expected failure');
// process.fallbackProcessResult = ProcessResult(123, 1, 'Fallback failure', 'Fallback failure');
//
// expect(
// skiaClient.imgtestAdd('golden_file_test', goldenFile),
// throwsException,
// );
// });
test('correctly inits tryjob for luci', () async { test('correctly inits tryjob for luci', () async {
platform = FakePlatform( platform = FakePlatform(
......
...@@ -144,7 +144,9 @@ class SkiaGoldClient { ...@@ -144,7 +144,9 @@ class SkiaGoldClient {
'--commit', commitHash, '--commit', commitHash,
'--keys-file', keys.path, '--keys-file', keys.path,
'--failure-file', failures.path, '--failure-file', failures.path,
'--passfail', // TODO(Piinks): Re-enable once https://github.com/flutter/flutter/issues/100304
// is resolved.
//'--passfail',
]; ];
if (imgtestInitCommand.contains(null)) { if (imgtestInitCommand.contains(null)) {
...@@ -214,7 +216,12 @@ class SkiaGoldClient { ...@@ -214,7 +216,12 @@ class SkiaGoldClient {
..writeln('Debug information for Gold:') ..writeln('Debug information for Gold:')
..writeln('stdout: ${result.stdout}') ..writeln('stdout: ${result.stdout}')
..writeln('stderr: ${result.stderr}'); ..writeln('stderr: ${result.stderr}');
throw Exception(buf.toString()); // Temporarily print logs for issue diagnosis
// ignore: avoid_print
print(buf.toString());
// TODO(Piinks): Re-enable once https://github.com/flutter/flutter/issues/100304
// is resolved.
// throw Exception(buf.toString());
} }
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment